Searched defs:script (Results 1 - 25 of 36) sorted by last modified time

12

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java526 native void rsnScriptBindAllocation(int con, int script, int alloc, int slot); argument
527 synchronized void nScriptBindAllocation(int script, int alloc, int slot) { argument
529 rsnScriptBindAllocation(mContext, script, alloc, slot);
531 native void rsnScriptSetTimeZone(int con, int script, byte[] timeZone); argument
532 synchronized void nScriptSetTimeZone(int script, byte[] timeZone) { argument
534 rsnScriptSetTimeZone(mContext, script, timeZone);
610 byte[] script, int length);
611 synchronized int nScriptCCreate(String resName, String cacheDir, byte[] script, int length) { argument
613 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
760 * to receive RS messages from scripts. When a script call
609 rsnScriptCCreate(int con, String resName, String cacheDir, byte[] script, int length) argument
[all...]
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp684 nScriptBindAllocation(JNIEnv *_env, jobject _this, RsContext con, jint script, jint alloc, jint slot) argument
686 LOG_API("nScriptBindAllocation, con(%p), script(%p), alloc(%p), slot(%i)", con, (RsScript)script, (RsAllocation)alloc, slot);
687 rsScriptBindAllocation(con, (RsScript)script, (RsAllocation)alloc, slot);
691 nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
693 LOG_API("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
694 rsScriptSetVarI(con, (RsScript)script, slot, val);
698 nScriptSetVarObj(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
700 LOG_API("nScriptSetVarObj, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
701 rsScriptSetVarObj(con, (RsScript)script, slo
705 nScriptSetVarJ(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jlong val) argument
712 nScriptSetVarF(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, float val) argument
719 nScriptSetVarD(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, double val) argument
726 nScriptSetVarV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data) argument
736 nScriptSetVarVE(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data, jint elem, jintArray dims) argument
751 nScriptSetTimeZone(JNIEnv *_env, jobject _this, RsContext con, jint script, jbyteArray timeZone) argument
774 nScriptInvokeV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data) argument
784 nScriptForEach(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout) argument
791 nScriptForEachV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jbyteArray params) argument
802 nScriptForEachClipped(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jint xstart, jint xend, jint ystart, jint yend, jint zstart, jint zend) argument
822 nScriptForEachClippedV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jbyteArray params, jint xstart, jint xend, jint ystart, jint yend, jint zstart, jint zend) argument
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java693 public void evaluateJavaScript(String script, ValueCallback<String> resultCallback) { argument
695 mAwContents.evaluateJavaScript(script, resultCallback);
/frameworks/rs/api/
H A Dgen_runtime.cpp119 bool isOutParameter; // True if this parameter returns data from the script.
862 mJavaFile << tab(1) << "private ScriptC_" << mTestName << " script;\n";
868 mJavaFile << tab(2) << "script = new ScriptC_" << mTestName << "(mRS);\n";
1892 string script = "script"; local
1894 script += "Relaxed";
1908 file << tab(3) << script << ".set_" << p.rsAllocName << "(" << p.javaAllocName
1913 file << tab(3) << script << ".forEach_" << mRsKernelName << "(";
/frameworks/rs/cpu_ref/
H A DrsCpuCore.h95 RsdCpuScriptImpl *script; member in struct:android::renderscript::__anon1484
H A DrsCpuScript.cpp146 // This is required behavior to implement script instancing for the support
383 //ALOGE("rsdScriptInit %p %p", rsc, script);
447 // Load the compiled script that's in the cache, if any.
689 //rsdLookupRuntimeStub(script, "acos");
760 void RsdCpuScriptImpl::populateScript(Script *script) { argument
763 script->mHal.info.exportedFunctionCount = mExecutable->getExportFuncAddrs().size();
764 script->mHal.info.exportedVariableCount = mExecutable->getExportVarAddrs().size();
765 script->mHal.info.exportedForeachFuncList = &mExportedForEachFuncList[0];
766 script->mHal.info.exportedPragmaCount = mExecutable->getPragmaKeys().size();
767 script
[all...]
/frameworks/rs/driver/
H A DrsdBcc.cpp39 ScriptC *script,
46 RsdCpuReference::CpuScript * cs = dc->mCpuRef->createScript(script, resName, cacheDir,
51 script->mHal.drv = cs;
52 cs->populateScript(script);
164 const Script *script,
167 obj->p = script;
170 if (script != NULL) {
171 obj->v1 = script->mHal.drv;
38 rsdScriptInit(const Context *rsc, ScriptC *script, char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags) argument
163 rsdScriptUpdateCachedObject(const Context *rsc, const Script *script, rs_script *obj) argument
H A DrsdRuntimeStubs.cpp1532 void __attribute__((overloadable)) rsForEach(::rs_script script, argument
1537 return SC_ForEach_SAAUS(script, in, out, usr, (RsScriptCall*)call);
1540 void __attribute__((overloadable)) rsForEach(::rs_script script, argument
1543 return SC_ForEach_SAA(script, in, out);
1546 void __attribute__((overloadable)) rsForEach(::rs_script script, argument
1551 return SC_ForEach_SAAUL(script, in, out, usr, usrLen);
1554 void __attribute__((overloadable)) rsForEach(::rs_script script, argument
1560 return SC_ForEach_SAAULS(script, in, out, usr, usrLen, (RsScriptCall*)call);
/frameworks/rs/
H A Drs_hal.h162 } script; member in struct:android::renderscript::__anon1535
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp423 const LinkerScript& script = m_Module.getScript(); local
425 script.renameMap().find(pName);
426 if (script.renameMap().end() != renameSym)
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp211 // try to parse input as a linker script
213 ScriptFile script(ScriptFile::LDScript, **input,
215 if (getScriptReader()->readScript(m_Config, script)) {
217 script.activate(*m_pModule);
218 if (script.inputs().size() > 0) {
220 script.inputs());
483 LinkerScript& script = m_pModule->getScript(); local
484 LinkerScript::Assignments::iterator it, ie = script.assignments().end();
486 for (it = script.assignments().begin(); it != ie; ++it) {
702 LinkerScript& script local
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DAssignment.cpp81 LinkerScript& script = pModule.getScript(); local
85 script.assignments().push_back(std::make_pair((LDSymbol*)NULL, *this));
90 SectionMap::reference out = script.sectionMap().back();
94 SectionMap::iterator prev = script.sectionMap().begin() +
95 script.sectionMap().size() - 2;
123 script.assignments().push_back(std::make_pair((LDSymbol*)NULL, *this));
131 SectionMap::Output::reference in = script.sectionMap().back()->back();
159 script.assignments().push_back(std::make_pair((LDSymbol*)NULL, *this));
H A DEntryCmd.cpp36 LinkerScript& script = pModule.getScript(); local
37 if (!script.hasEntry())
38 script.setEntry(m_Entry);
H A DGroupCmd.cpp75 LinkerScript& script = pModule.getScript(); local
98 if (script.hasSysroot() &&
100 path = script.sysroot();
108 script.directories().find(token->name(), Input::Script);
129 path = script.directories().find(token->name(), Input::Archive);
133 path = script.directories().find(token->name(), Input::DynObj);
137 path = script.directories().find(token->name(), Input::Archive);
148 assert(0 && "Invalid script token in GROUP!");
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp2179 LinkerScript& script = pModule.getScript(); local
2184 outBegin = script.sectionMap().begin();
2185 outEnd = script.sectionMap().end();
2213 LinkerScript& script = pModule.getScript(); local
2217 LinkerScript::AddressMap::iterator addr, addrEnd = script.addressMap().end();
2221 outBegin = script.sectionMap().begin();
2222 outEnd = script.sectionMap().end();
2240 addr = script.addressMap().find(".bss");
2242 addr = script.addressMap().find(".data");
2244 addr = script
[all...]
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp52 mcld::ScriptOptions script; local
81 if (!script.parse(pScript))
118 mcld::LinkerScript script; local
120 mcld::Module module(script);
124 if (!ConfigLinker(argc, argv, "MCLinker\n", module, script, config, builder,
132 if (!linker.emulate(script, config)) {
/frameworks/compile/mclinker/unittests/
H A DELFBinaryReaderTest.cpp47 LinkerScript script; local
48 Module module("test", script);
H A DLinkerTest.cpp55 LinkerScript script; local
56 Module module("test", script);
60 linker.emulate(script, config);
84 LinkerScript script; local
92 script.directories().insert(search_dir);
96 linker.emulate(script, config);
102 Module module("libplasma.so", script);
346 LinkerScript script; local
350 linker.emulate(script, config);
355 Module module(script);
[all...]
/frameworks/minikin/libs/minikin/
H A DLayout.cpp448 const hb_script_t script = codePointToScript(cp); local
449 if (script != current_script) {
452 current_script = script;
453 } else if (script == HB_SCRIPT_INHERITED ||
454 script == HB_SCRIPT_COMMON) {
471 * kerning or complex script processing. This is necessarily a
714 hb_script_t script = getScriptRun(buf + start, run.end, &srunend); local
717 hb_buffer_set_script(buffer, script);
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompiler.cpp36 RSScript &script = static_cast<RSScript &>(pScript); local
37 llvm::Module &module = script.getSource().getModule();
93 RSScript &script = static_cast<RSScript &>(pScript); local
98 if (script.getEmbedInfo())
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
H A DJavaBridgeBasicsTest.java94 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { argument
95 executeJavaScript("testController.setStringValue(" + script + ");");
111 private void assertRaisesException(String script) throws Throwable { argument
113 script + ";" +
H A DJavaBridgeFieldsTest.java69 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { argument
70 executeJavaScript("testObject.setStringValue(" + script + ");");
H A DJavaBridgeReturnValuesTest.java127 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { argument
128 executeJavaScript("testObject.setStringValue(" + script + ");");
133 private boolean executeJavaScriptAndGetBooleanResult(String script) throws Throwable { argument
134 executeJavaScript("testObject.setBooleanValue(" + script + ");");
H A DJavaBridgeTestBase.java105 protected void executeJavaScript(final String script) throws Throwable { argument
112 // frame. We don't want this behaviour, so wrap the script in
114 getWebView().loadUrl("javascript:(function() { " + script + " })()");
/frameworks/base/tools/aapt/
H A DAaptAssets.h64 char script[4]; member in struct:AaptLocaleValue
96 void setScript(const char* script);

Completed in 426 milliseconds

12