Searched defs:script (Results 1 - 25 of 311) sorted by relevance

1234567891011>>

/external/webkit/Tools/Scripts/
H A Drun-webkit-nightly.cmd2 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/chromium/chrome/browser/extensions/
H A Dconvert_user_script_unittest.cc31 EXPECT_EQ("My user script", extension->name());
38 const UserScript& script = extension->content_scripts()[0]; local
39 ASSERT_EQ(2u, script.globs().size());
40 EXPECT_EQ("http://www.google.com/*", script.globs().at(0));
41 EXPECT_EQ("http://www.yahoo.com/*", script.globs().at(1));
42 ASSERT_EQ(1u, script.exclude_globs().size());
43 EXPECT_EQ("*foo*", script.exclude_globs().at(0));
44 ASSERT_EQ(1u, script.url_patterns().size());
45 EXPECT_EQ("http://www.google.com/*", script.url_patterns()[0].GetAsString());
49 extension->path().Append(script
78 const UserScript& script = extension->content_scripts()[0]; local
[all...]
/external/openfst/src/include/fst/script/
H A Dfstscript-decl.h17 // Forward declarations for the FST and FST-script classes.
25 namespace script { namespace in namespace:fst
32 } // namespace script
H A Dtext-io.h35 #include <fst/script/weight-class.h>
38 namespace script { namespace in namespace:fst
47 } // namespace script
H A Dconnect.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
26 namespace script { namespace in namespace:fst
40 } // namespace script
H A Dinvert.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
25 namespace script { namespace in namespace:fst
40 } // namespace script
/external/openfst/src/script/
H A Darcsort.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/arcsort.h>
19 #include <fst/script/script-impl.h>
22 namespace script { namespace in namespace:fst
34 } // namespace script
H A Dclosure.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/closure.h>
22 namespace script { namespace in namespace:fst
34 } // namespace script
H A Dconnect.cc17 #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
H A Dinvert.cc17 #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
H A Dtopsort.cc17 #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
H A Dverify.cc17 #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
H A Dconcat.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/concat.h>
22 namespace script { namespace in namespace:fst
47 } // namespace script
H A Dconvert.cc18 #include <fst/script/fst-class.h>
19 #include <fst/script/script-impl.h>
20 #include <fst/script/convert.h>
23 namespace script { namespace in namespace:fst
39 } // namespace script
H A Ddecode.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/decode.h>
23 namespace script { namespace in namespace:fst
35 } // namespace script
H A Dproject.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/project.h>
22 namespace script { namespace in namespace:fst
34 } // namespace script
H A Dreverse.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/reverse.h>
22 namespace script { namespace in namespace:fst
36 } // namespace script
H A Dreweight.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/reweight.h>
22 namespace script { namespace in namespace:fst
35 } // namespace script
H A Dsynchronize.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/synchronize.h>
22 namespace script { namespace in namespace:fst
35 } // namespace script
H A Dunion.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/union.h>
22 namespace script { namespace in namespace:fst
36 } // namespace script
/external/v8/test/mjsunit/
H A Ddebug-liveedit-1.js39 var script = Debug.findScript(ChooseAnimal); variable
42 var patch_pos = script.source.indexOf(orig_animal);
46 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
H A Ddebug-liveedit-newsource.js51 var script = Debug.findScript(ChooseAnimal); variable
53 var new_source = script.source.replace("Cat", "Cap' + 'yb' + 'ara");
60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
65 // Global variable do not get changed (without restarting script).
H A Ddebug-liveedit-3.js31 // In this test case we edit a script so that techincally function text
54 var script = Debug.findScript(Factory); variable
56 var new_source = script.source.replace(function_z_text, "function Intermediate() {\nreturn (\n" + function_z_text + ")\n;\n}\n");
60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
/external/srec/srec/Semproc/include/
H A DSR_LexicalAnalyzer.h39 * Pointer to the script to analyze .
41 LCHAR* script; member in struct:LexicalAnalyzer_t
44 * Pointer to the next token in the script.
60 * @param script pointer to the script to analyze
62 SREC_SEMPROC_API ESR_ReturnCode LA_Analyze(LexicalAnalyzer *self, LCHAR *script);
/external/bluetooth/glib/glib/
H A Dgscripttable.h1 /* gscripttable.h: Generated by gen-script-table.pl
2749 guint16 script; member in struct:__anon929

Completed in 226 milliseconds

1234567891011>>