• Home
  • Raw
  • Download

Lines Matching refs:posixID

1312     const char* posixID;  member
1416 const char* posixID = NULL; in uprv_getPOSIXIDForCategory() local
1436 posixID = setlocale(category, NULL); in uprv_getPOSIXIDForCategory()
1437 if ((posixID == 0) in uprv_getPOSIXIDForCategory()
1438 || (uprv_strcmp("C", posixID) == 0) in uprv_getPOSIXIDForCategory()
1439 || (uprv_strcmp("POSIX", posixID) == 0)) in uprv_getPOSIXIDForCategory()
1442 posixID = getenv("LC_ALL"); in uprv_getPOSIXIDForCategory()
1443 if (posixID == 0) { in uprv_getPOSIXIDForCategory()
1444 posixID = getenv(category == LC_MESSAGES ? "LC_MESSAGES" : "LC_CTYPE"); in uprv_getPOSIXIDForCategory()
1445 if (posixID == 0) { in uprv_getPOSIXIDForCategory()
1446 posixID = getenv("LANG"); in uprv_getPOSIXIDForCategory()
1451 if ((posixID==0) in uprv_getPOSIXIDForCategory()
1452 || (uprv_strcmp("C", posixID) == 0) in uprv_getPOSIXIDForCategory()
1453 || (uprv_strcmp("POSIX", posixID) == 0)) in uprv_getPOSIXIDForCategory()
1456 posixID = "en_US_POSIX"; in uprv_getPOSIXIDForCategory()
1458 return posixID; in uprv_getPOSIXIDForCategory()
1466 static const char* posixID = NULL; in uprv_getPOSIXIDForDefaultLocale() local
1467 if (posixID == 0) { in uprv_getPOSIXIDForDefaultLocale()
1468 posixID = uprv_getPOSIXIDForCategory(LC_MESSAGES); in uprv_getPOSIXIDForDefaultLocale()
1470 return posixID; in uprv_getPOSIXIDForDefaultLocale()
1479 static const char* posixID = NULL; in uprv_getPOSIXIDForDefaultCodepage() local
1480 if (posixID == 0) { in uprv_getPOSIXIDForDefaultCodepage()
1481 posixID = uprv_getPOSIXIDForCategory(LC_CTYPE); in uprv_getPOSIXIDForDefaultCodepage()
1483 return posixID; in uprv_getPOSIXIDForDefaultCodepage()
1516 const char* posixID = uprv_getPOSIXIDForDefaultLocale(); in uprv_getDefaultLocaleID() local
1531 if ((p = uprv_strchr(posixID, '.')) != NULL) { in uprv_getDefaultLocaleID()
1533 correctedPOSIXLocale = static_cast<char *>(uprv_malloc(uprv_strlen(posixID)+1)); in uprv_getDefaultLocaleID()
1538 uprv_strncpy(correctedPOSIXLocale, posixID, p-posixID); in uprv_getDefaultLocaleID()
1539 correctedPOSIXLocale[p-posixID] = 0; in uprv_getDefaultLocaleID()
1548 if ((p = uprv_strrchr(posixID, '@')) != NULL) { in uprv_getDefaultLocaleID()
1550 correctedPOSIXLocale = static_cast<char *>(uprv_malloc(uprv_strlen(posixID)+1)); in uprv_getDefaultLocaleID()
1555 uprv_strncpy(correctedPOSIXLocale, posixID, p-posixID); in uprv_getDefaultLocaleID()
1556 correctedPOSIXLocale[p-posixID] = 0; in uprv_getDefaultLocaleID()
1593 posixID = correctedPOSIXLocale; in uprv_getDefaultLocaleID()
1597 correctedPOSIXLocale = (char *)uprv_malloc(uprv_strlen(posixID) + 1); in uprv_getDefaultLocaleID()
1602 posixID = uprv_strcpy(correctedPOSIXLocale, posixID); in uprv_getDefaultLocaleID()
1615 return posixID; in uprv_getDefaultLocaleID()
1652 const char* posixID = 0; in uprv_getDefaultLocaleID()
1672 posixID = mac_lc_recs[i].posixID; in uprv_getDefaultLocaleID()
1677 return posixID; in uprv_getDefaultLocaleID()