HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 326 - 350 of 403) sorted by null

<<11121314151617

  /external/v8/src/
runtime.h 682 Handle<Script> script,
heap.h 149 V(Script, empty_script, EmptyScript) \
    [all...]
isolate.h 242 Script* pending_message_script_;
    [all...]
liveedit-debugger.js 28 // LiveEdit feature implementation. The script should be executed after
32 // according to changes of script source (if possible).
34 // When new script source is put in, the difference is calculated textually,
39 // version of the script) it remains unchanged, but the code that could
40 // create a new instance of this function goes away. An old version of script
50 // Applies the change to the script.
53 function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
56 var old_source = script.source;
58 // Gather compile information about old version of script.
59 var old_compile_info = GatherCompileInfo(old_source, script);
    [all...]
objects-debug.cc 745 void Script::ScriptVerify() {
objects-printer.cc 616 PrintF(out, "\n - script: ");
617 script()->ShortPrint(out);
760 // Script files are often large, hard to read.
761 // PrintF(out, "\n - script =");
762 // script()->Print(out);
950 void Script::ScriptPrint(FILE* out) {
951 HeapObject::PrintHeader(out, "Script");
debug-debugger.js 63 // The different types of script compilations matching enum
64 // Script::CompilationType in objects.h.
69 // The different script break point types.
251 // Object representing a script break point. The script is referenced by its
252 // script name or script id and the break point is represented as line and
277 //Creates a clone of script breakpoint that is linked to another script.
385 // Set ignore count on all break points created from this script break point
645 var script = %FunctionGetScript(func); variable
    [all...]
  /external/v8/test/cctest/
test-strings.cc 445 // Lines must be executed sequentially. Combining them into one script
474 v8::Script::Compile(v8::String::New(line))->Run();
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 40 import android.renderscript.Script;
  /external/chromium_org/tools/gyp/test/lib/
TestGyp.py 53 executing script.
171 (the directory in which the test script lives) to the
    [all...]
  /external/chromium_org/v8/src/
objects-printer.cc 673 PrintF(out, "\n - script: ");
674 script()->ShortPrint(out);
899 String* source = String::cast(Script::cast(script())->source());
908 // Script files are often large, hard to read.
909 // PrintF(out, "\n - script =");
910 // script()->Print(out);
    [all...]
bootstrapper.cc 72 extensions_cache_(Script::TYPE_EXTENSION),
499 Handle<Script> script = factory->NewScript(source); local
500 script->set_type(Smi::FromInt(Script::TYPE_NATIVE));
501 empty_function->shared()->set_script(*script);
1850 Handle<Script> script = factory()->NewScript(factory()->empty_string()); local
    [all...]
api.h 187 V(Script, Object) \
full-codegen.h 596 Handle<Script> script() { return info_->script(); } function in class:v8::internal::FullCodeGenerator
    [all...]
liveedit-debugger.js 28 // LiveEdit feature implementation. The script should be executed after
32 // according to changes of script source (if possible).
34 // When new script source is put in, the difference is calculated textually,
39 // version of the script) it remains unchanged, but the code that could
40 // create a new instance of this function goes away. An old version of script
52 // Applies the change to the script.
55 function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
58 var old_source = script.source;
60 // Gather compile information about old version of script.
61 var old_compile_info = GatherCompileInfo(old_source, script);
    [all...]
objects-debug.cc 972 void Script::ScriptVerify() {
    [all...]
objects-visiting-inl.h 698 return (info->script() != undefined) &&
699 (reinterpret_cast<Script*>(info->script())->source() != undefined);
772 // If this is a full script wrapped in a function we do not flush the code.
    [all...]
mirror-debugger.js 159 var SCRIPT_TYPE = 'script';
381 * Check whether the mirror reflects a script.
382 * @returns {boolean} True if the mirror reflects a script
883 * Returns the script object for the function.
884 * @return {ScriptMirror or undefined} Script object for the function or
885 * undefined if the function has no script
887 FunctionMirror.prototype.script = function() {
888 // Return script if function is resolved. Otherwise just fall through
891 var script = %FunctionGetScript(this.value_);
892 if (script) {
    [all...]
objects.h 147 // - Script
561 V(SCRIPT, Script, script) \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptController.cpp 206 v8::Handle<v8::Script> script = V8ScriptRunner::compileScript(code, source.url(), source.startPosition(), scriptData.get(), m_isolate, corsStatus); local
210 result = V8ScriptRunner::runCompiledScript(script, m_frame->document(), m_isolate);
318 return contextForWorld(frame->script(), mainThreadNormalWorld());
560 m_frame->document()->addConsoleMessage(SecurityMessageSource, ErrorMessageLevel, "Blocked script execution in '" + m_frame->document()->url().elidedString() + "' because the document's frame is sandboxed and the 'allow-scripts' permission is not set.");
585 // We need to hold onto the Frame here because executing script can
597 // If executing script caused this frame to be removed from the page, we
621 void ScriptController::executeScriptInMainWorld(const String& script, ExecuteScriptPolicy policy)
623 evaluateScriptInMainWorld(ScriptSourceCode(script), NotSharableCrossOrigin, policy);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFileSystemAgent.cpp 282 resourceType = ResourceType::Script;
InspectorResourceAgent.cpp 505 .setType(TypeBuilder::Network::Initiator::Type::Script);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
JavaScriptSourceFrame.js 45 this.element.classList.add("source-frame-debugger-script");
161 } else if (!this._uiSourceCode.isEditable() && this._uiSourceCode.contentType() === WebInspector.resourceTypes.Script) {
    [all...]
  /external/harfbuzz/src/
harfbuzz-gsub.c     [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-gsub.c     [all...]

Completed in 1722 milliseconds

<<11121314151617