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

<<21222324252627282930>>

  /external/openfst/src/extensions/pdt/
pdtscript.cc 20 // See comments in nlp/fst/script/script-impl.h for how the registration
35 #include <fst/script/script-impl.h>
38 namespace script { namespace in namespace:fst
114 } // namespace script
  /external/skia/src/xml/
SkJS.cpp 192 SkBool SkJS::EvaluateScript(const char* script, jsval* rVal) {
193 return JS_EvaluateScript(fContext, fGlobal, script, strlen(script),
  /external/v8/test/mjsunit/
mirror-script.js 34 var mirror = debug.MakeMirror(f).script();
45 assertEquals('script', mirror.type());
68 assertEquals('script', fromJSON.type);
85 // Test the script mirror for different functions.
86 testScriptMirror(function(){}, 'mirror-script.js', 98, 2, 0);
92 var mirror = debug.MakeMirror(eval('(function(){\n 1;\n})')).script();
debug-liveedit-1.js 39 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);
  /external/v8/test/mozilla/
testcfg.py 112 script = join(self.root, reduce(join, dir, ''), 'shell.js')
113 if exists(script):
114 framework.append(script)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cmd_line.py 3 # See test_cmd_line_script.py for testing of script execution
114 with open(filename, "w") as script:
115 print >>script, "import sys"
116 print >>script, "del sys.modules['__main__']"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cmd_line.py 3 # See test_cmd_line_script.py for testing of script execution
114 with open(filename, "w") as script:
115 print >>script, "import sys"
116 print >>script, "del sys.modules['__main__']"
  /external/chromium_org/v8/src/
handles.h 267 // Get the JS object corresponding to the given script; create it
269 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
271 // Script line number computations. Note that the line number is zero-based.
272 void InitScriptLineEnds(Handle<Script> script);
278 int GetScriptLineNumber(Handle<Script> script, int code_position);
280 int GetScriptLineNumberSafe(Handle<Script> script, int code_position)
    [all...]
compilation-cache.cc 122 // Probe the script generation tables. Make sure not to leak handles
140 // We only re-use a cached function for some script source code if the
141 // script originates from the same place. This is to avoid issues
149 Handle<Script> script = local
150 Handle<Script>(Script::cast(function_info->script()), isolate());
151 // If the script name isn't set, the boilerplate script should hav
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-1.js 39 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);
debug-liveedit-compile-error.js 39 var script = Debug.findScript(ChooseAnimal); variable
42 var patch_pos = script.source.indexOf(orig_animal);
48 Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos,
debug-liveedit-3.js 31 // 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);
  /frameworks/rs/
rsScript.cpp 23 Script::Script(Context *rsc) : ObjectBase(rsc) {
33 Script::~Script() {
44 void Script::setSlot(uint32_t slot, Allocation *a) {
47 ALOGE("Script::setSlot unable to set allocation, invalid slot index");
53 mRSC->mHal.funcs.script.setGlobalBind(mRSC, this, slot, a);
56 void Script::setVar(uint32_t slot, const void *val, size_t len) {
59 ALOGE("Script::setVar unable to set allocation, invalid slot index");
62 mRSC->mHal.funcs.script.setGlobalVar(mRSC, this, slot, (void *)val, len)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 135 final int script) {
136 switch (script) {
138 // Our supported latin script dictionaries (EFIGS) at the moment only include
160 throw new RuntimeException("Impossible value of script: " + script);
174 * we know we will never recognize, this accepts a script identifier that should be one
179 * @param script the identifier for the script this spell checker recognizes
182 private static int getCheckabilityInScript(final String text, final int script) {
190 if (!isLetterCheckableByLanguage(firstCodePoint, script)
    [all...]
  /build/core/combo/
javac.mk 27 # We set the VM options (like -Xmx) in the javac script.
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover_browsertest.cc 46 void RunScriptAndCheckResult(const std::string& script,
50 browser()->tab_strip_model()->GetActiveWebContents(), script, &data));
  /external/chromium_org/chrome/common/extensions/permissions/
permissions_data.h 42 // Returns false if script access should be blocked on this page.
48 const UserScript* script,
131 // there is a content script that matches all hosts, if there is a host
152 // Returns true if the given |extension| can execute script on a page. If a
153 // UserScript object is passed, permission to run that specific script is
154 // checked (using its matches list). Otherwise, permission to execute script
158 // usually not allowed to run script on.
163 const UserScript* script,
168 // on the whitelist of extensions that can script all pages.
  /external/chromium_org/content/test/data/indexeddb/
migration_test.js 15 "this script will create a new database that has no object stores");
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
terminate.js 12 // the script execution.
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFrontendHost.idl 44 void setInjectedScriptForOrigin(DOMString origin, DOMString script);
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
compile_frontend.py 101 "Script.js",
403 for script in module["sources"]:
404 command += " \\\n --js " + devtools_frontend_path + "/" + script
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-complex-private.hh 156 switch ((hb_tag_t) planner->props.script)
174 /* For Arabic script, use the Arabic shaper even if no OT script tag was found.
175 * This is because we do fallback shaping for Arabic script (and not others). */
177 planner->props.script == HB_SCRIPT_ARABIC)
303 /* If the designer designed the font for the 'DFLT' script,
329 /* For Myanmar, we only want to use the Myanmar shaper if the "new" script
330 * tag is found. For "old" script tag we want to use the default shaper. */
345 /* If the designer designed the font for the 'DFLT' script,
hb-ot-tag.cc 39 hb_ot_old_tag_from_script (hb_script_t script)
43 switch ((hb_tag_t) script) {
61 return ((hb_tag_t) script) | 0x20000000;
84 hb_ot_new_tag_from_script (hb_script_t script)
86 switch ((hb_tag_t) script) {
126 * Most of the script tags are the same as the ISO 15924 tag but lowercased.
131 hb_ot_tags_from_script (hb_script_t script,
138 *script_tag_1 = hb_ot_old_tag_from_script (script);
140 new_tag = hb_ot_new_tag_from_script (script);
  /external/chromium_org/third_party/libxslt/
compile 25 # configuration script generated by Autoconf, you may include it under
46 right script to run: please start by reading the file `INSTALL'.
136 # mode: shell-script
  /external/chromium_org/third_party/tcmalloc/vendor/
compile 25 # configuration script generated by Autoconf, you may include it under
46 right script to run: please start by reading the file `INSTALL'.
136 # mode: shell-script

Completed in 1196 milliseconds

<<21222324252627282930>>