Home
last modified time | relevance | path

Searched refs:languageTag (Results 1 – 17 of 17) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/header/
DContentLanguage.java102 public ContentLanguage(String languageTag) { in ContentLanguage() argument
104 this.setLanguageTag( languageTag ); in ContentLanguage()
130 public void setLanguageTag(String languageTag) { in setLanguageTag() argument
132 final int slash = languageTag.indexOf('-'); in setLanguageTag()
134 … this.locale = new Locale(languageTag.substring(0,slash), languageTag.substring(slash+1) ); in setLanguageTag()
136 this.locale = new Locale(languageTag); in setLanguageTag()
/external/icu4c/layout/
DScriptAndLanguage.cpp14 const LangSysTable *ScriptTable::findLanguage(LETag languageTag, le_bool exactMatch) const in findLanguage() argument
21 OpenTypeUtilities::getTagOffset(languageTag, langSysRecordArray, count); in findLanguage()
73 const LangSysTable *ScriptListTable::findLanguage(LETag scriptTag, LETag languageTag, le_bool exact… in findLanguage() argument
81 return scriptTable->findLanguage(languageTag, exactMatch); in findLanguage()
DGlyphLookupTables.cpp22 le_bool GlyphLookupTableHeader::coversScriptAndLanguage(LETag scriptTag, LETag languageTag, le_bool… in coversScriptAndLanguage() argument
25 …const LangSysTable *langSysTable = scriptListTable->findLanguage(scriptTag, languageTag, exa… in coversScriptAndLanguage()
DGlyphSubstitutionTables.cpp23 LETag languageTag, in process() argument
35 …GlyphSubstitutionLookupProcessor processor(this, scriptTag, languageTag, filter, featureMap, featu… in process()
DGlyphPositioningTables.cpp20 LETag scriptTag, LETag languageTag, in process() argument
28 …GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureMap, featureMapCoun… in process()
DScriptAndLanguage.h36 const LangSysTable *findLanguage(LETag languageTag, le_bool exactMatch = FALSE) const;
47 …const LangSysTable *findLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch = FALSE) …
DGlyphSubstLookupProc.cpp31 LETag languageTag, in GlyphSubstitutionLookupProcessor() argument
42 … scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success), fFilter(filter) in GlyphSubstitutionLookupProcessor()
DGlyphPosnLookupProc.cpp37 LETag languageTag, in GlyphPositioningLookupProcessor() argument
48 languageTag, in GlyphPositioningLookupProcessor()
DGlyphLookupTables.h28 …le_bool coversScriptAndLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch = FALSE) co…
DGlyphSubstitutionTables.h31 LETag languageTag,
DGlyphPosnLookupProc.h31 LETag languageTag,
DGlyphPositioningTables.h30 le_bool rightToLeft, LETag scriptTag, LETag languageTag,
DGlyphSubstLookupProc.h32 LETag languageTag,
DLookupProcessor.cpp123 …LETag scriptTag, LETag languageTag, const FeatureMap *featureMap, le_int32 featureMapCount, le_boo… in LookupProcessor() argument
140 langSysTable = scriptListTable->findLanguage(scriptTag, languageTag); in LookupProcessor()
DLookupProcessor.h54 LETag languageTag,
DLayoutEngine.cpp529 LETag languageTag = 0x00000000; in layoutEngineFactory() local
562 languageTag = OpenTypeLayoutEngine::getLangSysTag(languageCode); in layoutEngineFactory()
569 if (gsubTable->coversScriptAndLanguage(scriptTag, languageTag, TRUE)) { in layoutEngineFactory()
/external/nist-sip/java/javax/sip/header/
DContentLanguageHeader.java12 void setLanguageTag(String languageTag); in setLanguageTag() argument