Searched refs:cachedFormatters (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | msgfmt.cpp | 241 cachedFormatters(NULL), in MessageFormat() 263 cachedFormatters(NULL), in MessageFormat() 286 cachedFormatters(NULL), in MessageFormat() 308 cachedFormatters(NULL), in MessageFormat() 323 uhash_close(cachedFormatters); in ~MessageFormat() 423 const Format* format = (const Format*)uhash_iget(cachedFormatters, cur->key.integer); in operator ==() 424 … const Format* rhs_format = (const Format*)uhash_iget(that.cachedFormatters, rhs_cur->key.integer); in operator ==() 498 uhash_close(cachedFormatters); in resetPattern() 499 cachedFormatters = NULL; in resetPattern() 553 if (cachedFormatters == NULL) { in setArgStartFormat() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | MessageFormat.java | 798 list.set(argNumber, cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormatsByArgumentIndex() 827 list.add(cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormats() 854 if (cachedFormatters == null) { in getFormatByArgumentName() 863 return cachedFormatters.get(partIndex); in getFormatByArgumentName() 1290 if(cachedFormatters!=null && (formatter=cachedFormatters.get(i - 2))!=null) { in parse() 1302 (cachedFormatters!=null && cachedFormatters.containsKey(i - 2))) { in parse() 1432 if (cachedFormatters != null) { in clone() 1433 other.cachedFormatters = new HashMap<Integer, Format>(); in clone() 1434 Iterator<Map.Entry<Integer, Format>> it = cachedFormatters.entrySet().iterator(); in clone() 1437 other.cachedFormatters.put(entry.getKey(), entry.getValue()); in clone() [all …]
|
/external/messageformat/java/com/ibm/icu/simple/ |
D | MessageFormat.java | 754 list.set(argNumber, cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormatsByArgumentIndex() 783 list.add(cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormats() 810 if (cachedFormatters == null) { in getFormatByArgumentName() 819 return cachedFormatters.get(partIndex); in getFormatByArgumentName() 1246 if(cachedFormatters!=null && (formatter=cachedFormatters.get(i - 2))!=null) { in parse() 1258 (cachedFormatters!=null && cachedFormatters.containsKey(i - 2))) { in parse() 1472 private transient Map<Integer, Format> cachedFormatters; field in MessageFormat 1606 } else if(cachedFormatters!=null && (formatter=cachedFormatters.get(i - 2))!=null) { in format() 1613 (cachedFormatters!=null && cachedFormatters.containsKey(i - 2))) { in format() 2008 if(context.numberArgIndex > 0 && msgFormat.cachedFormatters != null) { in select() [all …]
|
/external/icu/icu4c/source/i18n/unicode/ |
D | msgfmt.h | 920 UHashtable* cachedFormatters; variable
|