• Home
  • Raw
  • Download

Lines Matching refs:cachedFormatters

245   cachedFormatters(NULL),  in MessageFormat()
267 cachedFormatters(NULL), in MessageFormat()
290 cachedFormatters(NULL), in MessageFormat()
312 cachedFormatters(NULL), in MessageFormat()
327 uhash_close(cachedFormatters); in ~MessageFormat()
427 const Format* format = (const Format*)uhash_iget(cachedFormatters, cur->key.integer); in operator ==()
428 … const Format* rhs_format = (const Format*)uhash_iget(that.cachedFormatters, rhs_cur->key.integer); in operator ==()
502 uhash_close(cachedFormatters); in resetPattern()
503 cachedFormatters = NULL; in resetPattern()
557 if (cachedFormatters == NULL) { in setArgStartFormat()
558 cachedFormatters=uhash_open(uhash_hashLong, uhash_compareLong, in setArgStartFormat()
564 uhash_setValueDeleter(cachedFormatters, uprv_deleteUObject); in setArgStartFormat()
569 uhash_iput(cachedFormatters, argStart, formatter, &status); in setArgStartFormat()
594 if (cachedFormatters == NULL) { in getCachedFormatter()
597 void* ptr = uhash_iget(cachedFormatters, argumentNumber); in getCachedFormatter()
616 if (cachedFormatters != NULL) { in adoptFormats()
617 uhash_removeAll(cachedFormatters); in adoptFormats()
649 if (cachedFormatters != NULL) { in setFormats()
650 uhash_removeAll(cachedFormatters); in setFormats()
760 if (U_FAILURE(status) || cachedFormatters == NULL) return NULL; in getFormat()
1109 …} else if (argType == UMSGPAT_ARG_TYPE_NONE || (cachedFormatters && uhash_iget(cachedFormatters, i… in format()
1328 if (cachedFormatters != NULL) { in copyObjects()
1329 uhash_removeAll(cachedFormatters); in copyObjects()
1334 if (that.cachedFormatters) { in copyObjects()
1335 if (cachedFormatters == NULL) { in copyObjects()
1336 cachedFormatters=uhash_open(uhash_hashLong, uhash_compareLong, in copyObjects()
1341 uhash_setValueDeleter(cachedFormatters, uprv_deleteUObject); in copyObjects()
1344 const int32_t count = uhash_count(that.cachedFormatters); in copyObjects()
1347 const UHashElement* cur = uhash_nextElement(that.cachedFormatters, &pos); in copyObjects()
1350 uhash_iput(cachedFormatters, cur->key.integer, newFormat, &ec); in copyObjects()
1431 if(cachedFormatters!=NULL && (formatter = getCachedFormatter(i - 2))!=NULL) { in parse()
1442 … argType==UMSGPAT_ARG_TYPE_NONE || (cachedFormatters && uhash_iget(cachedFormatters, i -2))) { in parse()
1591 if (cachedFormatters != NULL) { in cacheExplicitFormats()
1592 uhash_removeAll(cachedFormatters); in cacheExplicitFormats()
1972 if(context.numberArgIndex > 0 && msgFormat.cachedFormatters != NULL) { in select()
1974 (const Format*)uhash_iget(msgFormat.cachedFormatters, context.numberArgIndex); in select()