• 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()
1102 …} else if (argType == UMSGPAT_ARG_TYPE_NONE || (cachedFormatters && uhash_iget(cachedFormatters, i… in format()
1321 if (cachedFormatters != NULL) { in copyObjects()
1322 uhash_removeAll(cachedFormatters); in copyObjects()
1327 if (that.cachedFormatters) { in copyObjects()
1328 if (cachedFormatters == NULL) { in copyObjects()
1329 cachedFormatters=uhash_open(uhash_hashLong, uhash_compareLong, in copyObjects()
1334 uhash_setValueDeleter(cachedFormatters, uprv_deleteUObject); in copyObjects()
1337 const int32_t count = uhash_count(that.cachedFormatters); in copyObjects()
1340 const UHashElement* cur = uhash_nextElement(that.cachedFormatters, &pos); in copyObjects()
1343 uhash_iput(cachedFormatters, cur->key.integer, newFormat, &ec); in copyObjects()
1424 if(cachedFormatters!=NULL && (formatter = getCachedFormatter(i - 2))!=NULL) { in parse()
1435 … argType==UMSGPAT_ARG_TYPE_NONE || (cachedFormatters && uhash_iget(cachedFormatters, i -2))) { in parse()
1584 if (cachedFormatters != NULL) { in cacheExplicitFormats()
1585 uhash_removeAll(cachedFormatters); in cacheExplicitFormats()
1959 if(context.numberArgIndex > 0 && msgFormat.cachedFormatters != NULL) { in select()
1961 (const Format*)uhash_iget(msgFormat.cachedFormatters, context.numberArgIndex); in select()