Searched defs:script (Results 151 - 175 of 488) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dattributes.cpp340 ScriptForbiddenScope::AllowUserAgentScript script; local
370 ScriptForbiddenScope::AllowUserAgentScript script; local
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGenericFontFamilySettings.cpp59 // Sets the entry in the font map for the given script. If family is the empty string, removes the entry instead.
60 void GenericFontFamilySettings::setGenericFontFamilyMap(ScriptFontFamilyMap& fontMap, const AtomicString& family, UScriptCode script) argument
62 ScriptFontFamilyMap::iterator it = fontMap.find(static_cast<int>(script));
70 fontMap.set(static_cast<int>(script), family);
74 const AtomicString& GenericFontFamilySettings::genericFontFamilyForScript(const ScriptFontFamilyMap& fontMap, UScriptCode script) const
76 ScriptFontFamilyMap::const_iterator it = fontMap.find(static_cast<int>(script));
79 if (script != USCRIPT_COMMON)
84 const AtomicString& GenericFontFamilySettings::standard(UScriptCode script) const
86 return genericFontFamilyForScript(m_standardFontFamilyMap, script);
89 bool GenericFontFamilySettings::updateStandard(const AtomicString& family, UScriptCode script) argument
102 updateFixed(const AtomicString& family, UScriptCode script) argument
115 updateSerif(const AtomicString& family, UScriptCode script) argument
128 updateSansSerif(const AtomicString& family, UScriptCode script) argument
141 updateCursive(const AtomicString& family, UScriptCode script) argument
154 updateFantasy(const AtomicString& family, UScriptCode script) argument
167 updatePictograph(const AtomicString& family, UScriptCode script) argument
[all...]
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafglobal.c53 /* 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/harfbuzz-ng/src/
H A Dmain.cc115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys);
133 (const char *)script.get_lang_sys_tag (n_langsys));
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dlocid.h88 * For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX.
391 * Returns the locale's ISO-15924 abbreviation script code.
524 * Fills in "dispScript" with the name of this locale's script in a format suitable
525 * for user display in the default locale. For example, if the locale's script code
537 * script code is "LATN" and displayLocale's language code is "en", this function would set
540 * words, if the locale's script code is "LATN", passing
729 char script[ULOC_SCRIPT_CAPACITY]; member in class:Locale
775 return script;
/external/chromium_org/third_party/icu/source/common/
H A Duscript_props.cpp25 // Script metadata (script properties).
28 // 0 = NOT_ENCODED, no sample character, default false script properties.
210 int32_t getScriptProps(UScriptCode script) { argument
211 if (0 <= script && script < LENGTHOF(SCRIPT_PROPS)) {
212 return SCRIPT_PROPS[script];
221 uscript_getSampleString(UScriptCode script, UChar *dest, int32_t capacity, UErrorCode *pErrorCode) { argument
227 int32_t sampleChar = getScriptProps(script) & 0x1fffff;
242 uscript_getSampleUnicodeString(UScriptCode script) { argument
244 int32_t sampleChar = getScriptProps(script)
252 uscript_getUsage(UScriptCode script) argument
257 uscript_isRightToLeft(UScriptCode script) argument
262 uscript_breaksBetweenLetters(UScriptCode script) argument
267 uscript_isCased(UScriptCode script) argument
[all...]
/external/chromium_org/third_party/icu/source/samples/layout/
H A DScriptCompositeFontInstance.cpp39 le_int32 script = LE_GET_SUB_FONT(glyph); local
40 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
53 le_int32 script = LE_GET_SUB_FONT(glyph); local
54 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const argument
69 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
74 const LEFontInstance *result = fFontMap->getScriptFont(script, success);
86 // look in all the fonts in some order, script code order being the most obvious...
91 le_int32 script local
[all...]
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A Dleperf.cpp21 ScriptCodes script; member in class:Params
36 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, params->script, -1, status);
75 p.script = arabScriptCode;
79 p.script = latnScriptCode;
/external/chromium_org/v8/test/cctest/
H A Dtest-macro-assembler-mips.cc143 v8::Local<v8::Script> script = v8::Script::Compile(v8_str(code)); local
144 v8::Local<v8::Object> result = v8::Local<v8::Object>::Cast(script->Run());
H A Dtest-threads.cc59 v8::Handle<v8::Script> script = v8::Script::Compile( local
67 CHECK(script->Run()->IsTrue());
77 // Rerun the script.
78 CHECK(script->Run()->IsTrue());
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-sourceinfo.js94 var script = Debug.findScript(a); variable
95 assertTrue(script.data === Debug.findScript(b).data);
96 assertTrue(script.data === Debug.findScript(c).data);
97 assertTrue(script.data === Debug.findScript(d).data);
98 assertTrue(script.source === Debug.findScript(b).source);
99 assertTrue(script.source === Debug.findScript(c).source);
100 assertTrue(script.source === Debug.findScript(d).source);
108 var location = script.locationFromPosition(p);
134 var location = script.locationFromPosition(p);
143 assertEquals(0, script
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DFetchBaseTask.java57 String script=getScript(key,properties.get(key).toString());
58 entries.put("fetch."+key,script);
141 String script="<project default=\"all.elements\">\n" +
142 "<!--Ant script which will fetch pre-built plug-ins and features to a location where they\n" +
150 script=script.concat("\t\t<antcall target=\""+keys.nextElement()+"\" />\n");
152 script=script.concat("\t</target>");
155 script=script
162 printScript(String script) argument
[all...]
/external/harfbuzz_ng/src/
H A Dmain.cc115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys);
133 (const char *)script.get_lang_sys_tag (n_langsys));
/external/harfbuzz_ng/test/api/
H A Dtest-ot-tag.c37 test_simple_tags (const char *s, hb_script_t script) argument
42 g_test_message ("Testing script %c%c%c%c: tag %s", HB_UNTAG (hb_script_to_iso15924_tag (script)), s);
45 hb_ot_tags_from_script (script, &t1, &t2);
50 g_assert_cmphex (hb_ot_tag_to_script (tag), ==, script); local
54 test_indic_tags (const char *s1, const char *s2, hb_script_t script) argument
59 g_test_message ("Testing script %c%c%c%c: new tag %s, old tag %s", HB_UNTAG (hb_script_to_iso15924_tag (script)), s1, s2);
63 hb_ot_tags_from_script (script, &t1, &t2);
68 g_assert_cmphex (hb_ot_tag_to_script (tag1), ==, script); local
69 g_assert_cmphex (hb_ot_tag_to_script (tag2), ==, script); local
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dlocid.h88 * For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX.
391 * Returns the locale's ISO-15924 abbreviation script code.
524 * Fills in "dispScript" with the name of this locale's script in a format suitable
525 * for user display in the default locale. For example, if the locale's script code
537 * script code is "LATN" and displayLocale's language code is "en", this function would set
540 * words, if the locale's script code is "LATN", passing
729 char script[ULOC_SCRIPT_CAPACITY]; member in class:Locale
775 return script;
/external/icu/icu4c/source/common/
H A Duscript_props.cpp25 // Script metadata (script properties).
28 // 0 = NOT_ENCODED, no sample character, default false script properties.
210 int32_t getScriptProps(UScriptCode script) { argument
211 if (0 <= script && script < LENGTHOF(SCRIPT_PROPS)) {
212 return SCRIPT_PROPS[script];
221 uscript_getSampleString(UScriptCode script, UChar *dest, int32_t capacity, UErrorCode *pErrorCode) { argument
227 int32_t sampleChar = getScriptProps(script) & 0x1fffff;
242 uscript_getSampleUnicodeString(UScriptCode script) { argument
244 int32_t sampleChar = getScriptProps(script)
252 uscript_getUsage(UScriptCode script) argument
257 uscript_isRightToLeft(UScriptCode script) argument
262 uscript_breaksBetweenLetters(UScriptCode script) argument
267 uscript_isCased(UScriptCode script) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationdata.cpp52 CollationData::getFirstPrimaryForGroup(int32_t script) const {
53 int32_t index = findScript(script);
62 CollationData::getLastPrimaryForGroup(int32_t script) const {
63 int32_t index = findScript(script);
85 CollationData::findScript(int32_t script) const {
86 if(script < 0 || 0xffff < script) { return -1; }
90 if(script == scripts[j]) { return i; }
98 CollationData::getEquivalentScripts(int32_t script, argument
102 int32_t i = findScript(script);
178 int32_t script = reorder[i++]; local
[all...]
/external/icu/icu4c/source/samples/layout/
H A DScriptCompositeFontInstance.cpp39 le_int32 script = LE_GET_SUB_FONT(glyph); local
40 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
53 le_int32 script = LE_GET_SUB_FONT(glyph); local
54 const LEFontInstance *font = fFontMap->getScriptFont(script, status);
63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const argument
69 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
74 const LEFontInstance *result = fFontMap->getScriptFont(script, success);
86 // look in all the fonts in some order, script code order being the most obvious...
91 le_int32 script local
[all...]
/external/icu/icu4c/source/test/perf/leperf/
H A Dleperf.cpp21 ScriptCodes script; member in class:Params
36 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, params->script, -1, status);
75 p.script = arabScriptCode;
79 p.script = latnScriptCode;
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DPrefixFileReader.java66 int prefixMapKey, String language, String script, String region) {
67 String fileName = mappingFileProvider.getFileName(prefixMapKey, language, script, region);
108 * @param script four-letter titlecase (the first letter is uppercase and the rest of the letters
109 * are lowercase) ISO script codes as defined in ISO 15924
115 PhoneNumber number, String lang, String script, String region) {
122 getPhonePrefixDescriptions(phonePrefix, lang, script, region);
65 getPhonePrefixDescriptions( int prefixMapKey, String language, String script, String region) argument
114 getDescriptionForNumber( PhoneNumber number, String lang, String script, String region) argument
/external/openfst/src/include/fst/script/
H A Ddraw.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/draw-impl.h>
28 namespace script { namespace in namespace:fst
109 } // namespace script
H A Dprune.h23 #include <fst/script/arg-packs.h>
24 #include <fst/script/fst-class.h>
25 #include <fst/script/weight-class.h>
30 namespace script { namespace in namespace:fst
48 // converts a script::PruneOptions into a fst::PruneOptions.
148 } // namespace script
H A Dregister.h23 #include <fst/script/fst-class.h>
24 #include <fst/script/weight-class.h>
30 namespace script { namespace in namespace:fst
117 } // namespace script
H A Dscript-impl.h103 #include <fst/script/fst-class.h>
105 #include <fst/script/arg-packs.h>
110 namespace script { namespace in namespace:fst
172 static fst::script::Operation<ArgPack>::Registerer \
203 } // namespace script
H A Dshortest-path.h23 #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

Completed in 6219 milliseconds

1234567891011>>