| /external/v8/samples/ |
| 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/ |
| log.cc | [all...] |
| /external/webkit/PerformanceTests/SunSpider/tests/parse-only/ |
| jquery-1.3.2.js | 548 dataType: "script" 645 // Evalulates a script in a global context 651 script = document.createElement("script"); 653 script.type = "text/javascript"; 655 script.appendChild( document.createTextNode( data ) ); 657 script.text = data; 661 head.insertBefore( script, head.firstChild ); 662 head.removeChild( script ); 904 // IE can't serialize <link> and <script> tags normall [all...] |
| /frameworks/compile/libbcc/tools/bcc/ |
| Main.cpp | 39 #include <bcc/Script.h> 151 Script *PrepareScript(BCCContext &pContext, 153 Script *result = NULL; 172 result = new (std::nothrow) Script(*source); 174 llvm::errs() << "Out of memory when create script for file `" 265 bool CompileScript(Compiler &pCompiler, Script &pScript, 412 Script *script = PrepareScript(context, OptInputFilenames); local 413 if (script == NULL) { 426 if (!CompileScript(compiler, *script, OutputFilename)) [all...] |
| /ndk/tests/ |
| run-tests.sh | 17 # This shell script is used to run all NDK build tests in a row. 305 # Run a simple awk script 306 # $1: awk script to run 312 local SCRIPT="$1" 313 local SCRIPT_NAME="`basename $SCRIPT`" 321 echo "### COMMAND: awk -f \"$SCRIPT\" $@ < \"$INPUT\" > \"$OUTPUT\"" 323 awk -f "$SCRIPT" $@ < "$INPUT" > "$OUTPUT" 324 fail_panic "Can't run awk script: $SCRIPT" 326 echo "OUTPUT FROM SCRIPT: [all...] |
| /external/bison/ |
| GNUmakefile | 57 $(git-version-gen-tag-sed-script))
|
| /external/bison/build-aux/ |
| compile | 25 # configuration script generated by Autoconf, you may include it under 211 right script to run: please start by reading the file `INSTALL'. 303 # mode: shell-script
|
| gnu-web-doc-update | 4 # This script must be run from the top-level directory, 36 Run this script from top_srcdir (no arguments) after each non-alpha
|
| /external/chromium/chrome/browser/ui/webui/options/ |
| extension_settings_handler.h | 123 const UserScript& script,
|
| /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
| binaryajax.js | 227 "<script type='text/vbscript'>\r\n" 234 + "</script>\r\n"
|
| /external/harfbuzz/src/ |
| harfbuzz-hebrew.c | 57 assert(shaper_item->item.script == HB_Script_Hebrew);
|
| harfbuzz-shaper.h | 129 HB_Script script; member in struct:__anon8358 270 HB_ScriptItem item; /* input: the current run to be shaped: a run of text all in the same script that is a substring of <string> */ 272 HB_Face face; /* input: the shaper state; current script, access to the OpenType tables , etc. */
|
| /external/harfbuzz_ng/src/ |
| hb-icu-le.cc | 116 le_int32 script_code = hb_icu_script_from_script (shape_plan->props.script);
|
| /external/harfbuzz_ng/src/hb-old/ |
| harfbuzz-hebrew.c | 57 assert(shaper_item->item.script == HB_Script_Hebrew);
|
| harfbuzz-shaper.h | 129 HB_Script script; member in struct:__anon8414 239 HB_ScriptItem item; /* input: the current run to be shaped: a run of text all in the same script that is a substring of <string> */ 241 HB_Face face; /* input: the shaper state; current script, access to the OpenType tables , etc. */
|
| /external/libcap-ng/libcap-ng-0.7/ |
| compile | 25 # configuration script generated by Autoconf, you may include it under 211 right script to run: please start by reading the file 'INSTALL'. 303 # mode: shell-script
|
| /external/libvpx/libvpx/examples/includes/geshi/contrib/ |
| example.php | 3 * GeSHi example script 5 * Just point your browser at this script (with geshi.php in the parent directory, 43 // you sanitise correctly if you use $_POST of course - this very script has had a security 44 // advisory against it in the past because of this. Please try not to use this script on a 160 <h2>GeSHi Example Script</h2> 161 <p>To use this script, make sure that <strong>geshi.php</strong> is in the parent directory or in your
|
| /external/libvpx/libvpx/tools/ |
| ftfy.sh | 9 This script applies a whitespace transformation to the commit at HEAD. If no
|
| /external/openfst/src/include/fst/script/ |
| weight-class.h | 30 namespace script { namespace in namespace:fst 220 } // namespace script
|
| /external/skia/legacy/src/animator/ |
| SkAnimatorScript2.cpp | 143 const char* script = op->fString->c_str(); local 145 return engine.evaluateScript(&script, &value); 592 // set up animator with memory script above, then run value tests 596 const char* script = scriptTests[index].fScript; local 597 bool success = engine.evaluateScript(&script, &value);
|
| /external/skia/src/animator/ |
| SkAnimatorScript2.cpp | 143 const char* script = op->fString->c_str(); local 145 return engine.evaluateScript(&script, &value); 592 // set up animator with memory script above, then run value tests 596 const char* script = scriptTests[index].fScript; local 597 bool success = engine.evaluateScript(&script, &value);
|
| /external/skia/tools/ |
| compare_baselines.py | 182 """Allow other scripts to call this script with fake command-line args. 202 'script')
|
| /external/srec/config/en.us/ |
| Android.mk | 64 (cd $(G2G_INSTALL_PATH); rm -f $*.Grev2.det.txt $*.map $*.omap $*.P.txt $*.params $*.PCLG.txt $*.script) 75 (cd $(G2G_INSTALL_PATH); rm -f $*.Grev2.det.txt $*.map $*.omap $*.P.txt $*.params $*.PCLG.txt $*.script)
|
| /external/v8/test/cctest/ |
| test-serialize.cc | 327 v8::Local<v8::Script> script = v8::Script::Compile(source); local 328 CHECK_EQ(4, script->Run()->Int32Value()); 344 v8::Local<v8::Script> script = v8::Script::Compile(source); local 345 CHECK_EQ(4, script->Run()->Int32Value());
|
| /external/webkit/Source/WebCore/bindings/v8/ |
| V8AbstractEventListener.cpp | 76 // Monkey data shows that we can crash here, due to script executing while the 169 static_cast<WorkerContext*>(context)->script()->forbidExecution();
|