Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp242 customFormatArgStarts(NULL), in MessageFormat()
264 customFormatArgStarts(NULL), in MessageFormat()
287 customFormatArgStarts(NULL), in MessageFormat()
309 customFormatArgStarts(NULL), in MessageFormat()
324 uhash_close(customFormatArgStarts); in ~MessageFormat()
403 if ((customFormatArgStarts == NULL) != (that.customFormatArgStarts == NULL)) { in operator ==()
406 if (customFormatArgStarts == NULL) { in operator ==()
411 const int32_t count = uhash_count(customFormatArgStarts); in operator ==()
412 const int32_t rhs_count = uhash_count(that.customFormatArgStarts); in operator ==()
418 const UHashElement* cur = uhash_nextElement(customFormatArgStarts, &pos); in operator ==()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java515 if (customFormatArgStarts != null) { in toPattern()
1423 if (customFormatArgStarts != null) { in clone()
1424 other.customFormatArgStarts = new HashSet<Integer>(); in clone()
1425 for (Integer key : customFormatArgStarts) { in clone()
1426 other.customFormatArgStarts.add(key); in clone()
1429 other.customFormatArgStarts = null; in clone()
1468 && Utility.objectEquals(customFormatArgStarts, other.customFormatArgStarts); in equals()
1560 private transient Set<Integer> customFormatArgStarts; field in MessageFormat
2149 customFormatArgStarts = null; in resetPattern()
2343 if (customFormatArgStarts == null || customFormatArgStarts.isEmpty()) { in writeObject()
[all …]
/external/messageformat/java/com/ibm/icu/simple/
DMessageFormat.java471 if (customFormatArgStarts != null) { in toPattern()
1477 private transient Set<Integer> customFormatArgStarts; field in MessageFormat
2063 customFormatArgStarts = null; in resetPattern()
2236 customFormatArgStarts = null; in cacheExplicitFormats()
2280 if (customFormatArgStarts == null) { in setCustomArgStartFormat()
2281 customFormatArgStarts = new HashSet<Integer>(); in setCustomArgStartFormat()
2283 customFormatArgStarts.add(argStart); in setCustomArgStartFormat()
/external/icu/icu4c/source/i18n/unicode/
Dmsgfmt.h921 UHashtable* customFormatArgStarts; variable