Searched refs:isKnownKey (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/common/ |
D | uloc_keytype.cpp | 480 ulocimp_toBcpType(const char* key, const char* type, UBool* isKnownKey, UBool* isSpecialType) { in ulocimp_toBcpType() argument 481 if (isKnownKey != NULL) { in ulocimp_toBcpType() 482 *isKnownKey = FALSE; in ulocimp_toBcpType() 494 if (isKnownKey != NULL) { in ulocimp_toBcpType() 495 *isKnownKey = TRUE; in ulocimp_toBcpType() 522 ulocimp_toLegacyType(const char* key, const char* type, UBool* isKnownKey, UBool* isSpecialType) { in ulocimp_toLegacyType() argument 523 if (isKnownKey != NULL) { in ulocimp_toLegacyType() 524 *isKnownKey = FALSE; in ulocimp_toLegacyType() 536 if (isKnownKey != NULL) { in ulocimp_toLegacyType() 537 *isKnownKey = TRUE; in ulocimp_toLegacyType()
|
D | ulocimp.h | 79 ulocimp_toBcpType(const char* key, const char* type, UBool* isKnownKey, UBool* isSpecialType); 82 ulocimp_toLegacyType(const char* key, const char* type, UBool* isKnownKey, UBool* isSpecialType);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | KeyTypeData.java | 101 Output<Boolean> isKnownKey, Output<Boolean> isSpecialType) { in toBcpType() argument 103 if (isKnownKey != null) { in toBcpType() 104 isKnownKey.value = false; in toBcpType() 115 if (isKnownKey != null) { in toBcpType() 116 isKnownKey.value = Boolean.TRUE; in toBcpType() 138 Output<Boolean> isKnownKey, Output<Boolean> isSpecialType) { in toLegacyType() argument 140 if (isKnownKey != null) { in toLegacyType() 141 isKnownKey.value = false; in toLegacyType() 152 if (isKnownKey != null) { in toLegacyType() 153 isKnownKey.value = Boolean.TRUE; in toLegacyType()
|