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

<<21222324252627282930>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 113 directory separator. Needed because filenames in the setup script are
377 temporary script and executing it. Normally, you should let
379 the source for details). The 'direct' flag is used by the script
400 # "Indirect" byte-compilation: write a temporary script and then
409 log.info("writing byte-compilation script '%s'", script_name)
412 script = os.fdopen(script_fd, "w")
414 script = open(script_name, "w")
416 script.write("""\
422 # safety's sake (script should be more robust in the face of
435 script.write(string.join(map(repr, py_files), ",\n") + "]\n"
    [all...]
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
Android.mk 1 # This build script corresponds to a library containing many definitions
  /external/jdiff/src/jdiff/
Diff.java 49 DiffMyers.change script = diff.diff_2(false); local
50 script = mergeDiffs(oldDocWords, newDocWords, script);
55 text = addDiffs(oldDocWords, newDocWords, script, text);
119 DiffMyers.change script) {
120 if (script.link == null)
121 return script; // Only one change
122 DiffMyers.change hunk = script;
151 return script;
156 * edited using the edit script provided by the DiffMyers object
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
xcode.py 258 script = ''
260 script = script + 'cd "%s"\n' % \
265 script = script + "\n".join(
287 script = script + 'exec ' + command_prefix + '%s\nexit 1\n' % \
292 'shellScript': script,
747 # Add custom shell script phases for "actions" sections.
749 # There's no need to write anything into the script to ensure that th
1162 script = 'exec ' + action_string_sh + '\\nexit 1\\n' variable
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-shaper.cpp 52 if (item->item.script == HB_Script_Hebrew
542 static HB_Bool checkScript(HB_Face face, int script)
544 assert(script < HB_ScriptCount);
549 unsigned int tag = ot_scripts[script].tag;
550 int requirements = ot_scripts[script].flags;
559 DEBUG("could not select script %d in GSub table: %d", (int)script, error);
571 HB_Error error = HB_GPOS_Select_Script(face->gpos, script, &script_index);
573 DEBUG("could not select script in gpos table: %d", error);
698 HB_Script script = shaper_item->item.script local
    [all...]
  /external/harfbuzz_ng/test/api/
test-unicode.c 475 PROPERTY (script, (unsigned int) HB_SCRIPT_UNKNOWN)
608 /* This is cruel: we use script-returning functions to test all properties,
730 script_roundtrip_default (hb_script_t script)
732 return hb_script_from_iso15924_tag (hb_script_to_iso15924_tag (script));
737 script_roundtrip_glib (hb_script_t script)
739 return hb_glib_script_to_script (hb_glib_script_from_script (script));
745 script_roundtrip_icu (hb_script_t script)
747 return hb_icu_script_to_script (hb_icu_script_from_script (script));
761 hb_script_t script = test->value; local
763 g_test_message ("Test script roundtrip #%d: %x", i, script)
768 hb_script_t script = test->value; local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScript.cpp 87 // the various Script instances (which are supposed to be completely
98 // Common path is that we have not loaded this Script/library before.
142 // This is required behavior to implement script instancing for the support
326 RsdCpuScriptImpl::RsdCpuScriptImpl(RsdCpuReferenceImpl *ctx, const Script *s) {
359 //ALOGE("rsdScriptInit %p %p", rsc, script);
435 // Attempt to just load the script from cache first if we can.
677 //rsdLookupRuntimeStub(script, "acos");
704 void RsdCpuScriptImpl::populateScript(Script *script) {
709 script->mHal.info.exportedFunctionCount = info->getExportFuncNames().size()
    [all...]
  /build/tools/apicheck/
Android.mk 19 # script file's timestamp is at least as new as the
24 # the hat script
  /build/tools/droiddoc/templates-pdk/
customizations.cs 18 <script>
22 </script>
32 <script>
36 </script>
78 <script>
80 </script>
93 <script>
109 </script><?cs
  /cts/tools/cts-api-coverage/
Android.mk 18 # script file's timestamp is at least as new as the
21 # the hat script
  /cts/tools/cts-java-scanner/
Android.mk 18 # script file's timestamp is at least as new as the
21 # the hat script
  /cts/tools/cts-native-scanner/
Android.mk 18 # script file's timestamp is at least as new as the
21 # the hat script
  /cts/tools/cts-xml-generator/
Android.mk 18 # script file's timestamp is at least as new as the
21 # the hat script
  /dalvik/tools/dexdeps/
Android.mk 18 # script files' timestamps are at least as new as the
21 # the dexdeps script
  /external/bison/build-aux/
do-release-commit-and-tag 8 # Note: this is a bash script (could be zsh or dash)
36 Run this script from top_srcdir to perform the final pre-release NEWS
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/analytics/
popup.js 22 var ga = document.createElement('script');
26 var s = document.getElementsByTagName('script')[0];
  /external/chromium_org/content/child/npapi/
npobject_stub.h 84 void OnEvaluate(const std::string& script, bool popups_allowed,
  /external/chromium_org/content/public/test/
test_utils.h 56 const std::string& script);
  /external/chromium_org/content/renderer/
v8_value_converter_impl_unittest.cc 291 v8::Handle<v8::Script> script(v8::Script::New(v8::String::New(source)));
292 script->Run();
334 v8::Handle<v8::Script> script(v8::Script::New(v8::String::New(source)));
335 v8::Handle<v8::Array> array = script->Run().As<v8::Array>();
402 v8::Handle<v8::Script> script(v8::Script::New(v8::String::New(source)))
    [all...]
  /external/chromium_org/ppapi/tests/
testing_instance.cc 115 void TestingInstance::EvalScript(const std::string& script) {
116 SendTestCommand("EvalScript", script);
296 void TestingInstance::AddPostCondition(const std::string& script) {
297 SendTestCommand("AddPostCondition", script);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptController.cpp 136 ScriptValue WorkerScriptController::evaluate(const String& script, const String& fileName, const TextPosition& scriptStartPosition, WorkerGlobalScopeExecutionState* state)
154 v8::Handle<v8::String> scriptString = v8String(script, m_isolate);
155 v8::Handle<v8::Script> compiledScript = V8ScriptRunner::compileScript(scriptString, fileName, scriptStartPosition, 0, m_isolate);
159 m_workerGlobalScope->script()->forbidExecution();
254 return workerGlobalScope->script();
WorkerScriptController.h 92 // Evaluate a script file in the current execution environment.
93 ScriptValue evaluate(const String& script, const String& fileName, const TextPosition& scriptStartPosition, WorkerGlobalScopeExecutionState*);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorAgent.h 85 void evaluateForTestInFrontend(long testCallId, const String& script);
InspectorFrontendHost.h 65 void setInjectedScriptForOrigin(const String& origin, const String& script);
  /external/chromium_org/third_party/WebKit/Source/core/page/
Navigator.cpp 55 const String* sourceURL = frame->script()->sourceURL();

Completed in 508 milliseconds

<<21222324252627282930>>