HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 76 - 100 of 118) sorted by null

1 2 34 5

  /external/v8/include/
v8.h 493 * Pre-compilation data that can be associated with a script. This
494 * data can be calculated for a script in advance of actually
495 * compiling it, and can be stored between compilations. When script
511 * The origin, within a file, of a script.
532 * A compiled JavaScript script.
534 class V8EXPORT Script {
538 * Compiles the specified script (context-independent).
540 * \param source Script source code.
541 * \param origin Script origin, owned by caller, no references are kept
546 * \param script_data Arbitrary data associated with script. Usin
    [all...]
  /external/libvpx/examples/includes/geshi/contrib/
langcheck.php 3 * GeSHi example script
5 * Just point your browser at this script (with geshi.php in the parent directory,
67 <title>GeSHi Language File Validation Script</title>
119 <h2>GeSHi Language File Validation Script</h2>
120 <p>To use this script, make sure that <strong>geshi.php</strong> is in the
123 <p>Everything else will be done by this script automatically. After the script
154 report_error(TYPE_ERROR, 'The path "'.GESHI_LANG_ROOT.'" is not readable to this script!');
424 'REGEXPS', 'SCRIPT');
    [all...]
  /external/v8/samples/
process.cc 78 // Process function of the JavaScript script given as an argument.
79 explicit JsHttpRequestProcessor(Handle<String> script) : script_(script) { }
88 // Execute the script associated with this processor and extract the
90 bool ExecuteScript(Handle<String> script);
144 // Execute the script and fetch the Process method.
172 // Compile and run the script
176 // The script compiled and ran correctly. Now we fetch out the
197 bool JsHttpRequestProcessor::ExecuteScript(Handle<String> script) {
200 // We're just about to compile the script; set up an error handler t
    [all...]
  /external/v8/src/
api.h 225 OpenHandle(const Script* data);
299 MAKE_OPEN_HANDLE(Script, JSFunction)
frames.cc 193 Object* script = JSFunction::cast(frame()->function())->shared()->script();
195 return (script->IsScript() &&
196 Script::TYPE_NATIVE != Script::cast(script)->type()->value());
full-codegen.h 408 Handle<Script> script() { return info_->script(); } function in class:v8::internal::FullCodeGenerator
globals.h 261 class Script;
runtime.h 420 static Object* FindSharedFunctionInfoInScript(Handle<Script> script,
top.h 89 Script* pending_message_script_;
log.cc     [all...]
factory.h 144 static Handle<Script> NewScript(Handle<String> source);
heap.h 108 V(Script, empty_script, EmptyScript) \
    [all...]
objects-debug.cc 749 // Script files are often large, hard to read.
750 // PrintF("\n - script =");
751 // script()->Print();
1108 void Script::ScriptVerify() {
1122 void Script::ScriptPrint() {
1123 HeapObject::PrintHeader("Script");
    [all...]
parser.cc 93 Parser(Handle<Script> script, bool allow_natives_syntax,
133 Handle<Script> script_;
1024 AstBuildingParser(Handle<Script> script, bool allow_natives_syntax,
1026 : Parser(script, allow_natives_syntax, extension, PARSE,
    [all...]
runtime.cc 1288 Handle<Object> script = Handle<Object>(fun->shared()->script()); local
    [all...]
d8-posix.cc 315 Handle<Value> cons_as_obj(Script::Compile(String::New(source))->Run());
  /external/webkit/WebCore/bindings/v8/
NPV8Object.cpp 275 WebCore::String script = WebCore::String::fromUTF8(npScript->UTF8Characters, npScript->UTF8Length); local
276 v8::Local<v8::Value> v8result = proxy->evaluate(WebCore::ScriptSourceCode(script, WebCore::KURL(WebCore::ParsedURLString, filename)), 0);
333 convertNPVariantToV8Object(value, object->rootObject->frame()->script()->windowScriptNPObject()));
461 v8::Handle<v8::Script> script = v8::Script::Compile(source, 0); local
462 v8::Handle<v8::Value> enumeratorObj = script->Run();
  /external/webkit/WebCore/loader/
Cache.cpp 77 case CachedResource::Script:
679 case CachedResource::Script:
loader.cpp 85 case CachedResource::Script:
107 case CachedResource::Script:
  /external/v8/test/cctest/
test-decls.cc 137 Local<Value> result = Script::Compile(String::New(source))->Run();
test-log.cc 137 v8::Script::Compile(v8::String::New(src))->Run();
522 // Script needs to have a name in order to trigger InitLineEnds execution.
524 v8::Handle<v8::Script> evil_script = v8::Script::Compile(source, origin);
896 const char* script = "Script,"; local
902 || Consume(script, &start)
1057 "\"Object\"", "\"Script\"", "\"String\""
    [all...]
test-strings.cc 431 v8::Script::Compile(v8::String::New(source))->Run()->Int32Value());
  /frameworks/base/libs/rs/
rsScriptC.cpp 36 ScriptC::ScriptC(Context *rsc) : Script(rsc)
66 rsc->setError(RS_ERROR_BAD_SCRIPT, "Attempted to run bad script");
163 rsc->setError(RS_ERROR_BAD_SCRIPT, "Error compiling user script.");
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macevents.c 31 #include <Script.h>
  /external/v8/src/ia32/
codegen-ia32.h 318 inline Handle<Script> script();
    [all...]

Completed in 578 milliseconds

1 2 34 5