Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dwinnmtst.cpp137 static UnicodeString &getWindowsFormat(int32_t lcid, UBool currency, UnicodeString &appendTo, const… in getWindowsFormat() argument
192 result = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, STACK_BUFFER_SIZE); in getWindowsFormat()
198 int newLength = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, NULL, 0); in getWindowsFormat()
202 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength); in getWindowsFormat()
206 result = GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, STACK_BUFFER_SIZE); in getWindowsFormat()
212 int newLength = GetNumberFormatW(lcid, 0, nBuffer, NULL, NULL, 0); in getWindowsFormat()
216 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength); in getWindowsFormat()
234 static void testLocale(const char *localeID, int32_t lcid, NumberFormat *wnf, UBool currency, TestL… in testLocale() argument
243 getWindowsFormat(lcid, currency, wdBuffer, L"%.16f", d); in testLocale()
245 getWindowsFormat(lcid, currency, w3Buffer, L"%I32d", i32); in testLocale()
[all …]
Dwindttst.cpp135 …::begin(failingLocaleLCIDs), std::end(failingLocaleLCIDs), lcidRecords[i].lcid) != std::end(failin… in testLocales()
137 log->logln("ticket:13119 - Skipping LCID = 0x%04x", lcidRecords[i].lcid); in testLocales()
141 GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_SLONGDATE, longDateFormat, 81); in testLocales()
142 GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_STIMEFORMAT, longTimeFormat, 81); in testLocales()
143 …GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_RETURN_NUMBER|LOCALE_ICALENDARTYPE, (LPWSTR) calType, s… in testLocales()
154 …wdLength = GetDateFormatW(lcidRecords[i].lcid, DATE_LONGDATE, &winNow, NULL, wdBuffer, UPRV_LENGTH… in testLocales()
155 …wtLength = GetTimeFormatW(lcidRecords[i].lcid, 0, &winNow, NULL, wtBuffer, UPRV_LENGTHOF(wtBuffer)… in testLocales()
Dwinutil.cpp58 sscanf(lpLocaleString, "%8x", &lcidRecords[lcidCount].lcid); in EnumLocalesProc()
60 …localeIDLen = uprv_convertToPosix(lcidRecords[lcidCount].lcid, localeID, UPRV_LENGTHOF(localeID), … in EnumLocalesProc()
Dwinutil.h33 int32_t lcid; member
/external/skqp/tools/
Dwin_lcid.cpp21 LCID lcid = LocaleNameToLCID(pStr, nullptr); in MyFuncLocaleEx() local
22 if (lcid == 0) { in MyFuncLocaleEx()
27 if (lcid > 0x8000) { in MyFuncLocaleEx()
30 wprintf(L" { 0x%.4x, \"%s\" }, //%s\n", lcid, pStr, wcBuffer); in MyFuncLocaleEx()
/external/skia/tools/
Dwin_lcid.cpp21 LCID lcid = LocaleNameToLCID(pStr, nullptr); in MyFuncLocaleEx() local
22 if (lcid == 0) { in MyFuncLocaleEx()
27 if (lcid > 0x8000) { in MyFuncLocaleEx()
30 wprintf(L" { 0x%.4x, \"%s\" }, //%s\n", lcid, pStr, wcBuffer); in MyFuncLocaleEx()
/external/e2fsprogs/intl/
Dlocalename.c741 LCID lcid; in _nl_locale_name() local
758 lcid = GetThreadLocale (); in _nl_locale_name()
761 langid = LANGIDFROMLCID (lcid); in _nl_locale_name()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_localemgr.cpp1167 std::unique_ptr<IFX_Locale> CXFA_LocaleMgr::GetLocale(uint16_t lcid) { in GetLocale() argument
1168 switch (lcid) { in GetLocale()
Dcxfa_localemgr.h33 std::unique_ptr<IFX_Locale> GetLocale(uint16_t lcid);
/external/icu/icu4c/source/common/
Dlocmap.cpp1233 LCID lcid = LocaleNameToLCID(bcp47Tag, nameLCIDFlags); in uprv_convertToLCIDPlatform() local
1234 if (lcid > 0) in uprv_convertToLCIDPlatform()
1239 if (lcid != LOCALE_CUSTOM_UNSPECIFIED) in uprv_convertToLCIDPlatform()
1241 return lcid; in uprv_convertToLCIDPlatform()
Duloc.cpp2175 uint32_t lcid = 0; in uloc_getLCID() local
2183 lcid = uprv_convertToLCIDPlatform(localeID); in uloc_getLCID()
2184 if (lcid > 0) in uloc_getLCID()
2187 return lcid; in uloc_getLCID()
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c3338 uint32_t lcid; in TestGetLocaleForLCID() local
3340 lcid = uloc_getLCID("en_US"); in TestGetLocaleForLCID()
3341 if (lcid != 0x0409) { in TestGetLocaleForLCID()
3342 log_err(" uloc_getLCID(\"en_US\") = %d, expected 0x0409\n", lcid); in TestGetLocaleForLCID()
3345 lengthPre = uloc_getLocaleForLCID(lcid, temp2, 4, &status); in TestGetLocaleForLCID()
3353 length = uloc_getLocaleForLCID(lcid, temp2, UPRV_LENGTHOF(temp2), &status); in TestGetLocaleForLCID()
3376 sscanf(rawData2[LCID][i], "%x", &lcid); in TestGetLocaleForLCID()
3377 length = uloc_getLocaleForLCID(lcid, temp2, UPRV_LENGTHOF(temp2), &status); in TestGetLocaleForLCID()
3379 …log_err(" unexpected failure of uloc_getLocaleForLCID(%#04x), status %s\n", lcid, u_errorName(sta… in TestGetLocaleForLCID()
3385 … %d not correct for uloc_getLocaleForLCID(%#04x), expected %d\n", length, lcid, uprv_strlen(temp2)… in TestGetLocaleForLCID()
[all …]
/external/libmtp/logs/
Dmtp-detect-nokia-3110c.txt34 00e0: 2828 2830 7830 3030 3021 3d6c 6369 6429 (((0x0000!=lcid)
37 0110: 3d6c 6369 6429 2026 2620 2830 7830 3030 =lcid) && (0x000
Dmtp-detect-nokia-3109c.txt70 00e0: 2828 2830 7830 3030 3021 3d6c 6369 6429 (((0x0000!=lcid)
73 0110: 3d6c 6369 6429 2026 2620 2830 7830 3030 =lcid) && (0x000
Dmtp-detect-nokia-5310.txt46 01a0: 3030 303d 3d6c 6369 6429 2026 2620 2830 000==lcid) && (0
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/
Dpdbdump-yaml-types.test632 YAML: Name: lcid
Dpdbdump-headers.test322 ALL-NEXT: - LF_MEMBER [name = `lcid`, Type = 0x0074 (int), offset = 16, attrs = public]