Searched defs:languageCode (Results 1 - 17 of 17) sorted by relevance

/external/icu4c/layout/
H A DGXLayoutEngine.cpp19 GXLayoutEngine::GXLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, const MorphTableHeader *morphTable, LEErrorCode &success) argument
20 : LayoutEngine(fontInstance, scriptCode, languageCode, 0, success), fMorphTable(morphTable)
H A DKhmerLayoutEngine.cpp20 KhmerOpenTypeLayoutEngine::KhmerOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
22 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
28 KhmerOpenTypeLayoutEngine::KhmerOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
30 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
H A DThaiLayoutEngine.cpp22 ThaiLayoutEngine::ThaiLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) argument
23 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
H A DTibetanLayoutEngine.cpp26 TibetanOpenTypeLayoutEngine::TibetanOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
28 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
34 TibetanOpenTypeLayoutEngine::TibetanOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
36 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
H A DHanLayoutEngine.cpp41 HanOpenTypeLayoutEngine::HanOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
43 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
H A DIndicLayoutEngine.cpp27 IndicOpenTypeLayoutEngine::IndicOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
29 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success), fMPreFixups(NULL)
41 IndicOpenTypeLayoutEngine::IndicOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) argument
42 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fMPreFixups(NULL)
H A DArabicLayoutEngine.cpp36 ArabicOpenTypeLayoutEngine::ArabicOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
38 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
44 ArabicOpenTypeLayoutEngine::ArabicOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
46 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
129 UnicodeArabicOpenTypeLayoutEngine::UnicodeArabicOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) argument
130 : ArabicOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
H A Dloengine.cpp21 le_int32 languageCode,
27 return (le_engine *) LayoutEngine::layoutEngineFactory(fontInstance, scriptCode, languageCode, typo_flags, *success);
19 le_create(const le_font *font, le_int32 scriptCode, le_int32 languageCode, le_int32 typo_flags, LEErrorCode *success) argument
H A DOpenTypeLayoutEngine.cpp78 OpenTypeLayoutEngine::OpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
80 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureMask(minimalFeatures),
121 OpenTypeLayoutEngine::OpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, argument
123 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureOrder(FALSE),
162 LETag OpenTypeLayoutEngine::getLangSysTag(le_int32 languageCode) argument
164 if (languageCode < 0 || languageCode >= languageCodeCount) {
168 return languageTags[languageCode];
H A DLayoutEngine.cpp139 le_int32 languageCode,
142 : fGlyphStorage(NULL), fFontInstance(fontInstance), fScriptCode(scriptCode), fLanguageCode(languageCode),
511 LayoutEngine *LayoutEngine::layoutEngineFactory(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, LEErrorCode &success) argument
514 return LayoutEngine::layoutEngineFactory(fontInstance, scriptCode, languageCode, 3, success);
517 LayoutEngine *LayoutEngine::layoutEngineFactory(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) argument
536 result = new IndicOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, TRUE, gsubTable, success);
550 result = new IndicOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, FALSE, gsubTable, success);
554 result = new ArabicOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success);
559 result = new OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags & ~kTypoFlagLiga, gsubTable, success);
563 result = new HangulOpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlag
137 LayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) argument
[all...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
H A DPhoneNumberOfflineGeocoder.java154 * @param languageCode the language code for which the description should be written
157 public String getDescriptionForValidNumber(PhoneNumber number, Locale languageCode) { argument
158 String langStr = languageCode.getLanguage();
160 String regionStr = languageCode.getCountry();
165 ? areaDescription : getCountryNameForNumber(number, languageCode);
182 * @param languageCode the language code for which the description should be written
189 public String getDescriptionForValidNumber(PhoneNumber number, Locale languageCode, argument
196 return getDescriptionForValidNumber(number, languageCode);
199 return getRegionDisplayName(regionCode, languageCode);
209 * @param languageCode th
213 getDescriptionForNumber(PhoneNumber number, Locale languageCode) argument
232 getDescriptionForNumber(PhoneNumber number, Locale languageCode, String userRegion) argument
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DWebProcessCreationParameters.h72 String languageCode; member in struct:WebKit::WebProcessCreationParameters
/external/icu4c/test/letest/
H A Dgendata.cpp159 le_int32 languageCode = -1; local
175 languageCode = getLanguageCode(lang);
177 if (languageCode < 0) {
250 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, leStatus);
H A Dxmlreader.cpp179 le_int32 languageCode = -1; local
191 languageCode = getLanguageCode(lang);
193 if (languageCode < 0) {
238 (*callback)(id, fontName, fontVer, fontCksum, scriptCode, languageCode, text.getBuffer(), charCount, &expected);
H A Dcletest.c443 le_int32 languageCode,
463 engine = le_create(font, scriptCode, languageCode, typoFlags, &status);
438 doTestCase(const char *testID, const char *fontName, const char *fontVersion, const char *fontChecksum, le_int32 scriptCode, le_int32 languageCode, const LEUnicode *text, le_int32 charCount, TestResult *expected) argument
H A Dletest.cpp610 le_int32 languageCode = -1; local
625 languageCode = getLanguageCode(lang);
627 if (languageCode < 0) {
690 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, success);
/external/icu4c/layoutex/
H A DParagraphLayout.cpp857 le_int32 languageCode; member in struct:LanguageMap
955 return languageMap[i].languageCode;

Completed in 166 milliseconds