/frameworks/compile/libbcc/lib/ExecutionEngine/ |
D | bcc.cpp | 58 extern "C" void bccDisposeScript(BCCScriptRef script) { in bccDisposeScript() 64 extern "C" int bccRegisterSymbolCallback(BCCScriptRef script, in bccRegisterSymbolCallback() 72 extern "C" int bccGetError(BCCScriptRef script) { in bccGetError() 77 extern "C" int bccReadBC(BCCScriptRef script, in bccReadBC() 87 extern "C" int bccReadModule(BCCScriptRef script, in bccReadModule() 96 extern "C" int bccReadFile(BCCScriptRef script, in bccReadFile() 104 extern "C" int bccLinkBC(BCCScriptRef script, in bccLinkBC() 114 extern "C" int bccLinkFile(BCCScriptRef script, in bccLinkFile() 122 extern "C" void bccMarkExternalSymbol(BCCScriptRef script, char const *name) { in bccMarkExternalSymbol() 128 extern "C" int bccPrepareRelocatable(BCCScriptRef script, in bccPrepareRelocatable() [all …]
|
/frameworks/rs/driver/ |
D | rsdBcc.cpp | 68 ScriptC *script, in rsdScriptInit() 215 Script *script; member 438 int rsdScriptInvokeRoot(const Context *dc, Script *script) { in rsdScriptInvokeRoot() 448 void rsdScriptInvokeInit(const Context *dc, Script *script) { in rsdScriptInvokeInit() 456 void rsdScriptInvokeFreeChildren(const Context *dc, Script *script) { in rsdScriptInvokeFreeChildren() 464 void rsdScriptInvokeFunction(const Context *dc, Script *script, in rsdScriptInvokeFunction() 477 void rsdScriptSetGlobalVar(const Context *dc, const Script *script, in rsdScriptSetGlobalVar() 494 const android::renderscript::Script *script, in rsdScriptSetGlobalVarWithElemDims() 532 void rsdScriptSetGlobalBind(const Context *dc, const Script *script, uint32_t slot, void *data) { in rsdScriptSetGlobalBind() 546 void rsdScriptSetGlobalObj(const Context *dc, const Script *script, uint32_t slot, ObjectBase *data… in rsdScriptSetGlobalObj() [all …]
|
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/ |
D | JavaBridgeReturnValuesTest.java | 127 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { in executeJavaScriptAndGetStringResult() 133 private boolean executeJavaScriptAndGetBooleanResult(String script) throws Throwable { in executeJavaScriptAndGetBooleanResult()
|
D | JavaBridgeTestBase.java | 105 protected void executeJavaScript(final String script) throws Throwable { in executeJavaScript()
|
D | JavaBridgeFieldsTest.java | 69 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { in executeJavaScriptAndGetStringResult()
|
D | JavaBridgeBasicsTest.java | 94 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { in executeJavaScriptAndGetStringResult() 111 private void assertRaisesException(String script) throws Throwable { in assertRaisesException()
|
/frameworks/compile/libbcc/tools/bcc/ |
D | main.cpp | 183 BCCScriptRef script = bccCreateScript(); in loadScript() local 266 static int runRoot(BCCScriptRef script) { in runRoot() 294 BCCScriptRef script; in main() local
|
/frameworks/base/tests/BrowserTestPlugin/jni/event/ |
D | EventPlugin.cpp | 132 NPString script = { (char*)beginMem, totalLength }; in printToDiv() local
|
/frameworks/base/graphics/jni/ |
D | android_renderscript_RenderScript.cpp | 905 nScriptBindAllocation(JNIEnv *_env, jobject _this, RsContext con, jint script, jint alloc, jint slo… in nScriptBindAllocation() 912 nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) in nScriptSetVarI() 919 nScriptSetVarObj(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) in nScriptSetVarObj() 926 nScriptSetVarJ(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jlong val) in nScriptSetVarJ() 933 nScriptSetVarF(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, float val) in nScriptSetVarF() 940 nScriptSetVarD(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, double val) in nScriptSetVarD() 947 nScriptSetVarV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data) in nScriptSetVarV() 957 nScriptSetVarVE(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data… in nScriptSetVarVE() 972 nScriptSetTimeZone(JNIEnv *_env, jobject _this, RsContext con, jint script, jbyteArray timeZone) in nScriptSetTimeZone() 995 nScriptInvokeV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data) in nScriptInvokeV() [all …]
|
/frameworks/base/graphics/java/android/renderscript/ |
D | RenderScript.java | 160 native void rsnContextBindRootScript(int con, int script); in rsnContextBindRootScript() 161 synchronized void nContextBindRootScript(int script) { in nContextBindRootScript() 489 native void rsnScriptBindAllocation(int con, int script, int alloc, int slot); in rsnScriptBindAllocation() 490 synchronized void nScriptBindAllocation(int script, int alloc, int slot) { in nScriptBindAllocation() 494 native void rsnScriptSetTimeZone(int con, int script, byte[] timeZone); in rsnScriptSetTimeZone() 495 synchronized void nScriptSetTimeZone(int script, byte[] timeZone) { in nScriptSetTimeZone() 558 byte[] script, int length); in rsnScriptCCreate() 559 synchronized int nScriptCCreate(String resName, String cacheDir, byte[] script, int length) { in nScriptCCreate()
|
/frameworks/base/core/jni/android/graphics/ |
D | TextLayoutCache.cpp | 762 SkUnichar unichar, HB_Script script) { in typefaceForUnichar()
|
/frameworks/compile/libbcc/gdb_plugin/ |
D | android-commands.py | 642 def _awk(self, script, command): argument
|
/frameworks/rs/ |
D | rs_hal.h | 117 } script; member
|
/frameworks/base/core/java/android/webkit/ |
D | BrowserFrame.java | 1246 public native String stringByEvaluatingJavaScriptFromString(String script); in stringByEvaluatingJavaScriptFromString()
|