/external/webkit/LayoutTests/fast/encoding/resources/ |
parser-tests.js | 4 '<li>56, 57, 58, 59 - we do not run scripts during encoding detection phase and parser treats meta inside a script as text, not a tag.</li>' +
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8InjectedScriptManager.cpp | 93 // Inject javascript into the context. The compiled script is supposed to evaluate into 96 // injected script id and explicit reference to the inspected global object. The function is expected 98 v8::Local<v8::Script> script = v8::Script::Compile(v8String(scriptSource)); local 99 v8::Local<v8::Value> v = script->Run();
|
/external/webkit/Source/WebCore/dom/ |
ScriptElement.cpp | 157 // http://dev.w3.org/html5/spec/Overview.html#prepare-a-script 190 // FIXME: If script is parser inserted, verify it's still in the original document. 198 if (!m_element->document()->frame()->script()->canExecuteScripts(AboutToExecuteScript)) 276 // Create a script from the script element node, using the script 277 // block's source and the script block's type. 278 // Note: This is where the script is compiled and actually executed. 279 frame->script()->evaluate(sourceCode);
|
/external/webkit/Source/WebCore/inspector/ |
InspectorController.cpp | 198 void InspectorController::evaluateForTestInFrontend(long callId, const String& script) 200 m_inspectorAgent->evaluateForTestInFrontend(callId, script);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
SourceHTMLTokenizer.re2js | 69 SCRIPT: 16, 80 var match = /<\/script/i.exec(line); 144 // Re-set line to force </script> detection first. 225 if (this._condition.parseCondition & this._parseConditions.SCRIPT) { 226 // Do not tokenize script tag contents, keep lexer state, even though processing "<". 232 this._condition.parseCondition = this._parseConditions.SCRIPT; 267 if (this._condition.parseCondition & (this._parseConditions.SCRIPT | this._parseConditions.STYLE)) { 268 // Do not tokenize script and style tag contents, keep lexer state, even though processing "<". 282 if (this._condition.parseCondition & this._parseConditions.SCRIPT) { 287 // Do not tokenize script tag contents [all...] |
/external/webkit/Source/WebCore/page/ |
Frame.h | 119 ScriptController* script(); 155 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it. 300 inline ScriptController* Frame::script() function in class:WebCore::Frame
|
/external/webkit/Source/WebKit/chromium/src/ |
WebDevToolsAgentImpl.cpp | 295 void WebDevToolsAgentImpl::evaluateInWebInspector(long callId, const WebString& script) 298 ic->evaluateForTestInFrontend(callId, script);
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
DumpRenderTreeSupportQt.h | 115 static void evaluateScriptInIsolatedWorld(QWebFrame* frame, int worldID, const QString& script); 118 static void webInspectorExecuteScript(QWebPage* page, long callId, const QString& script);
|
/external/webkit/Source/WebKit/win/ |
WebInspector.cpp | 258 String script(bScript, SysStringLen(bScript)); 259 page->inspectorController()->evaluateForTestInFrontend(callId, script);
|
/external/webkit/Tools/DumpRenderTree/qt/ |
LayoutTestControllerQt.cpp | 332 void LayoutTestController::queueLoadingScript(const QString& script) 334 //qDebug() << ">>>queueLoadingScript" << script; 335 WorkQueue::shared()->queue(new LoadingScriptItem(script, m_drt->webPage())); 338 void LayoutTestController::queueNonLoadingScript(const QString& script) 340 //qDebug() << ">>>queueNonLoadingScript" << script; 341 WorkQueue::shared()->queue(new NonLoadingScriptItem(script, m_drt->webPage())); 403 void LayoutTestController::evaluateInWebInspector(long callId, const QString& script) 405 DumpRenderTreeSupportQt::webInspectorExecuteScript(m_drt->webPage(), callId, script); 820 void LayoutTestController::evaluateScriptInIsolatedWorld(int worldID, const QString& script) 822 DumpRenderTreeSupportQt::evaluateScriptInIsolatedWorld(m_drt->webPage()->mainFrame(), worldID, script); [all...] |
/external/webkit/Tools/DumpRenderTree/wx/ |
LayoutTestControllerWx.cpp | 420 void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script) 435 void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldId, JSObjectRef globalObject, JSStringRef script)
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
config_unittest.py | 143 # FIXME: This test runs a standalone python script to test 151 script = c.path_from_webkit_base('Tools', 'Scripts', 157 args = [sys.executable, script, '--mock', expected] 171 # configuration file is. See what happens if that script fails.
|
/frameworks/base/core/jni/android/graphics/ |
TextLayoutCache.cpp | 578 // script-run splitting with Harfbuzz is splitting on parenthesis 623 // Split the BiDi run into Script runs. Harfbuzz will populate the pos, length and script 639 ALOGD("-------- Start of Script Run --------"); 640 ALOGD("Shaping Script Run with"); 642 ALOGD(" -- HB script = %d", mShaperItem.item.script); 709 ALOGD("Returned script run glyphs -- count = %d", countGlyphs); 749 ALOGD("-------- End of Script Run --------"); 762 HB_Script script) { [all...] |
/sdk/monitor/ |
monitor.bat | 19 rem Change current directory and drive to where the script is, to avoid
|
/external/v8/test/cctest/ |
test-debug.cc | 173 v8::Script::Compile(v8::String::New(source))->Run(); 182 v8::Script::Compile(v8::String::New(source))->Run(); 227 return v8::Script::Compile(str)->Run()->Int32Value(); 231 // Set a break point in a script identified by id using the global Debug object. 235 // Column specified set script break point on precise location. 240 // Column not specified set script break point on line. 249 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run(); 256 // Set a break point in a script identified by name using the global Debug 262 // Column specified set script break point on precise location. 267 // Column not specified set script break point on line 1562 v8::Local<v8::String> script = v8::String::New( local 1688 v8::Local<v8::Script> script = v8::Script::Compile(source, &origin); local 1775 v8::Local<v8::String> script = v8::String::New( local 1832 v8::Local<v8::String> script = v8::String::New( local 1894 v8::Local<v8::String> script = v8::String::New( local 1950 v8::Local<v8::String> script = v8::String::New( local 2075 v8::Local<v8::String> script = v8::String::New( local 2136 v8::Local<v8::String> script = v8::String::New( local 2235 v8::Local<v8::String> script = v8::String::New( local 3722 v8::Handle<v8::Script> script = v8::Script::Compile(v8::String::New(src), local 6069 v8::Local<v8::String> script = v8::String::New( local 6231 const char* script = "function f() { debugger; g(); } function g() { }"; local 6296 const char* script = local 6546 const char* script = "var a=1"; local 6570 const char* script = "function f() {};"; local 6609 const char* script = "function f() {throw new Error()};"; local 6634 const char* script = "function f() {};"; local 6809 v8::Handle<v8::Script> script = v8::Script::Compile(void0, void0); local 7305 char script[128]; local [all...] |
/external/chromium/chrome/common/extensions/ |
extension_file_util.cc | 37 // Returns false and sets the error if script file can't be loaded, 179 // Validate that claimed script resources actually exist, 182 const UserScript& script = extension->content_scripts()[i]; local 184 for (size_t j = 0; j < script.js_scripts().size(); j++) { 185 const UserScript::File& js_script = script.js_scripts()[j]; 193 for (size_t j = 0; j < script.css_scripts().size(); j++) { 194 const UserScript::File& css_script = script.css_scripts()[j];
|
/external/icu4c/common/ |
uchar.c | 551 UScriptCode script; local 560 script=USCRIPT_COMMON; 562 script=USCRIPT_INHERITED; 564 script=(UScriptCode)scx[0]; 567 if(sc==script) {
|
/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...] |
shell.cc | 273 v8::Handle<v8::Script> script = v8::Script::Compile(source, name); local 274 if (script.IsEmpty()) { 280 v8::Handle<v8::Value> result = script->Run();
|
/external/v8/src/ |
debug.h | 161 // Cache of all script objects in the heap. When a script is added a weak handle 163 // callback takes care of removing the script from the cache. The key used in 164 // the cache is the script id. 170 // Add script to the cache. 171 void Add(Handle<Script> script); 180 // Calculate the hash value from the key (script id). 185 // Scripts match if their keys (script id) match. 391 // Script cache handling [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebFrame.cpp | 457 return toGlobalRef(m_coreFrame->script()->globalObject(mainThreadNormalWorld())->globalExec()); 462 return toGlobalRef(m_coreFrame->script()->globalObject(world->coreWorld())->globalExec()); 580 JSDOMWindow* globalObject = m_coreFrame->script()->globalObject(world->coreWorld()); 592 JSDOMWindow* globalObject = m_coreFrame->script()->globalObject(world->coreWorld()); 604 JSDOMWindow* globalObject = m_coreFrame->script()->globalObject(mainThreadNormalWorld());
|
/external/libppp/src/ |
chat.c | 181 /* Put the '-' back in case we ever want to rerun our script */ 190 /* End of script - all ok */ 215 * c->argptr now temporarily points into c->script (via c->argv) 282 /* End of script - all ok */ 553 *c->script = '\0'; 570 *c->script = '\0'; 573 strncpy(c->script, data, sizeof c->script - 1); 574 c->script[sizeof c->script - 1] = '\0' [all...] |
/external/harfbuzz/src/ |
harfbuzz-khmer.c | 604 assert(item->item.script == HB_Script_Khmer); 644 void HB_KhmerAttributes(HB_Script script, const HB_UChar16 *text, hb_uint32 from, hb_uint32 len, HB_CharAttributes *attributes) 649 HB_UNUSED(script);
|
harfbuzz-myanmar.c | 472 assert(item->item.script == HB_Script_Myanmar); 512 void HB_MyanmarAttributes(HB_Script script, const HB_UChar16 *text, hb_uint32 from, hb_uint32 len, HB_CharAttributes *attributes) 517 HB_UNUSED(script);
|
/external/skia/src/animator/ |
SkAnimateMaker.cpp | 77 const char* script; local 78 if (findKey(displayable, &script) == false) 80 return SkAnimatorScript::EvaluateString(*this, displayable, parent, script, newID);
|