Home
last modified time | relevance | path

Searched refs:customFormatArgStarts (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp246 customFormatArgStarts(NULL), in MessageFormat()
268 customFormatArgStarts(NULL), in MessageFormat()
291 customFormatArgStarts(NULL), in MessageFormat()
313 customFormatArgStarts(NULL), in MessageFormat()
328 uhash_close(customFormatArgStarts); in ~MessageFormat()
407 if ((customFormatArgStarts == NULL) != (that.customFormatArgStarts == NULL)) { in operator ==()
410 if (customFormatArgStarts == NULL) { in operator ==()
415 const int32_t count = uhash_count(customFormatArgStarts); in operator ==()
416 const int32_t rhs_count = uhash_count(that.customFormatArgStarts); in operator ==()
422 const UHashElement* cur = uhash_nextElement(customFormatArgStarts, &pos); in operator ==()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessageFormat.java506 if (customFormatArgStarts != null) { in toPattern()
1394 if (customFormatArgStarts != null) { in clone()
1395 other.customFormatArgStarts = new HashSet<>(); in clone()
1396 for (Integer key : customFormatArgStarts) { in clone()
1397 other.customFormatArgStarts.add(key); in clone()
1400 other.customFormatArgStarts = null; in clone()
1438 && Objects.equals(customFormatArgStarts, other.customFormatArgStarts); in equals()
1522 private transient Set<Integer> customFormatArgStarts; field in MessageFormat
2112 customFormatArgStarts = null; in resetPattern()
2314 if (customFormatArgStarts == null || customFormatArgStarts.isEmpty()) { in writeObject()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java520 if (customFormatArgStarts != null) { in toPattern()
1431 if (customFormatArgStarts != null) { in clone()
1432 other.customFormatArgStarts = new HashSet<>(); in clone()
1433 for (Integer key : customFormatArgStarts) { in clone()
1434 other.customFormatArgStarts.add(key); in clone()
1437 other.customFormatArgStarts = null; in clone()
1476 && Objects.equals(customFormatArgStarts, other.customFormatArgStarts); in equals()
1569 private transient Set<Integer> customFormatArgStarts; field in MessageFormat
2159 customFormatArgStarts = null; in resetPattern()
2361 if (customFormatArgStarts == null || customFormatArgStarts.isEmpty()) { in writeObject()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Dmsgfmt.h926 UHashtable* customFormatArgStarts; variable