/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
TestCaseInputMultiString.java | 38 private String script; field in class:TestCaseInputMultiString 41 this.script = text; 46 return "<<" + TestCase.convertPreservedChars(script) + ">>"; 49 public void setScript(String script) { 50 this.script = script; 54 return this.script;
|
TestCaseInputString.java | 37 private String script; field in class:TestCaseInputString 40 this.script = text; 45 return '"' + TestCase.convertPreservedChars(script) + '"'; 50 public void setScript(String script) { 51 this.script = script; 55 return this.script;
|
TestCaseOutputReturn.java | 31 private String script; field in class:TestCaseOutputReturn 34 this.script = text; 39 return String.format(" returns [%s]", script); 42 public void setScript(String script) { 43 this.script = script; 47 return this.script;
|
TestCaseOutputStdOut.java | 35 private String script; field in class:TestCaseOutputStdOut 38 this.script = text; 43 return String.format(" -> \"%s\"", script); 46 public void setScript(String script) { 47 this.script = script; 51 return this.script;
|
TestCaseOutputAST.java | 39 public TestCaseOutputAST(String script) { 40 this.treeString = script; 43 public void setScript(String script) { 44 this.treeString = script;
|
/external/webkit/LayoutTests/http/tests/ssl/ |
verify-ssl-enabled.php | 0 <script> 4 </script>
|
/external/webkit/Tools/TestWebKitAPI/ |
JavaScriptTest.h | 28 // Executes |script| in the page and waits until it has run. Returns true if the script's output 30 bool runJSTest(WKPageRef, const char* script, const char* expectedResult);
|
/external/webkit/LayoutTests/http/tests/resources/ |
last-modified.php | 5 <script> 7 </script>
|
/external/v8/test/cctest/ |
test-func-name-inference.cc | 43 using ::v8::internal::Script; 62 static void CheckFunctionName(v8::Handle<v8::Script> script, 65 // Get script source. 66 Handle<Object> obj = v8::Utils::OpenHandle(*script); 75 Handle<Script> i_script(Script::cast(shared_function->script())); 106 static v8::Handle<v8::Script> Compile(const char* src) { 107 return v8::Script::Compile(v8::String::New(src)) 115 v8::Handle<v8::Script> script = Compile( local 127 v8::Handle<v8::Script> script = Compile( local 139 v8::Handle<v8::Script> script = Compile( local 153 v8::Handle<v8::Script> script = Compile( local 167 v8::Handle<v8::Script> script = Compile( local 183 v8::Handle<v8::Script> script = Compile( local 201 v8::Handle<v8::Script> script = Compile( local 219 v8::Handle<v8::Script> script = Compile( local 233 v8::Handle<v8::Script> script = Compile( local 249 v8::Handle<v8::Script> script = Compile( local 262 v8::Handle<v8::Script> script = Compile( local 277 v8::Handle<v8::Script> script = Compile( local 290 v8::Handle<v8::Script> script = Compile( local 306 v8::Handle<v8::Script> script = Compile( local 320 v8::Handle<v8::Script> script = Compile( local 336 v8::Handle<v8::Script> script = Compile( local 355 v8::Handle<v8::Script> script = Compile( local 370 v8::Handle<v8::Script> script = Compile( local 388 v8::Handle<v8::Script> script = Compile( local [all...] |
/frameworks/compile/libbcc/include/bcc/ |
bcc.h | 25 /* libbcc script opaque type */ 75 void bccDisposeScript(BCCScriptRef script); 77 int bccRegisterSymbolCallback(BCCScriptRef script, 81 int bccGetError(BCCScriptRef script); /* deprecated */ 85 int bccReadBC(BCCScriptRef script, 91 int bccReadModule(BCCScriptRef script, 96 int bccReadFile(BCCScriptRef script, 100 int bccLinkBC(BCCScriptRef script, 106 int bccLinkFile(BCCScriptRef script, 110 void bccMarkExternalSymbol(BCCScriptRef script, char const *name) [all...] |
/external/webkit/Tools/Scripts/ |
run-webkit-nightly.cmd | 2 set script=%TMP%\run-webkit-nightly2.cmd variable 5 copy "%vsvars%" "%script%" 7 del "%script%" 9 FindSafari.exe %1 /printSafariLauncher >> "%script%" 10 call "%script%"
|
/external/openfst/src/script/ |
connect.cc | 17 #include <fst/script/fst-class.h> 18 #include <fst/script/script-impl.h> 19 #include <fst/script/connect.h> 22 namespace script { namespace in namespace:fst 32 } // namespace script
|
invert.cc | 17 #include <fst/script/fst-class.h> 18 #include <fst/script/script-impl.h> 19 #include <fst/script/invert.h> 22 namespace script { namespace in namespace:fst 32 } // namespace script
|
topsort.cc | 17 #include <fst/script/fst-class.h> 18 #include <fst/script/script-impl.h> 19 #include <fst/script/topsort.h> 22 namespace script { namespace in namespace:fst 36 } // namespace script
|
verify.cc | 17 #include <fst/script/fst-class.h> 18 #include <fst/script/script-impl.h> 19 #include <fst/script/verify.h> 22 namespace script { namespace in namespace:fst 36 } // namespace script
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
bcc.cpp | 27 #include "Script.h" 54 return wrap(new bcc::Script()); 58 extern "C" void bccDisposeScript(BCCScriptRef script) { 60 delete unwrap(script); 64 extern "C" int bccRegisterSymbolCallback(BCCScriptRef script, 68 return unwrap(script)->registerSymbolCallback(pFn, pContext); 72 extern "C" int bccGetError(BCCScriptRef script) { 74 return unwrap(script)->getError(); 77 extern "C" int bccReadBC(BCCScriptRef script, 83 return unwrap(script)->addSourceBC(0, resName, bitcode, bitcodeSize, flags) [all...] |
/external/chromium/chrome/common/extensions/ |
user_script_unittest.cc | 19 UserScript script; local 20 script.add_glob("*mail.google.com*"); 21 script.add_glob("*mail.yahoo.com*"); 22 script.add_glob("*mail.msn.com*"); 23 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com"))); 24 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com/foo"))); 25 EXPECT_TRUE(script.MatchesUrl(GURL("https://mail.google.com/foo"))); 26 EXPECT_TRUE(script.MatchesUrl(GURL("ftp://mail.google.com/foo"))); 27 EXPECT_TRUE(script.MatchesUrl(GURL("http://woo.mail.google.com/foo"))); 28 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.yahoo.com/bar"))) 38 UserScript script; local 47 UserScript script; local 56 UserScript script; local 65 UserScript script; local 77 UserScript script; local 87 UserScript script; local 170 UserScript script; local [all...] |
/external/linux-tools-perf/scripts/perl/bin/ |
rw-by-pid-report | 3 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rw-by-pid.pl
|
wakeup-latency-report | 3 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/wakeup-latency.pl
|
workqueue-stats-report | 3 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/workqueue-stats.pl
|
/external/linux-tools-perf/scripts/python/bin/ |
futex-contention-report | 4 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/futex-contention.py
|
netdev-times-report | 5 perf script -s "$PERF_EXEC_PATH"/scripts/python/netdev-times.py $@
|
sched-migration-report | 3 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sched-migration.py
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/ |
regress-314887.js | 39 var summary = 'Do not crash when morons embed script tags in external script files'; 46 <script language="JavaScript" type="text/JavaScript"> 49 </script>
|
/external/webkit/Source/WebKit/mac/WebInspector/ |
WebInspectorPrivate.h | 36 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script;
|