Home
last modified time | relevance | path

Searched refs:scriptTag (Results 1 – 6 of 6) sorted by relevance

/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/testing/
DFontLanguages.java629 ScriptTag scriptTag = fontSpecificScript.containsKey(script) ? fontSpecificScript.get( in FontLanguages() local
632 addLangScriptMap(lang, scriptTag); in FontLanguages()
655 private void addLangScriptMap(String lang, ScriptTag scriptTag) { in addLangScriptMap() argument
656 if (!scriptLangMap.containsKey(scriptTag)) { in addLangScriptMap()
657 scriptLangMap.put(scriptTag, new HashSet<String>()); in addLangScriptMap()
659 Set<String> langs = scriptLangMap.get(scriptTag); in addLangScriptMap()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/testing/
DFontLanguages.java629 ScriptTag scriptTag = fontSpecificScript.containsKey(script) ? fontSpecificScript.get( in FontLanguages() local
632 addLangScriptMap(lang, scriptTag); in FontLanguages()
655 private void addLangScriptMap(String lang, ScriptTag scriptTag) { in addLangScriptMap() argument
656 if (!scriptLangMap.containsKey(scriptTag)) { in addLangScriptMap()
657 scriptLangMap.put(scriptTag, new HashSet<String>()); in addLangScriptMap()
659 Set<String> langs = scriptLangMap.get(scriptTag); in addLangScriptMap()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DScriptList.java142 private LangSysRecord findLangSysRecord(String scriptTag, String languageTag) in findLangSysRecord() argument
147 if (scriptRecord.getTag().equals(scriptTag)) { in findLangSysRecord()
159 ScriptRecord newScriptRecord = new ScriptRecord(scriptTag); in findLangSysRecord()
166 public void addFeature(String scriptTag, String languageTag, Feature feature) in addFeature() argument
168 LangSysRecord langSysRecord = findLangSysRecord(scriptTag, languageTag); in addFeature()
DCanonGSUBBuilder.java494 String scriptTag = TagUtilities.tagLabel(UScript.getShortName(script)); in buildDecompTables() local
496 scriptList.addFeature(scriptTag, "(default)", ccmp); in buildDecompTables()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/charsetdet/
DDetectingViewer.java186 …private byte[] scriptTag = {(byte) 's', (byte) 'c', (byte) 'r', (byte) 'i', (byte) 'p', (byte) 't'… field in DetectingViewer
248 if (openTag(buffer, i + 1, bufLen, scriptTag) || in filter()
251 } else if (closedTag(buffer, i + 1, bufLen, scriptTag) || in filter()
/third_party/skia/modules/skshaper/src/
DSkShaper.cpp65 SkShaper::MakeScriptRunIterator(const char* utf8, size_t utf8Bytes, SkFourByteTag scriptTag) { in MakeScriptRunIterator() argument
77 return std::make_unique<SkShaper::TrivialScriptRunIterator>(scriptTag, utf8Bytes); in MakeScriptRunIterator()