HomeSort by relevance Sort by last modified time
    Searched refs:script (Results 351 - 375 of 1631) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptSourceCode.h 59 : m_source(resource->script())
66 : m_source(resource->script())
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFrontendHost.idl 41 void setInjectedScriptForOrigin(DOMString origin, DOMString script);
WorkerRuntimeAgent.cpp 75 addExecutionContextToFrontend(m_workerGlobalScope->script()->scriptState(), true, m_workerGlobalScope->url(), "");
81 return injectedScriptManager()->injectedScriptFor(m_workerGlobalScope->script()->scriptState());
  /external/chromium_org/third_party/mesa/src/src/mapi/vgapi/
SConscript 12 script = '../mapi/mapi_abi.py',
14 command = python_cmd + ' $SCRIPT --printer vgapi --mode lib $SOURCE > $TARGET'
  /external/chromium_org/third_party/mesa/src/src/mesa/
SConscript 344 script = 'main/es_generator.py',
346 command = python_cmd + ' $SCRIPT -S $SOURCE -V GLES1.1 > $TARGET'
353 script = GLAPI + 'gen/gl_table.py',
355 command = python_cmd + ' $SCRIPT -c es1 -m remap_table -f $SOURCE > $TARGET',
359 script = GLAPI + 'gen/remap_helper.py',
361 command = python_cmd + ' $SCRIPT -c es1 -f $SOURCE > $TARGET',
443 script = GLAPI + 'gen/gl_enums.py',
445 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
  /external/chromium_org/third_party/skia/platform_tools/barelinux/bin/
arm64_make 12 arm64_make - this script builds a AArch64 version of skia that
16 Assumes that you have already run the download_deps script.
barelinux_make 17 barelinux_make - this script builds a version of skia that does not
21 Assumes that you have already run the download_deps script.
59 # If you move this script, this must be changed.
  /external/chromium_org/tools/grit/grit/format/
html_inline_unittest.py 213 <script src="script[WHICH].js"></script>
229 <script>console.log('hello');</script>
278 <script src="script1.js"></script>
303 <script>console.log('hello');</script>
  /external/freetype/src/autofit/
