| /external/webkit/Source/WebCore/inspector/ |
| InspectorDebuggerAgent.cpp | 249 Script& script = scriptIterator->second; 250 if (breakpoint.lineNumber < script.lineOffset) 252 if (!script.linesCount) { 253 script.linesCount = 1; 254 for (size_t i = 0; i < script.data.length(); ++i) { 255 if (script.data[i] == '\n') 256 script.linesCount += 1; 259 if (breakpoint.lineNumber >= script.lineOffset + script.linesCount [all...] |
| /frameworks/rs/ |
| rsScriptGroup.cpp | 40 ScriptGroup::Node::Node(Script *s) { 46 ScriptGroup::Node * ScriptGroup::findNode(Script *s) const {
|
| rsContext.cpp | 100 uint32_t Context::runScript(Script *s) { 180 ALOGV("RS: Frame (%i), Script %2.1f%% (%i), Swap %2.1f%% (%i), Idle %2.1f%% (%lli), Internal %2.1f%% (%lli), Avg fps: %u", 220 sprintf(buffer, "Avg fps %u, Frame %i ms, Script %i ms", mAverageFPS, mTimeMSLastFrame, mTimeMSLastScript); 299 rsc->props.mLogScripts = getProp("debug.rs.script") != 0; 665 void Context::setRootScript(Script *s) { 784 Script *s = static_cast<Script *>(vs);
|
| /external/v8/src/ |
| debug.cc | 97 // Isolate::context() may have been NULL when "script collected" event 600 void ScriptCache::Add(Handle<Script> script) { 602 // Create an entry in the hash map for the script. 603 int id = Smi::cast(script->id())->value(); 607 ASSERT(*script == *reinterpret_cast<Script**>(entry->value)); 611 // Globalize the script object, make it weak and use the location of the 613 Handle<Script> script_ = 614 Handle<Script>::cast [all...] |
| v8globals.h | 153 class Script;
|
| liveedit.cc | 598 static void CompileScriptForTracker(Isolate* isolate, Handle<Script> script) { 603 CompilationInfo info(script); 816 // Saves only function code, because for a script function we 892 JSArray* LiveEdit::GatherCompileInfo(Handle<Script> script, 898 Handle<Object> original_source = Handle<Object>(script->source()); 899 script->set_source(*source); 901 CompileScriptForTracker(isolate, script); 903 script->set_source(*original_source) [all...] |
| factory.cc | 356 Handle<Script> Factory::NewScript(Handle<String> source) { 357 // Generate id for this script. 361 // Script ids start from one. 373 // Create and initialize script object. 375 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE)); local 376 script->set_source(*source); 377 script->set_name(heap->undefined_value()); 378 script->set_id(heap->last_script_id()) [all...] |
| api.cc | 1772 i::Handle<i::JSValue> script = local 1789 i::Handle<i::JSValue> script = local [all...] |
| api.h | 222 OpenHandle(const Script* data); 308 MAKE_OPEN_HANDLE(Script, Object)
|
| parser.h | 433 Parser(Handle<Script> script, 816 Handle<Script> script_;
|
| log.h | 129 V(SCRIPT_TAG, "Script") \ 134 V(NATIVE_SCRIPT_TAG, "Script") 293 // Converts tag to a corresponding NATIVE_... if the script is native. 294 INLINE(static LogEventsAndTags ToNativeByScript(LogEventsAndTags, Script*));
|
| /external/harfbuzz_ng/src/ |
| hb-ot-layout-common-private.hh | 53 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList 176 struct Script; 218 struct Script 240 const Record<Script>::sanitize_closure_t * = NULL) { 248 * beginning of Script table--may be Null */ 256 typedef RecordListOf<Script> ScriptList; [all...] |
| hb-ot-layout.cc | 289 const OT::Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index); 302 const OT::Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index);
|
| /external/v8/test/cctest/ |
| log-eq-of-logging-and-traversal.js | 59 if (type != "LazyCompile" && type != "Script" && type != "Function") return; 127 "Script", "String", "RegExp", "Date", "Error"];
|
| test-alloc.cc | 171 v8::Script::Compile(v8::String::New("(new Foo).get"))->Run();
|
| test-decls.cc | 137 Local<Value> result = Script::Compile(String::New(source))->Run();
|
| test-log-stack-tracer.cc | 45 using v8::Script; 268 // Compile the script. 297 // script [JS] 345 // script [JS]
|
| /external/webkit/Source/WebCore/loader/cache/ |
| CachedResourceRequest.cpp | 56 case CachedResource::Script:
|
| /frameworks/compile/libbcc/tools/bcc_compat/ |
| Main.cpp | 39 #include <bcc/Script.h> 153 llvm::errs() << "Out of memory when create script for file `"
|
| /frameworks/compile/mclinker/lib/Core/ |
| Linker.cpp | 115 case Input::Script: 172 // 9. - add standard symbols, target-dependent symbols and script symbols
|
| /external/v8/include/ |
| v8.h | 509 * Pre-compilation data that can be associated with a script. This 510 * data can be calculated for a script in advance of actually 511 * compiling it, and can be stored between compilations. When script 519 * Pre-compiles the specified script (context-independent). 521 * \param input Pointer to UTF-8 script source code. 522 * \param length Length of UTF-8 script source code. 527 * Pre-compiles the specified script (context-independent). 532 * \param source Script source code. 564 * The origin, within a file, of a script. 586 * A compiled JavaScript script [all...] |
| /external/chromium/net/proxy/ |
| proxy_resolver_v8.cc | 80 // Pseudo-name for the PAC script. 81 const char kPacResourceName[] = "proxy-pac-script.js"; 82 // Pseudo-name for the PAC utility script. 83 const char kPacUtilityResourceName[] = "proxy-pac-utility-script.js"; 451 // (This script should never fail, as it is a string literal!) 469 // to be a legitimiate PAC script. 510 // Compiles and runs |script| in the current V8 context. 512 int RunScript(v8::Handle<v8::String> script, const char* script_name) { 515 // Compile the script. 518 v8::Local<v8::Script> code = v8::Script::Compile(script, &origin) [all...] |
| /external/libvpx/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 | 81 // Process function of the JavaScript script given as an argument. 82 explicit JsHttpRequestProcessor(Handle<String> script) : script_(script) { } 90 // Execute the script associated with this processor and extract the 92 bool ExecuteScript(Handle<String> script); 146 // 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/webkit/Source/WebCore/bindings/v8/ |
| NPV8Object.cpp | 286 bool oldAllowPopups = frame->script()->allowPopupsFromPlugin(); 287 frame->script()->setAllowPopupsFromPlugin(popupsAllowed); 289 String script = String::fromUTF8(npScript->UTF8Characters, npScript->UTF8Length); local 290 v8::Local<v8::Value> v8result = proxy->evaluate(ScriptSourceCode(script, KURL(ParsedURLString, filename)), 0); 292 frame->script()->setAllowPopupsFromPlugin(oldAllowPopups); 354 convertNPVariantToV8Object(value, object->rootObject->frame()->script()->windowScriptNPObject())); 488 v8::Handle<v8::Script> script = v8::Script::Compile(source, 0); local 489 v8::Handle<v8::Value> enumeratorObj = script->Run() [all...] |