Searched refs:localMap (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | timezone.cpp | 728 int32_t* localMap; member in TZEnumeration 734 localMap = adoptMapData ? mapData : NULL; in TZEnumeration() 896 …TZEnumeration(const TZEnumeration &other) : StringEnumeration(), map(NULL), localMap(NULL), len(0)… in TZEnumeration() 897 if (other.localMap != NULL) { in TZEnumeration() 898 localMap = (int32_t *)uprv_malloc(other.len * sizeof(int32_t)); in TZEnumeration() 899 if (localMap != NULL) { in TZEnumeration() 901 uprv_memcpy(localMap, other.localMap, len * sizeof(int32_t)); in TZEnumeration() 903 map = localMap; in TZEnumeration() 911 localMap = NULL; in TZEnumeration() 946 if (localMap != NULL) { in ~TZEnumeration() [all …]
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/ |
D | TestUtilities.java | 278 Map localMap = new TreeMap(); in checkNext() local 283 localMap.put(new Integer(i), mi.value); in checkNext() 286 checkMap(map2, localMap); in checkNext() 290 localMap = new TreeMap(); in checkNext() 298 localMap.put(new Integer(mi.codepoint), mi.value); in checkNext() 300 checkMap(map2, localMap); in checkNext()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | TestUtilities.java | 282 Map localMap = new TreeMap(); in checkNext() local 287 localMap.put(new Integer(i), mi.value); in checkNext() 290 checkMap(map2, localMap); in checkNext() 294 localMap = new TreeMap(); in checkNext() 302 localMap.put(new Integer(mi.codepoint), mi.value); in checkNext() 304 checkMap(map2, localMap); in checkNext()
|