aftypes.h 244 * the script (based on script-specific characters to identify ascender
248 * glyph covered by the script,
298 * Each script is associated with a set of Unicode ranges that gets used
299 * to test whether the font face supports the script.
301 * We use four-letter script tags from the OpenType specification,
302 * extended by `NONE', which indicates `no script'.
305 #undef SCRIPT
306 #define SCRIPT( s, S, d, h, sc1, sc2, sc3 ) \
334 AF_Script script; member in struct:AF_ScriptClassRec_
442 AF_Script script; member in struct:AF_StyleClassRec_
    [all...]
  /external/mesa3d/src/mapi/vgapi/
SConscript 12 script = '../mapi/mapi_abi.py',
14 command = python_cmd + ' $SCRIPT --printer vgapi --mode lib $SOURCE > $TARGET'
  /external/mesa3d/src/mesa/
SConscript 344 script = 'main/es_generator.py',
346 command = python_cmd + ' $SCRIPT -S $SOURCE -V GLES1.1 > $TARGET'
353 script = GLAPI + 'gen/gl_table.py',
355 command = python_cmd + ' $SCRIPT -c es1 -m remap_table -f $SOURCE > $TARGET',
359 script = GLAPI + 'gen/remap_helper.py',
361 command = python_cmd + ' $SCRIPT -c es1 -f $SOURCE > $TARGET',
443 script = GLAPI + 'gen/gl_enums.py',
445 command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
  /external/openfst/src/bin/
fstcompile.cc 23 #include <fst/script/compile.h>
38 namespace s = fst::script;
  /external/openfst/src/include/fst/script/
shortest-path.h 23 #include <fst/script/arg-packs.h>
24 #include <fst/script/fst-class.h>
25 #include <fst/script/weight-class.h>
27 #include <fst/script/shortest-distance.h> // for ShortestDistanceOptions
30 namespace script { namespace in namespace:fst
33 : public fst::script::ShortestDistanceOptions {
44 WeightClass w = fst::script::WeightClass::Zero(),
182 fst::script::WeightClass::Zero(),
185 } // namespace script
  /external/openfst/src/script/
text-io.cc 17 #include <fst/script/text-io.h>
28 namespace script { namespace in namespace:fst
94 } // namespace script
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestVLoad.java 24 private ScriptC_vload script; field in class:TestVLoad
37 script = new ScriptC_vload(mRS);
90 script.set_gAllocIn(inAlloc);
91 script.set_gAllocOut(outAlloc);
200 script.forEach_copy2d_char(walkAlloc);
208 script.forEach_copy2d_uchar(walkAlloc);
232 script.forEach_copy2d_short(walkAlloc);
240 script.forEach_copy2d_ushort(walkAlloc);
264 script.forEach_copy2d_int(walkAlloc);
272 script.forEach_copy2d_uint(walkAlloc)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/font_settings/
font_settings_api.cc 47 const char kScriptKey[] = "script";
55 // Gets the font name preference path for |generic_family| and |script|. If
56 // |script| is NULL, uses prefs::kWebKitCommonScript.
59 std::string script = fonts::ToString(script_enum); local
60 if (script.empty())
61 script = prefs::kWebKitCommonScript;
65 script.c_str());
82 // Registers |obs| to observe per-script font prefs under the path |map_name|.
88 const char* script = prefs::kWebKitScriptsForFontFamilyMaps[i]; local
89 std::string pref_name = base::StringPrintf("%s.%s", map_name, script);
144 std::string script; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalSettings.cpp 219 void InternalSettings::setStandardFontFamily(const AtomicString& family, const String& script, ExceptionState& exceptionState)
222 UScriptCode code = scriptNameToCode(script);
229 void InternalSettings::setSerifFontFamily(const AtomicString& family, const String& script, ExceptionState& exceptionState)
232 UScriptCode code = scriptNameToCode(script);
239 void InternalSettings::setSansSerifFontFamily(const AtomicString& family, const String& script, ExceptionState& exceptionState)
242 UScriptCode code = scriptNameToCode(script);
249 void InternalSettings::setFixedFontFamily(const AtomicString& family, const String& script, ExceptionState& exceptionState)
252 UScriptCode code = scriptNameToCode(script);
259 void InternalSettings::setCursiveFontFamily(const AtomicString& family, const String& script, ExceptionState& exceptionState)
262 UScriptCode code = scriptNameToCode(script);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebSettingsImpl.cpp 62 void WebSettingsImpl::setStandardFontFamily(const WebString& font, UScriptCode script)
64 if (m_settings->genericFontFamilySettings().updateStandard(font, script))
68 void WebSettingsImpl::setFixedFontFamily(const WebString& font, UScriptCode script)
70 if (m_settings->genericFontFamilySettings().updateFixed(font, script))
84 void WebSettingsImpl::setSerifFontFamily(const WebString& font, UScriptCode script)
86 if (m_settings->genericFontFamilySettings().updateSerif(font, script))
90 void WebSettingsImpl::setSansSerifFontFamily(const WebString& font, UScriptCode script)
92 if (m_settings->genericFontFamilySettings().updateSansSerif(font, script))
96 void WebSettingsImpl::setCursiveFontFamily(const WebString& font, UScriptCode script)
98 if (m_settings->genericFontFamilySettings().updateCursive(font, script))
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/closure/
closure_preinit.js 32 * @return {boolean} Whether the script was imported.
35 // Only run our version of the import script
57 console.error('Script error: ' + e + ' in ' + src);
66 // Load the script by fetching its source and running 'eval' on it
69 // next script.
76 // Chrome knows the name of the script in the JavaScript debugger.
  /external/chromium_org/v8/src/
allocation-tracker.cc 273 if (shared->script()->IsScript()) {
274 Script* script = Script::cast(shared->script()); local
275 if (script->name()->IsName()) {
276 Name* name = Name::cast(script->name());
279 info->script_id = script->id()->value();
283 script,
307 Script* script, int start, FunctionInfo* info
    [all...]
  /external/chromium_org/ui/file_manager/video_player/js/cast/
caster.js 27 // the test script. Sets the handler to wait for loading.
50 var script = document.createElement('script');
53 script.removeEventListener('error', onError);
54 document.body.removeChild(script);
80 script.src = '_modules/mafeflapfdfljijmlienjedomfjfmhpd/cast_sender.js';
81 script.addEventListener('error', onError);
82 script.addEventListener('load', onLoadCastExtension.bind(null, callback));
83 document.body.appendChild(script);
  /external/chromium_org/v8/test/mjsunit/
debug-script.js 36 // Count script types.
65 // This script and mjsunit.js has been loaded. If using d8, d8 loads
66 // a normal script during startup too.
69 // Test a builtins script.
74 // Test a builtins delay loaded script.
79 // Test a debugger script.
84 // Test an extension script.
91 // Test a normal script.
96 // Check a nonexistent script.
  /build/tools/releasetools/
edify_generator.py 21 """Class to generate scripts in the 'edify' recovery script language
25 self.script = []
31 """Make a temporary script object whose commands can latter be
32 appended to the parent script with AppendScript(). Used when the
33 caller wants to generate script commands out-of-order."""
67 """Append the contents of another script (which should be created
69 self.script.extend(other.script)
82 self.script.append(cmd)
94 self.script.append(cmd
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afglobal.c 53 /* Compute the script index of each glyph within a given face. */
75 * Ignore this error; we simply use the fallback script.
82 /* scan each script in a Unicode charmap */
94 * glyph script index.
135 * By default, all uncovered glyphs are set to the fallback script.
237 FT_UInt script = options & 15; local
249 gidx = script;
254 if ( script == 0 )
255 script = clazz->script;
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
LookupKey.java 55 * Script types. This is used for countries that do not use Latin script, but accept it for
56 * transcribing their addresses. For example, you can write a Japanese address in Latin script
66 * The script that uses Roman characters like ABC (as opposed to scripts like Cyrillic or
73 * Saudi Arabia, it's Arabic. Notice that for US, the local script is actually Latin script
74 * (The same goes for other countries that use Latin script). For these countries, we do not
75 * provide two set of data (Latin and local) since they use only Latin script. You have to
110 this.mScriptType = builder.script;
155 newKeyBuilder.script = mScriptType
284 private ScriptType script = ScriptType.LOCAL; field in class:LookupKey.Builder
    [all...]

Completed in 679 milliseconds

<<11121314151617181920>>