| /external/v8/tools/ |
| grokdump.py | 639 if self.shared.script.Is(Script) and self.shared.script.name.Is(String): 640 p.Print("script name: %s" % self.shared.script.name) 661 if not self.shared.script.Is(Script): return source 662 script_source = self.shared.script.source 677 self.script = self.ObjectField(SharedFunctionInfo.SCRIPT_OFFSET) 686 class Script(HeapObject) [all...] |
| /ndk/build/core/ |
| add-application.mk | 16 # this script is used to record an application definition in the 136 $(call ndk_log, Using build script $(APP_BUILD_SCRIPT)) 142 $(call __ndk_info,to a valid NDK build script.)
|
| /external/chromium/sdch/open-vcdiff/vsprojects/ |
| vcdiff_test.bat | 17 rem This script tests the correctness of the vcdiff.exe command-line 19 rem shell script for Unix systems, though some of the tests from that 20 rem script are not included here. 25 rem The script should be passed one argument which is the location of the 28 ( echo Must pass location of vcdiff.exe as script argument ^
|
| /external/webkit/Source/WebKit/chromium/src/ |
| WebFrameImpl.cpp | 753 return m_frame->script()->windowScriptNPObject(); 759 if (!m_frame || !m_frame->script()->canExecuteScripts(NotAboutToExecuteScript)) 764 m_frame->script()->bindToWindowObject(m_frame, key, object); 773 m_frame->script()->executeScript( 789 m_frame->script()->evaluateInIsolatedWorld(worldId, sources, extensionGroup); 828 m_frame->script()->collectGarbage(); 839 return m_frame->script()->executeScript( [all...] |
| /external/v8/src/ |
| full-codegen.cc | 276 Handle<Script> script = info->script(); local 277 if (!script->IsUndefined() && !script->source()->IsUndefined()) { 278 int len = String::cast(script->source())->length(); 565 Compiler::BuildFunctionInfo(decl->fun(), script()); [all...] |
| debug.h | 159 // Cache of all script objects in the heap. When a script is added a weak handle 161 // callback takes care of removing the script from the cache. The key used in 162 // the cache is the script id. 168 // Add script to the cache. 169 void Add(Handle<Script> script); 178 // Calculate the hash value from the key (script id). 181 // Scripts match if their keys (script id) match. 384 // Script cache handling [all...] |
| /external/webkit/Source/WebCore/platform/graphics/android/ |
| FontAndroid.cpp | 366 // TextRunWalker walks a TextRun and presents each script run in sequence. A 368 // are all left-to-right or right-to-left). A script run is a subsequence where 369 // all the characters have the same script (e.g. Arabic, Thai etc). Shaping is 370 // only ever done with script runs since the shapers only know how to deal with 371 // a single script. 373 // After creating it, the script runs are either iterated backwards or forwards. 377 // Once you have setup the object, call |nextScriptRun| to get the first script 391 // Advance to the next script run, returning false when the end of the 419 // Set the x offset for the next script run. This affects the values in 429 // by the current x offset and that the x offset is updated for each script [all...] |
| /external/webkit/Source/WebKit/win/ |
| DOMHTMLClasses.h | 63 /* [in] */ BSTR script, 64 /* [retval][out] */ VARIANT *result) { return DOMObject::evaluateWebScript(script, result); } 121 /* [in] */ BSTR script, 122 /* [retval][out] */ VARIANT *result) { return DOMObject::evaluateWebScript(script, result); } 186 /* [in] */ BSTR script, 187 /* [retval][out] */ VARIANT *result) { return DOMDocument::evaluateWebScript(script, result); } 460 /* [in] */ BSTR script, 461 /* [retval][out] */ VARIANT *result) { return DOMElement::evaluateWebScript(script, result); } 719 /* [in] */ BSTR script, 720 /* [retval][out] */ VARIANT *result) { return DOMHTMLElement::evaluateWebScript(script, result); [all...] |
| /external/v8/samples/ |
| shell.cc | 570 v8::Handle<v8::Script> script = v8::Script::Compile(source, name); local 571 if (script.IsEmpty()) { 577 v8::Handle<v8::Value> result = script->Run();
|
| /external/webkit/Source/WebCore/inspector/ |
| InspectorResourceAgent.cpp | 85 static const char script[] = "Script"; member in namespace:WebCore::ResourceType 280 case CachedResource::Script: 281 return ResourceType::script; 391 m_frontend->initialContentSet(static_cast<int>(identifier), sourceString, ResourceType::script); member in class:WebCore::ResourceType
|
| /external/webkit/Source/WebCore/platform/graphics/chromium/ |
| FontCacheChromiumWin.cpp | 437 UScriptCode script; local 439 fontDescription.genericFamily(), &c, &script); 488 if (script == USCRIPT_HAN) { 496 // because it's based on script to font mapping. This problem is
|
| /external/webkit/Source/WebCore/plugins/ |
| PluginView.cpp | 331 m_parentFrame->script()->cleanupScriptObjectsForPlugin(this); 496 // Executing a script can cause the plugin view to be destroyed, so we keep a reference to it. 498 ScriptValue result = m_parentFrame->script()->executeScript(jsString, request->shouldAllowPopups()); 504 ScriptState* scriptState = m_parentFrame->script()->globalObject(pluginWorld())->globalExec(); 563 if (!m_parentFrame->script()->canExecuteScripts(NotAboutToExecuteScript)) 821 RefPtr<JSC::Bindings::RootObject> root = m_parentFrame->script()->createRootObject(this); [all...] |
| /external/webkit/Source/WebKit/qt/Api/ |
| qwebframe.cpp | 621 root = d->frame->script()->cacheableBindingRootObject(); 623 root = d->frame->script()->bindingRootObject(); 642 QScriptEngine* engine = d->frame->script()->qtScriptEngine(); 947 If a script in the \a html runs longer than the default script timeout (currently 10 seconds), 953 script can be specified through the charset attribute of the HTML script tag. It is also possible [all...] |
| /external/webkit/Source/WebKit/qt/WebCoreSupport/ |
| DumpRenderTreeSupportQt.cpp | 193 void DumpRenderTreeSupportQt::webInspectorExecuteScript(QWebPage* page, long callId, const QString& script) 198 page->handle()->page->inspectorController()->evaluateForTestInFrontend(callId, script); 877 void DumpRenderTreeSupportQt::evaluateScriptInIsolatedWorld(QWebFrame* frame, int worldID, const QString& script) 890 ScriptController* proxy = coreFrame->script(); 895 proxy->executeScriptInWorld(scriptWorld->world(), script, true); 897 ScriptSourceCode source(script); [all...] |
| /dalvik/dx/etc/ |
| dx.bat | 21 REM Set up prog to be the path of this script, including following symlinks,
|
| /development/samples/BrowserPlugin/jni/background/ |
| BackgroundPlugin.cpp | 449 NPString script = { (char*)stringMem, strlen(jsString) }; local 451 if (!browser->evaluate(instance, windowObject, &script, &scriptVariant))
|
| /device/common/ |
| generate-blob-scripts.sh | 17 # This script auto-generates the scripts that manage the handling of the 29 # Caveat: this script does many full builds (2 per device). It takes a while 35 # If the server and branch paramters are both present, the script will upload 41 echo This script must be run with the --force option
|
| /external/elfutils/libelf/ |
| Makefile.am | 94 -Wl,--version-script,$(srcdir)/libelf.map,--no-undefined \
|
| /external/ipsec-tools/src/racoon/ |
| cfparse.y | 242 %token SCRIPT PHASE1_UP PHASE1_DOWN PHASE1_DEAD [all...] |
| /external/v8/src/mips/ |
| codegen-mips.h | 258 Handle<Script> script); 267 inline Handle<Script> script();
|
| /external/v8/test/mjsunit/ |
| error-constructors.js | 54 // script tags in the same context in a browser setting. We therefore
|
| /external/webkit/LayoutTests/dom/xhtml/level3/core/ |
| domimplementationregistry12.js | 77 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/ecma-script-binding
|
| domimplementationregistry13.js | 78 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/ecma-script-binding
|
| domimplementationregistry17.js | 78 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/ecma-script-binding
|
| domimplementationregistry23.js | 77 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/ecma-script-binding
|