Home
last modified time | relevance | path

Searched defs:script (Results 1 – 14 of 14) sorted by relevance

/frameworks/compile/libbcc/lib/ExecutionEngine/
Dbcc.cpp58 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/
DrsdBcc.cpp68 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/
DJavaBridgeReturnValuesTest.java127 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { in executeJavaScriptAndGetStringResult()
133 private boolean executeJavaScriptAndGetBooleanResult(String script) throws Throwable { in executeJavaScriptAndGetBooleanResult()
DJavaBridgeTestBase.java105 protected void executeJavaScript(final String script) throws Throwable { in executeJavaScript()
DJavaBridgeFieldsTest.java69 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { in executeJavaScriptAndGetStringResult()
DJavaBridgeBasicsTest.java94 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { in executeJavaScriptAndGetStringResult()
111 private void assertRaisesException(String script) throws Throwable { in assertRaisesException()
/frameworks/compile/libbcc/tools/bcc/
Dmain.cpp183 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/
DEventPlugin.cpp132 NPString script = { (char*)beginMem, totalLength }; in printToDiv() local
/frameworks/base/graphics/jni/
Dandroid_renderscript_RenderScript.cpp905 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/
DRenderScript.java160 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/
DTextLayoutCache.cpp762 SkUnichar unichar, HB_Script script) { in typefaceForUnichar()
/frameworks/compile/libbcc/gdb_plugin/
Dandroid-commands.py642 def _awk(self, script, command): argument
/frameworks/rs/
Drs_hal.h117 } script; member
/frameworks/base/core/java/android/webkit/
DBrowserFrame.java1246 public native String stringByEvaluatingJavaScriptFromString(String script); in stringByEvaluatingJavaScriptFromString()