Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp244 cachedFormatters(NULL), in MessageFormat()
266 cachedFormatters(NULL), in MessageFormat()
289 cachedFormatters(NULL), in MessageFormat()
311 cachedFormatters(NULL), in MessageFormat()
326 uhash_close(cachedFormatters); in ~MessageFormat()
426 const Format* format = (const Format*)uhash_iget(cachedFormatters, cur->key.integer); in operator ==()
427 … const Format* rhs_format = (const Format*)uhash_iget(that.cachedFormatters, rhs_cur->key.integer); in operator ==()
501 uhash_close(cachedFormatters); in resetPattern()
502 cachedFormatters = NULL; in resetPattern()
556 if (cachedFormatters == NULL) { in setArgStartFormat()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java799 list.set(argNumber, cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormatsByArgumentIndex()
828 list.add(cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormats()
855 if (cachedFormatters == null) { in getFormatByArgumentName()
864 return cachedFormatters.get(partIndex); in getFormatByArgumentName()
1293 if(cachedFormatters!=null && (formatter=cachedFormatters.get(i - 2))!=null) { in parse()
1305 (cachedFormatters!=null && cachedFormatters.containsKey(i - 2))) { in parse()
1436 if (cachedFormatters != null) { in clone()
1437 other.cachedFormatters = new HashMap<Integer, Format>(); in clone()
1438 Iterator<Map.Entry<Integer, Format>> it = cachedFormatters.entrySet().iterator(); in clone()
1441 other.cachedFormatters.put(entry.getKey(), entry.getValue()); in clone()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessageFormat.java781 list.set(argNumber, cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormatsByArgumentIndex()
809 list.add(cachedFormatters == null ? null : cachedFormatters.get(partIndex)); in getFormats()
834 if (cachedFormatters == null) { in getFormatByArgumentName()
843 return cachedFormatters.get(partIndex); in getFormatByArgumentName()
1262 if(cachedFormatters!=null && (formatter=cachedFormatters.get(i - 2))!=null) { in parse()
1274 (cachedFormatters!=null && cachedFormatters.containsKey(i - 2))) { in parse()
1402 if (cachedFormatters != null) { in clone()
1403 other.cachedFormatters = new HashMap<Integer, Format>(); in clone()
1404 Iterator<Map.Entry<Integer, Format>> it = cachedFormatters.entrySet().iterator(); in clone()
1407 other.cachedFormatters.put(entry.getKey(), entry.getValue()); in clone()
[all …]
/external/messageformat/java/com/ibm/icu/simple/
DMessageFormat.java754 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/
Dmsgfmt.h922 UHashtable* cachedFormatters; variable