| /frameworks/compile/mclinker/lib/Core/ | 
| Linker.cpp | 46 /// emulate - To set up target-dependent options and default linker script. 125         case Input::Script:
 205   // 10. - add standard symbols, target-dependent symbols and script symbols
 
 | 
| /frameworks/compile/mclinker/lib/MC/ | 
| CommandAction.cpp | 250     const sys::fs::Path* res = m_SearchDirs.find(m_FileName, Input::Script); 254           fatal(diag::err_cannot_find_scriptfile) << "linker script"
 258           fatal(diag::err_cannot_find_scriptfile) << "version script"
 
 | 
| /frameworks/compile/mclinker/lib/Script/ | 
| InputCmd.cpp | 9 #include "mcld/Script/InputCmd.h" 17 #include "mcld/Script/InputToken.h"
 18 #include "mcld/Script/StringList.h"
 86   LinkerScript& script = pModule.getScript();  local
 110         if (script.hasSysroot() &&
 112           path = script.sysroot();
 120                 script.directories().find(token->name(), Input::Script);
 141             path = script.directories().find(token->name(), Input::Archive);
 145             path = script.directories().find(token->name(), Input::DynObj)
 [all...]
 | 
| /frameworks/rs/api/ | 
| rs_allocation_create.spec | 20  The functions below can be used to create Allocations from a Script. 143   Script.
 
 | 
| rs_object_types.spec | 80 summary: Handle to a Script 82  An opaque handle to a RenderScript script object.
 144 value: RS_TYPE_SCRIPT = 1004, "A handle to a Script."
 
 | 
| /frameworks/rs/driver/ | 
| rsdCore.cpp | 275 static RsdCpuReference::CpuScript * LookupScript(Context *, const Script *s) { 
 | 
| rsdRuntimeStubs.cpp | 156     const Script *sc = RsdCpuReference::getTlsScript(); 165     const Script *sc = RsdCpuReference::getTlsScript();
 228     // exposed to the Script.  The Element-creation APIs call this function in a
 237     // Any new rsObject created from inside a script should have the usrRefCount
 312     // Any new rsObject created from inside a script should have the usrRefCount
 346     // Any new rsObject created from inside a script should have the usrRefCount
 360 // rs_element etc. as a stack-return parameter.  The Script uses ARM32 calling
 658     Script *s = const_cast<Script*>(RsdCpuReference::getTlsScript());
 673 void __attribute__((overloadable)) rsForEach(::rs_script script,
 [all...]
 | 
| /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/ | 
| Region.java | 34 import android.support.v8.renderscript.Script; 
 | 
| /frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ | 
| BlasBenchmark.java | 39 import android.renderscript.Script; 
 | 
| /frameworks/rs/ | 
| rsContext.cpp | 109 uint32_t Context::runScript(Script *s) { 189         ALOGV("RS: Frame (%i),   Script %2.1f%% (%i),  Swap %2.1f%% (%i),  Idle %2.1f%% (%" PRIi64 "),  "
 230     sprintf(buffer, "Avg fps %u, Frame %i ms, Script %i ms", mAverageFPS, mTimeMSLastFrame, mTimeMSLastScript);
 257     rsc->props.mLogScripts = getProp("debug.rs.script") != 0;
 659 void Context::setRootScript(Script *s) {
 792     Script *s = static_cast<Script *>(vs);
 
 | 
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ | 
| ImageFilterGrad.java | 32 import android.renderscript.Script.LaunchOptions; 
 | 
| ImageFilterVignette.java | 30 import android.renderscript.Script.LaunchOptions; 
 | 
| /frameworks/rs/cpu_ref/ | 
| rsCpuIntrinsicConvolve5x5.cpp | 30     void populateScript(Script *) override; 37     RsdCpuScriptIntrinsicConvolve5x5(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
 655             RsdCpuReferenceImpl *ctx, const Script *s, const Element *e)
 694 void RsdCpuScriptIntrinsicConvolve5x5::populateScript(Script *s) {
 704                                             const Script *s, const Element *e) {
 
 | 
| /external/v8/src/ | 
| api.cc | 196                                              i::Handle<i::Script> script) { 197   i::Handle<i::Object> scriptName(i::Script::GetNameOrSourceURL(script));
 198   i::Handle<i::Object> source_map_url(script->source_mapping_url(), isolate);
 200       reinterpret_cast<v8::Isolate*>(script->GetIsolate());
 201   ScriptOriginOptions options(script->origin_options());
 204       v8::Integer::New(v8_isolate, script->line_offset()),
 205       v8::Integer::New(v8_isolate, script->column_offset()),
 207       v8::Integer::New(v8_isolate, script->id())
 342  Local<Script> script;  local
 2016  i::Handle<i::Script> script = isolate->factory()->NewScript(str);  local
 2395  auto script = i::Handle<i::JSValue>::cast(  local
 2406  auto script = i::Handle<i::JSValue>::cast(  local
 [all...]
 | 
| frames.cc | 185     Object* script = frame()->function()->shared()->script(); 187     return (script->IsScript() &&
 188             Script::TYPE_NATIVE != Script::cast(script)->type());
 830     Object* maybe_script = shared->script();
 832       Script* script = Script::cast(maybe_script)  local
 1208  Script* script = Script::cast(script_obj);  local
 [all...]
 | 
| log.cc | 525   if (shared && shared->script()->IsScript()) { 528   event.script = ToApiHandle<v8::UnboundScript>(shared_function_handle);
 [all...]
 | 
| /external/v8/test/cctest/ | 
| test-api.cc | 75 using ::v8::Script; 170   Local<Script> script = v8_compile(source);  local
 171   CHECK_EQ(6, v8_run_int32value(script));
 359 THREADED_TEST(Script) {
 363   Local<Script> script = v8_compile(source);  local
 364   CHECK_EQ(6, v8_run_int32value(script));
 438     Local<Script> script = v8_compile(source)  local
 476  Local<Script> script = v8_compile(source);  local
 510  Local<Script> script = v8_compile(source);  local
 536  Local<Script> script = v8_compile(source);  local
 834  Local<Script> script = v8_compile(source);  local
 857  Local<Script> script = v8_compile(source);  local
 917  Local<Script> script = v8_compile(source);  local
 995  Local<Script> script = v8_compile("obj()");  local
 1011  Local<Script> script = v8_compile("obj()");  local
 1035  Local<Script> script;  local
 1076  v8::Local<v8::Script> script;  local
 1273  Local<Script> script = v8_compile("obj.length");  local
 1282  Local<Script> script = v8_compile("obj.length");  local
 1291  Local<Script> script = v8_compile("obj.length");  local
 2286  Local<Script> script = v8_compile("Foo.prototype.plak");  local
 2968  std::string script = std::string("var sym = ") + name;  local
 4564  Local<Script> script = v8_compile("throw 'panama!';");  local
 4615  v8::Local<v8::Script> script = CompileWithOrigin("throw 'error'", "6.75");  local
 4715  v8::Local<v8::Script> script =  local
 4746  v8::Local<v8::Script> script =  local
 4788  v8::Local<v8::Script> script =  local
 6269  Local<Script> script = v8_compile("x");  local
 6298  Local<Script> script = v8_compile("obj.x");  local
 6635  Local<Script> script = v8_compile("obj.x = 4");  local
 6658  Local<Script> script = v8_compile("obj.x = 4; obj.x");  local
 6682  Local<Script> script = v8_compile("obj.x = 4; obj.x");  local
 6926  Local<Script> script = v8_compile(source);  local
 10250  const char* script =  local
 10306  const char* script =  local
 11251  Local<Script> script = v8_compile(  local
 11313  Local<Script> script = v8_compile("other.eval('var foo = 1234')");  local
 11436  Local<Script> script = v8_compile("other.eval('new Date(42)')");  local
 13363  Local<Script> script = v8_compile("(function () {"  local
 13388  Local<Script> script = v8_compile("(function () {"  local
 13429  Local<Script> script = v8_compile("(function () {"  local
 13448  Local<Script> script = v8_compile("(function () {"  local
 13992  const char* script =  local
 14225  const char* script =  local
 14449  v8::Local<v8::Script> script;  local
 14713  const char* script = "function foo(a) { return a+1; }";  local
 17095  v8::Local<v8::Script> script = CompileWithOrigin(scriptSource, "test");  local
 17870  v8::Local<v8::String> script = v8_str("function f() {}\\n\\nfunction g() {}");  local
 17912  v8::Local<v8::String> script =  local
 18075  v8::Local<v8::String> script = v8_str("function f() {}\\n\\nfunction g() {}");  local
 18096  v8::Local<v8::String> script =  local
 18154  v8::Local<v8::String> script = v8_str(  local
 18249  v8::Local<v8::Script> script;  local
 18320  v8::Local<v8::Script> script;  local
 18360  v8::Local<v8::Script> script;  local
 20355  char script[64];  local
 20382  Local<Script> script =  local
 22679  Local<Script> script =  local
 22709  Local<Script> script = v8_compile(source);  local
 22952  v8::MaybeLocal<Script> script = v8::ScriptCompiler::Compile(  local
 23228  v8::Local<Script> script =  local
 23334  v8::Local<Script> script =  local
 23387  v8::Local<v8::Script> script;  local
 23415  v8::Local<v8::Script> script =  local
 23442  v8::Local<v8::Script> script =  local
 23459  v8::Local<v8::Script> script =  local
 23479  v8::Local<v8::Script> script =  local
 [all...]
 | 
| test-api-interceptors.cc | 35 using ::v8::Script; 1075  Local<Script> script = v8_compile("obj[900]");  local
 1531  Local<Script> script = v8_compile("obj.x");  local
 1550  Local<Script> script = v8_compile("interceptor_obj.x");  local
 [all...]
 | 
| test-log.cc | 317   // Script needs to have a name in order to trigger InitLineEnds execution. 322   v8::Local<v8::Script> evil_script = CompileWithOrigin(source, origin);
 500     v8::Local<v8::Script> script = CompileWithOrigin(source_str, "");  local
 501     if (script.IsEmpty()) {
 507     if (!script->Run(initialize_logger.env()).ToLocal(&result)) {
 
 | 
| test-macro-assembler-mips.cc | 146   v8::Local<v8::Script> script =  local 147       v8::Script::Compile(context, v8_str(code)).ToLocalChecked();
 149       v8::Local<v8::Object>::Cast(script->Run(context).ToLocalChecked());
 
 | 
| /external/v8/samples/ | 
| process.cc | 95   // Process function of the JavaScript script given as an argument. 96   JsHttpRequestProcessor(Isolate* isolate, Local<String> script)
 97       : isolate_(isolate), script_(script) {}
 105   // Execute the script associated with this processor and extract the
 107   bool ExecuteScript(Local<String> script);
 165 // Execute the script and fetch the Process method.
 194   // Compile and run the script
 198   // The script compiled and ran correctly.  Now we fetch out the
 223 bool JsHttpRequestProcessor::ExecuteScript(Local<String> script) {
 226   // We're just about to compile the script; set up an error handler t
 [all...]
 | 
| shell.cc | 355   v8::Local<v8::Script> script;  local 356   if (!v8::Script::Compile(context, source, &origin).ToLocal(&script)) {
 363     if (!script->Run(context).ToLocal(&result)) {
 
 | 
| /external/v8/src/profiler/ | 
| cpu-profiler.cc | 272   Script* script = Script::cast(shared->script());  local 274   if (script) {
 282           int line_number = script->GetLineNumber(position) + 1;
 
 | 
| profile-generator.cc | 105   if (!shared->script()->IsScript()) return; 106   Script* script = Script::cast(shared->script());
 107   set_script_id(script->id());
 
 | 
| /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/ | 
| test_modulegraph.py | 451         self.assertIsSubclass(modulegraph.Script, modulegraph.Node) 474         self.assertHasExactMethods(modulegraph.Script, '__init__', 'infoTuple')
 490         self.assertHasExactMethods(modulegraph.Script, '__init__', 'infoTuple')
 491         s1 = modulegraph.Script('do_import')
 606         script = os.path.join(os.path.dirname(TESTDATA), 'script')
 610         m = graph.run_script(script, master)
 [all...]
 |