HomeSort by relevance Sort by last modified time
    Searched refs:script (Results 276 - 300 of 1631) sorted by null

<<11121314151617181920>>

  /device/lge/mako/
releasetools.py 31 info.script.CacheFreeSpaceCheck(len(source_radio_img))
33 info.script.PatchCheck("%s:%s:%d:%s:%d:%s" % (
81 info.script.Print("Patching radio...")
84 info.script.ApplyPatch(
91 info.script.Print("Writing radio...")
94 info.script.AppendExtra(
115 info.script.Print("Writing bootloader...")
153 info.script.AppendExtra(
176 info.script.AppendExtra('package_extract_file("bootloader.%s.img", "%s");' %
179 info.script.AppendExtra
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.cpp 61 // detached the parser (and this script runner object), perform
63 // and this script runner object are swept out in the same GC.
105 bool HTMLScriptRunner::isPendingScriptReady(const PendingScript& script)
110 return script.isReady();
130 // Stop watching loads before executeScript to prevent recursion if the script reloads itself.
143 // Clear the pending script before possible rentrancy from executeScript()
171 // Implements the steps for 'An end tag whose tag name is "script"'
173 // Script handling lives outside the tree builder to keep each class simple.
181 // Try to execute the script given to us.
218 // to prevent parser or script re-entry during </style> parsing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
NetworkUISourceCodeProvider.js 78 var script = /** @type {!WebInspector.Script} */ (event.data);
79 if (!script.sourceURL || (script.isInlineScript() && !script.hasSourceURL) || script.isSnippet())
82 if (script.isContentScript() && !script.hasSourceURL) {
83 var parsedURL = new WebInspector.ParsedURL(script.sourceURL);
87 this._addFile(script.sourceURL, script, script.isContentScript())
    [all...]
ScriptSnippetModel.js 47 this._snippetStorage = new WebInspector.SnippetStorage("script", "Script snippet #");
83 * @param {!WebInspector.Script} script
85 addScript: function(script)
87 this._mappingForTarget.get(script.target()).addScript(script);
388 var snippetPrefix = WebInspector.Script.snippetSourceURLPrefix;
411 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.Script>} */
424 var script = this._scriptForUISourceCode.get(uiSourceCode)
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_npobject_lifetime_test.cc 58 NPString script; local
59 script.UTF8Characters = "javascript:DeleteSecondPluginInstance()";
60 script.UTF8Length = static_cast<uint32_t>(strlen(script.UTF8Characters));
161 std::string script = "javascript:DeletePluginWithinScript()"; local
163 script_string.UTF8Characters = script.c_str();
165 static_cast<unsigned int>(script.length());
  /external/chromium_org/third_party/harfbuzz-ng/src/
main.cc 115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
118 printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts,
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys)
    [all...]
  /external/harfbuzz_ng/src/
main.cc 115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
118 printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts,
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DebuggerModel.js 45 /** @type {!Object.<string, !WebInspector.Script>} */
47 /** @type {!StringMap.<!Array.<!WebInspector.Script>>} */
259 var script = scripts[i];
260 if (lineNumber === script.lineOffset)
261 minColumnNumber = minColumnNumber ? Math.min(minColumnNumber, script.columnOffset) : script.columnOffset;
350 * @return {!Object.<string, !WebInspector.Script>}
359 * @return {!WebInspector.Script}
367 * @return {!Array.<!WebInspector.Script>}
480 var script = new WebInspector.Script(this.target(), scriptId, sourceURL, startLine, startColumn, endLine, end (…)
    [all...]
  /build/tools/droiddoc/templates-ds/
customizations.cs 33 <script>
37 </script>
51 <script>
55 </script>
71 <script>
75 </script>
91 <script>
95 </script>
111 <script>
115 </script>
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
init_document.js 6 * @fileoverview Initializes the injected content script on the document.
58 // There is a scenario where two copies of the content script can get
60 // and one because the background page injects the content script into
62 // any existing copy of the content script (if any) before loading it again,
72 * again, but our injected page script has remained.
80 // NOTE(deboer): This is called when this script is loaded, automatically
81 // starting ChromeVox. If this isn't the uncompiled script, it will be
  /build/tools/droiddoc/templates-sac/
customizations.cs 33 <script>
37 </script>
51 <script>
55 </script>
71 <script>
75 </script>
91 <script>
95 </script>
111 <script>
115 </script>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8ScriptRunner.cpp 66 v8::Local<v8::Script> compileAndProduceCache(v8::Isolate* isolate, v8::Handle<v8::String> code, v8::ScriptOrigin origin, ScriptResource* resource, v8::ScriptCompiler::CompileOptions options, unsigned cacheTag, Resource::MetadataCacheType cacheType)
69 v8::Local<v8::Script> script = v8::ScriptCompiler::Compile(isolate, &source, options); local
79 return script;
82 v8::Local<v8::Script> compileAndConsumeCache(v8::Isolate* isolate, v8::Handle<v8::String> code, v8::ScriptOrigin origin, ScriptResource* resource, v8::ScriptCompiler::CompileOptions options, unsigned cacheTag)
96 v8::Local<v8::Script> V8ScriptRunner::compileScript(const ScriptSourceCode& source, v8::Isolate* isolate, AccessControlStatus corsStatus, V8CacheOptions cacheOptions)
101 v8::Local<v8::Script> V8ScriptRunner::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition& scriptStartPosition, ScriptResource* resource, ScriptStreamer* streamer, v8::Isolate* isolate, AccessControlStatus corsStatus, V8CacheOptions cacheOptions)
114 v8::Local<v8::Script> script; local
123 script = v8::ScriptCompiler::Compile(isolate, streamer->source(), code, origin)
191 v8::Handle<v8::Script> script = V8ScriptRunner::compileScript(source, fileName, scriptStartPosition, 0, 0, isolate); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
YuvTest.java 102 ScriptC_yuv script = new ScriptC_yuv(mRS); local
103 script.invoke_makeRef(ay, au, av, aref);
116 ScriptC_yuv script = new ScriptC_yuv(mRS); local
140 script.invoke_makeRef(ay, au, av, aref);
146 script.set_mInput(ta);
147 script.forEach_cvt(aout);
159 ScriptC_yuv script = new ScriptC_yuv(mRS); local
185 script.invoke_makeRef(ay, au, av, aref);
191 script.set_mInput(ta);
192 script.forEach_cvt(aout)
    [all...]
RsUnpackColor8888Test.java 26 private ScriptC_rs_unpack_color_8888 script; field in class:RsUnpackColor8888Test
30 script.forEach_root(mIn, mOut);
34 script = new ScriptC_rs_unpack_color_8888(mRS);
  /external/chromium_org/v8/test/mjsunit/
debug-setbreakpoint.js 85 testArguments(dcp, '{"type":"script"}', false);
106 testArguments(dcp, '{"type":"script","target":"test"}', true, true);
107 testArguments(dcp, '{"type":"script","target":"test"}', true, true);
108 testArguments(dcp, '{"type":"script","target":"test","line":1}', true, true);
109 testArguments(dcp, '{"type":"script","target":"test","column":1}', true, true);
120 testArguments(dcp, '{"type":"script","target":"sourceUrlScript","line":0}', true, true);
153 // Check the script ids for the test functions.
159 assertTrue(f_script_id > 0, "invalid script id for f");
160 assertTrue(g_script_id > 0, "invalid script id for g");
161 assertTrue(h_script_id > 0, "invalid script id for h")
    [all...]
  /build/tools/droiddoc/templates-sdk/
customizations.cs 33 <script>
37 </script>
52 <script>
56 </script>
66 <script>
70 </script>
80 <script>
84 </script>
94 <script>
98 </script>
    [all...]
  /external/chromium_org/chrome/browser/extensions/
webstore_installer_test.cc 105 std::string script = base::StringPrintf( local
110 script,
119 std::string script = base::StringPrintf("%s('%s', %d)", local
123 script,
131 std::string script = base::StringPrintf( local
134 ExecuteJavaScriptForTests(base::UTF8ToUTF16(script));
extension_dom_clipboard_apitest.cc 27 bool ExecuteScriptInSelectedTab(const std::string& script);
76 "ifr.contentDocument.write('<script>parent.domAutomationController.send("
77 "document.execCommand(\"%s\"))</script>');";
81 bool ClipboardApiTest::ExecuteScriptInSelectedTab(const std::string& script) {
85 script,
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_browsertest.cc 32 "<script>document.querySelector('object').nonExistentAttribute;</script>";
90 const std::string& script) {
93 blink::WebScriptSource(blink::WebString::fromUTF8(script.c_str())));
105 const std::string& script) {
108 blink::WebScriptSource(blink::WebString::fromUTF8(script.c_str())));
116 // of the script is stored in |result|
118 const std::string& script, bool* result) {
121 blink::WebScriptSource(blink::WebString::fromUTF8(script.c_str())));
  /external/chromium_org/third_party/closure_linter/closure_linter/
scopeutil_test.py 73 def _WrapWithGoogScope(script):
75 return 'goog.scope(function() {\n' + script + '\n});'
80 def assertAlias(self, expected_match, script):
81 start_token = testutil.TokenizeSourceAndRunEcmaPass(script)
122 def assertNoBlocks(self, script):
123 blocks = list(self._GetBlocks(script))
  /external/chromium_org/third_party/icu/source/common/
loclikely.cpp 117 * Create a tag string from the supplied parameters. The lang, script and region
121 * If any of the language, script or region parameters are empty, and the alternateTags
122 * parameter is not NULL, it will be parsed for potential language, script and region tags
138 * @param script The script tag to use.
139 * @param scriptLength The length of the script tag.
154 const char* script,
179 * script and region code without worrying about overrunning
244 script,
251 * Parse the alternateTags string for the script
856 char script[ULOC_SCRIPT_CAPACITY]; local
963 char script[ULOC_SCRIPT_CAPACITY]; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
uscript.h 22 * \brief C API: Unicode Script Information
26 * Constants for ISO 15924 script codes.
28 * Many of these script codes - those from Unicode's ScriptNames.txt -
29 * are character property values for Unicode's Script property.
30 * See UAX #24 Script Names (http://www.unicode.org/reports/tr24/).
32 * Starting with ICU 3.6, constants for most ISO 15924 script codes
38 * For example, there are no characters that have a UCD script code of
39 * Hans or Hant. All Han ideographs have the Hani script code.
40 * The Hans and Hant script codes are used with CLDR data.
42 * ISO 15924 script codes are included for use with CLDR and similar
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1624-strict.js 34 // Test global direct strict eval in strict script.
40 // Test global indirect strict eval in strict script.
46 // Test global direct non-strict eval in strict script.
52 // Test global indirect non-strict eval in strict script.
58 // Test non-global direct strict eval in strict script.
68 // Test non-global indirect strict eval in strict script.
78 // Test non-global direct non-strict eval in strict script.
88 // Test non-global indirect non-strict eval in strict script.
98 // Test non-global direct strict eval in strict script.
109 // Test non-global indirect strict eval in strict script
    [all...]
  /external/icu/icu4c/source/common/
loclikely.cpp 117 * Create a tag string from the supplied parameters. The lang, script and region
121 * If any of the language, script or region parameters are empty, and the alternateTags
122 * parameter is not NULL, it will be parsed for potential language, script and region tags
138 * @param script The script tag to use.
139 * @param scriptLength The length of the script tag.
154 const char* script,
179 * script and region code without worrying about overrunning
244 script,
251 * Parse the alternateTags string for the script
856 char script[ULOC_SCRIPT_CAPACITY]; local
963 char script[ULOC_SCRIPT_CAPACITY]; local
    [all...]
  /external/icu/icu4c/source/common/unicode/
uscript.h 22 * \brief C API: Unicode Script Information
26 * Constants for ISO 15924 script codes.
28 * Many of these script codes - those from Unicode's ScriptNames.txt -
29 * are character property values for Unicode's Script property.
30 * See UAX #24 Script Names (http://www.unicode.org/reports/tr24/).
32 * Starting with ICU 3.6, constants for most ISO 15924 script codes
38 * For example, there are no characters that have a UCD script code of
39 * Hans or Hant. All Han ideographs have the Hani script code.
40 * The Hans and Hant script codes are used with CLDR data.
42 * ISO 15924 script codes are included for use with CLDR and similar
    [all...]

Completed in 4992 milliseconds

<<11121314151617181920>>