HomeSort by relevance Sort by last modified time
    Searched refs:script (Results 376 - 400 of 1554) sorted by null

<<11121314151617181920>>

  /external/chromium_org/remoting/host/installer/mac/Scripts/
remoting_preflight.sh 19 # as possible. When finished, this preflight script should exit successfully in
26 ps -eo uid,command | awk -v script="$SCRIPT_FILE" '
27 $2 == "/bin/sh" && $3 == script && $4 == "--run-from-launchd" {
41 logger Running Chrome Remote Desktop preflight script @@VERSION@@
50 # postflight script.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
checkout_unittest.py 54 checkout._scm.script_path = lambda script: script
  /external/chromium_org/third_party/mesa/src/src/mapi/vgapi/
SConscript 12 script = '../mapi/mapi_abi.py',
14 command = python_cmd + ' $SCRIPT --printer vgapi --mode lib $SOURCE > $TARGET'
  /external/chromium_org/third_party/mesa/src/src/mesa/
SConscript 344 script = 'main/es_generator.py',
346 command = python_cmd + ' $SCRIPT -S $SOURCE -V GLES1.1 > $TARGET'
353 script = GLAPI + 'gen/gl_table.py',
355 command = python_cmd + ' $SCRIPT -c es1 -m remap_table -f $SOURCE > $TARGET',
359 script = GLAPI + 'gen/remap_helper.py',
361 command = python_cmd + ' $SCRIPT -c es1 -f $SOURCE > $TARGET',
443 script = GLAPI + 'gen/gl_enums.py',
445 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
  /external/chromium_org/third_party/sqlite/src/test/
thread_common.tcl 18 # The following script is sourced by every thread spawned using
74 proc do_test {name script result} {
75 set res [eval $script]
  /external/chromium_org/tools/grit/grit/format/
html_inline_unittest.py 213 <script src="script[WHICH].js"></script>
229 <script>console.log('hello');</script>
278 <script src="script1.js"></script>
303 <script>console.log('hello');</script>
  /external/mesa3d/src/mapi/vgapi/
SConscript 12 script = '../mapi/mapi_abi.py',
14 command = python_cmd + ' $SCRIPT --printer vgapi --mode lib $SOURCE > $TARGET'
  /external/mesa3d/src/mesa/
SConscript 344 script = 'main/es_generator.py',
346 command = python_cmd + ' $SCRIPT -S $SOURCE -V GLES1.1 > $TARGET'
353 script = GLAPI + 'gen/gl_table.py',
355 command = python_cmd + ' $SCRIPT -c es1 -m remap_table -f $SOURCE > $TARGET',
359 script = GLAPI + 'gen/remap_helper.py',
361 command = python_cmd + ' $SCRIPT -c es1 -f $SOURCE > $TARGET',
443 script = GLAPI + 'gen/gl_enums.py',
445 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
  /external/openfst/src/bin/
fstcompile.cc 23 #include <fst/script/compile.h>
38 namespace s = fst::script;
  /external/openfst/src/include/fst/script/
shortest-path.h 23 #include <fst/script/arg-packs.h>
24 #include <fst/script/fst-class.h>
25 #include <fst/script/weight-class.h>
27 #include <fst/script/shortest-distance.h> // for ShortestDistanceOptions
30 namespace script { namespace in namespace:fst
33 : public fst::script::ShortestDistanceOptions {
44 WeightClass w = fst::script::WeightClass::Zero(),
182 fst::script::WeightClass::Zero(),
185 } // namespace script
  /external/openfst/src/script/
text-io.cc 17 #include <fst/script/text-io.h>
28 namespace script { namespace in namespace:fst
94 } // namespace script
  /external/srec/config/en.us/grammars/
run_clean_grammars.sh 5 rm *.script >/dev/null 2>&1
  /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeTestBase.java 105 protected void executeJavaScript(final String script) throws Throwable {
112 // frame. We don't want this behaviour, so wrap the script in
114 getWebView().loadUrl("javascript:(function() { " + script + " })()");
  /ndk/
ndk-build.cmd 2 rem This is a Windows cmd.exe script used to invoke the NDK-specific GNU Make executable
  /external/chromium_org/chrome/browser/extensions/api/font_settings/
font_settings_api.cc 47 const char kScriptKey[] = "script";
63 // Gets the font name preference path for |generic_family| and |script|. If
64 // |script| is NULL, uses prefs::kWebKitCommonScript.
67 std::string script = fonts::ToString(script_enum); local
68 if (script.empty())
69 script = prefs::kWebKitCommonScript;
73 script.c_str());
90 // Registers |obs| to observe per-script font prefs under the path |map_name|.
96 const char* script = prefs::kWebKitScriptsForFontFamilyMaps[i]; local
97 std::string pref_name = base::StringPrintf("%s.%s", map_name, script);
152 std::string script; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebSettingsImpl.cpp 66 void WebSettingsImpl::setStandardFontFamily(const WebString& font, UScriptCode script)
68 m_settings->setStandardFontFamily(font, script);
71 void WebSettingsImpl::setFixedFontFamily(const WebString& font, UScriptCode script)
73 m_settings->setFixedFontFamily(font, script);
76 void WebSettingsImpl::setSerifFontFamily(const WebString& font, UScriptCode script)
78 m_settings->setSerifFontFamily(font, script);
81 void WebSettingsImpl::setSansSerifFontFamily(const WebString& font, UScriptCode script)
83 m_settings->setSansSerifFontFamily(font, script);
86 void WebSettingsImpl::setCursiveFontFamily(const WebString& font, UScriptCode script)
88 m_settings->setCursiveFontFamily(font, script);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerThread.cpp 119 m_workerGlobalScope->script()->forbidExecution();
126 WorkerScriptController* script = m_workerGlobalScope->script(); local
128 script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
211 // Ensure that tasks are being handled by thread event loop. If script execution weren't forbidden, a while(1) loop in JS could keep the thread alive forever.
213 m_workerGlobalScope->script()->scheduleExecutionTermination();
  /external/chromium_org/v8/src/
codegen.cc 138 Handle<Script> script = info->script(); local
139 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
142 StringCharacterStream stream(String::cast(script->source()),
  /external/v8/src/
codegen.cc 123 Handle<Script> script = info->script(); local
124 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
126 StringInputBuffer stream(String::cast(script->source()));
handles.cc 356 Foreign* foreign = Script::cast(wrapper->value())->wrapper();
366 Handle<JSValue> GetScriptWrapper(Handle<Script> script) {
367 if (script->wrapper()->foreign_address() != NULL) {
368 // Return the script wrapper directly from the cache.
370 reinterpret_cast<JSValue**>(script->wrapper()->foreign_address()));
373 // Construct a new script wrapper.
378 result->set_value(*script);
386 script->wrapper()->set_foreign_address(
392 // Init line_ends array with code positions of line ends inside script
    [all...]
  /external/chromium_org/chrome/test/webdriver/commands/
webelement_commands.cc 100 std::string script = base::StringPrintf( local
104 Error* error = session_->ExecuteScript(script, &args, &result);
133 std::string script = base::StringPrintf( local
142 Error* error = session_->ExecuteScript(script, &args, &result);
192 std::string script = base::StringPrintf( local
197 Error* error = session_->ExecuteScript(script, &args, &result);
226 std::string script = "return arguments[0] == arguments[1];"; local
235 Error* error = session_->ExecuteScript(script, &args, &result);
257 std::string script = base::StringPrintf( local
265 Error* error = session_->ExecuteScript(script, &args, &result)
401 std::string script = base::StringPrintf( local
430 std::string script = base::StringPrintf( local
466 std::string script = "return arguments[0]['value']"; local
614 std::string script = base::StringPrintf( local
    [all...]
  /external/chromium_org/content/public/test/
browser_test_utils.cc 88 // of the script in |result|. Returns true on success.
95 std::string script = local
99 UTF8ToUTF16(script));
305 std::string script = local
307 return ExecuteScriptHelper(adapter.render_view_host(), frame_xpath, script,
314 const std::string& script,
318 if (!ExecuteScriptHelper(adapter.render_view_host(), frame_xpath, script,
328 const std::string& script,
332 if (!ExecuteScriptHelper(adapter.render_view_host(), frame_xpath, script,
342 const std::string& script,
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-script.js 36 // Count script types.
65 // This script and mjsunit.js has been loaded. If using d8, d8 loads
66 // a normal script during startup too.
69 // Test a builtins script.
74 // Test a builtins delay loaded script.
79 // Test a debugger script.
84 // Test an extension script.
91 // Test a normal script.
96 // Check a nonexistent script.
  /external/v8/test/mjsunit/
debug-script.js 35 // Count script types.
65 // This script and mjsunit.js has been loaded. If using d8, d8 loads
66 // a normal script during startup too.
69 // Test a builtins script.
74 // Test a builtins delay loaded script.
79 // Test a debugger script.
84 // Test an extension script.
91 // Test a normal script.
96 // Check a nonexistent script.
  /ndk/build/core/
build-all.mk 17 # This script is used to build all wanted NDK binaries. It is included
41 # build script that will parse the LOCAL_XXX variable definitions.
93 # On Cygwin, we generate a temporary shell script that is capable of
98 # This shell script is generated by passing the output of the cygwin
99 # 'mount' command to a special Awk script.
104 $(call __ndk_info,Cygwin dependency file conversion script:)
105 $(info ----- start of script ----)
107 $(info ------ end of script -----)
110 @$(HOST_ECHO) "Cygwin : Generating dependency file converter script"

Completed in 1232 milliseconds

<<11121314151617181920>>