Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp243 customFormatArgStarts(NULL), in MessageFormat()
265 customFormatArgStarts(NULL), in MessageFormat()
288 customFormatArgStarts(NULL), in MessageFormat()
310 customFormatArgStarts(NULL), in MessageFormat()
325 uhash_close(customFormatArgStarts); in ~MessageFormat()
404 if ((customFormatArgStarts == NULL) != (that.customFormatArgStarts == NULL)) { in operator ==()
407 if (customFormatArgStarts == NULL) { in operator ==()
412 const int32_t count = uhash_count(customFormatArgStarts); in operator ==()
413 const int32_t rhs_count = uhash_count(that.customFormatArgStarts); in operator ==()
419 const UHashElement* cur = uhash_nextElement(customFormatArgStarts, &pos); in operator ==()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java514 if (customFormatArgStarts != null) { in toPattern()
1422 if (customFormatArgStarts != null) { in clone()
1423 other.customFormatArgStarts = new HashSet<Integer>(); in clone()
1424 for (Integer key : customFormatArgStarts) { in clone()
1425 other.customFormatArgStarts.add(key); in clone()
1428 other.customFormatArgStarts = null; in clone()
1467 && Utility.objectEquals(customFormatArgStarts, other.customFormatArgStarts); in equals()
1559 private transient Set<Integer> customFormatArgStarts; field in MessageFormat
2148 customFormatArgStarts = null; in resetPattern()
2342 if (customFormatArgStarts == null || customFormatArgStarts.isEmpty()) { in writeObject()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessageFormat.java503 if (customFormatArgStarts != null) { in toPattern()
1388 if (customFormatArgStarts != null) { in clone()
1389 other.customFormatArgStarts = new HashSet<Integer>(); in clone()
1390 for (Integer key : customFormatArgStarts) { in clone()
1391 other.customFormatArgStarts.add(key); in clone()
1394 other.customFormatArgStarts = null; in clone()
1432 && Utility.objectEquals(customFormatArgStarts, other.customFormatArgStarts); in equals()
1515 private transient Set<Integer> customFormatArgStarts; field in MessageFormat
2104 customFormatArgStarts = null; in resetPattern()
2298 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