HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 301 - 325 of 378) sorted by null

<<111213141516

  /external/v8/src/profiler/
heap-snapshot-generator.h 382 void ExtractScriptReferences(int entry, Script* script);
  /external/v8/src/snapshot/
serialize.h 457 List<Handle<Script> > new_scripts_;
serialize.cc 706 new_scripts_.Add(handle(Script::cast(obj)));
750 for (Handle<Script> script : new_scripts_) {
751 // Assign a new script id to avoid collision.
752 script->set_id(isolate_->heap()->NextScriptId());
753 // Add script to list.
754 Handle<Object> list = WeakFixedArray::Add(factory->script_list(), script);
2335 Object* script = info->script(); local
2562 Script* script = Script::cast(result->script()); local
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 249 v8::Local<v8::Script> script = v8_compile(c_source); local
250 v8::Maybe<int32_t> result = script->Run(isolate->GetCurrentContext())
272 v8::Local<v8::Script> script = v8_compile(c_source); local
273 v8::Maybe<int32_t> result = script->Run(isolate->GetCurrentContext())
932 CHECK(Script::cast(copy->script())->source() == *copy_source);
1453 v8::Local<v8::UnboundScript> script = local
1499 v8::Local<v8::UnboundScript> script; local
1604 v8::Local<v8::UnboundScript> script = local
1640 v8::Local<v8::UnboundScript> script; local
    [all...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
ImageProcessingActivityJB.java 43 import android.renderscript.Script;
233 // Not using USAGE_IO for the script so create a non-io kernel to copy from
  /external/v8/src/
objects-printer.cc 666 os << "\n - script: " << Brief(script());
885 String* source = String::cast(Script::cast(script())->source());
892 // Script files are often large, hard to read.
893 // os << "\n - script =";
894 // script()->Print(os);
    [all...]
api.h 168 V(Script, JSFunction) \
factory.cc 880 Handle<Script> Factory::NewScript(Handle<String> source) {
881 // Create and initialize script object.
883 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE)); local
884 script->set_source(*source);
885 script->set_name(heap->undefined_value());
886 script->set_id(isolate()->heap()->NextScriptId());
887 script->set_line_offset(0);
888 script->set_column_offset(0)
    [all...]
factory.h 227 // Create a script context.
231 // Create an empty script context table.
267 Handle<Script> NewScript(Handle<String> source);
642 Handle<Object> script,
objects.cc 13526 Script* script = script_iterator_.Next(); local
13553 Handle<Script> script = Handle<Script>::cast(script_object); local
13571 Handle<Script> script = Handle<Script>::cast(script_object); local
    [all...]
gdb-jit.cc 983 return shared_info_ != NULL && shared_info_->script()->IsScript();
986 Script* script() { return Script::cast(shared_info_->script()); } function in class:v8::internal::BASE_EMBEDDED
989 return has_script() && script()->source()->IsString() &&
990 script()->HasValidSource() && script()->name()->IsString() &&
1007 return String::cast(script()->name())->ToCString();
1010 int GetScriptLineNumber(int pos) { return script()->GetLineNumber(pos) + 1;
    [all...]
objects-debug.cc 1014 void Script::ScriptVerify() {
    [all...]
bootstrapper.cc 27 extensions_cache_(Script::TYPE_EXTENSION) {}
184 // made in script scopes. Add a "this" binding to that table pointing to the
574 Handle<Script> script = factory->NewScript(source); local
575 script->set_type(Script::TYPE_NATIVE);
579 SharedFunctionInfo::SetScript(handle(empty_function->shared()), script);
    [all...]
  /frameworks/rs/api/
rs_for_each.spec 20 The @rsForEach() function can be used to invoke the root kernel of a script.
98 arg: rs_script script, "Script to call."
101 arg: const void* usrData, "User defined data to pass to the script. May be NULL."
116 "root" in the specified script, and only a single input allocation can be used.
118 as specified by the kernel argument. The script argument is removed.
119 The kernel must be defined in the current script. In addition, more than one
137 arg: rs_script script
147 arg: rs_script script
159 arg: rs_script script
    [all...]
  /external/v8/src/parsing/
parser.cc 76 Handle<Script> script(Script::cast(shared->script()));
77 set_script(script);
78 if (!script.is_null() && script->type() == Script::TYPE_NATIVE) {
84 ParseInfo::ParseInfo(Zone* zone, Handle<Script> script) : ParseInfo(zone)
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
AllocationTest.java 52 import android.renderscript.Script.LaunchOptions;
226 * Get the {@link LaunchOptions} that can be used with a {@link android.renderscript.Script}
374 * <p>Upon return from this function, script has been executed against the latest buffer.
472 // Create a script graph that converts YUV to RGB
659 * Common script graph for manual-capture based tests that determine the average pixel
684 // TODO: Make a script for YUV 444 -> RGB 888 conversion
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_imports.py 17 script = textwrap.dedent("""\
25 script = textwrap.dedent("""\
30 p = subprocess.Popen([sys.executable, '-c', script],
105 self.script_name = os.path.join(root, 'script.py')
110 # 1. Script to imported modules
112 self.assertIsInstance(n, modulegraph.Script)
129 # The script is a toplevel item and is therefore referred to from the graph root (aka 'None')
395 self.mf.run_script(os.path.join(root, 'script.py'))
426 self.mf.run_script(os.path.join(root, 'script.py'))
452 self.mf.run_script(os.path.join(root, 'script.py')
    [all...]
  /external/pdfium/xfa/src/fxjse/src/
value.cpp 471 v8::Script::Compile(hBinderFuncSource)->Run().As<v8::Function>();
  /external/v8/src/debug/
liveedit.js 5 // LiveEdit feature implementation. The script should be executed after
9 // according to changes of script source (if possible).
11 // When new script source is put in, the difference is calculated textually,
16 // version of the script) it remains unchanged, but the code that could
17 // create a new instance of this function goes away. An old version of script
44 // Applies the change to the script.
47 function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
50 var old_source = script.source;
52 // Gather compile information about old version of script.
53 var old_compile_info = GatherCompileInfo(old_source, script);
    [all...]
mirrors.js 79 SCRIPT_TYPE : 'script',
265 Script: 6 };
454 * Check whether the mirror reflects a script.
455 * @returns {boolean} True if the mirror reflects a script
945 * Returns the script object for the function.
946 * @return {ScriptMirror or undefined} Script object for the function or
947 * undefined if the function has no script
949 FunctionMirror.prototype.script = function() {
950 // Return script if function is resolved. Otherwise just fall through
956 var script = %FunctionGetScript(this.value_)
    [all...]
debug.js 72 // The different types of script compilations matching enum
73 // Script::CompilationType in objects.h.
78 // The different script break point types.
266 // Object representing a script break point. The script is referenced by its
267 // script name or script id and the break point is represented as line and
294 // Creates a clone of script breakpoint that is linked to another script.
403 // Set ignore count on all break points created from this script break point
650 var script = %FunctionGetScript(func); variable
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 688 Handle<Script> script() { return info_->script(); } function in class:v8::internal::FullCodeGenerator
    [all...]
  /external/v8/src/heap/
objects-visiting-inl.h 575 return (info->script() != undefined) &&
576 (reinterpret_cast<Script*>(info->script())->source() != undefined);
644 // If this is a full script wrapped in a function we do not flush the code.
  /external/v8/tools/
grokdump.py     [all...]
  /external/v8/src/compiler/
pipeline.cc 1075 Handle<Script> script = info()->script(); local
    [all...]

Completed in 1285 milliseconds

<<111213141516