Home
last modified time | relevance | path

Searched refs:fResults (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/i18n/
Dnumrange_fluent.cpp365 : fResults(src.fResults), fErrorCode(src.fErrorCode) { in FormattedNumberRange()
367 src.fResults = nullptr; in FormattedNumberRange()
372 delete fResults; in operator =()
373 fResults = src.fResults; in operator =()
376 src.fResults = nullptr; in operator =()
385 if (fResults == nullptr) { in toString()
389 return fResults->string.toUnicodeString(); in toString()
396 if (fResults == nullptr) { in appendTo()
400 appendable.appendString(fResults->string.chars(), fResults->string.length()); in appendTo()
408 if (fResults == nullptr) { in nextFieldPosition()
[all …]
Dnumber_fluent.cpp755 : fResults(src.fResults), fErrorCode(src.fErrorCode) { in FormattedNumber()
757 src.fResults = nullptr; in FormattedNumber()
762 delete fResults; in operator =()
763 fResults = src.fResults; in operator =()
766 src.fResults = nullptr; in operator =()
780 if (fResults == nullptr) { in toString()
784 return fResults->string.toUnicodeString(); in toString()
796 if (fResults == nullptr) { in appendTo()
800 appendable.appendString(fResults->string.chars(), fResults->string.length()); in appendTo()
808 if (fResults == nullptr) { in populateFieldPosition()
[all …]
Dtznames_impl.cpp925 TimeZoneNames::MatchInfoCollection* fResults; member in ZNameSearchHandler
929 : fTypes(types), fMaxMatchLen(0), fResults(NULL) { in ZNameSearchHandler()
933 if (fResults != NULL) { in ~ZNameSearchHandler()
934 delete fResults; in ~ZNameSearchHandler()
952 if (fResults == NULL) { in handleMatch()
953 fResults = new TimeZoneNames::MatchInfoCollection(); in handleMatch()
954 if (fResults == NULL) { in handleMatch()
959 U_ASSERT(fResults != NULL); in handleMatch()
961fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status); in handleMatch()
964fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status); in handleMatch()
[all …]
Dtzgnames.cpp200 UVector* fResults; member in GNameSearchHandler
205 : fTypes(types), fResults(NULL), fMaxMatchLen(0) { in GNameSearchHandler()
209 if (fResults != NULL) { in ~GNameSearchHandler()
210 delete fResults; in ~GNameSearchHandler()
228 if (fResults == NULL) { in handleMatch()
229 fResults = new UVector(uprv_free, NULL, status); in handleMatch()
230 if (fResults == NULL) { in handleMatch()
235 U_ASSERT(fResults != NULL); in handleMatch()
244 fResults->addElement(gmatch, status); in handleMatch()
263 UVector *results = fResults; in getMatches()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTrie2.java546 private Trie2.CharSequenceValues fResults = new Trie2.CharSequenceValues(); field in Trie2.CharSequenceIterator
573 fResults.index = index; in next()
574 fResults.codePoint = c; in next()
575 fResults.value = val; in next()
580 return fResults; in next()
591 fResults.index = index; in previous()
592 fResults.codePoint = c; in previous()
593 fResults.value = val; in previous()
594 return fResults; in previous()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTrie2.java552 private Trie2.CharSequenceValues fResults = new Trie2.CharSequenceValues(); field in Trie2.CharSequenceIterator
579 fResults.index = index; in next()
580 fResults.codePoint = c; in next()
581 fResults.value = val; in next()
586 return fResults; in next()
597 fResults.index = index; in previous()
598 fResults.codePoint = c; in previous()
599 fResults.value = val; in previous()
600 return fResults; in previous()
/external/icu/icu4c/source/i18n/unicode/
Dnumberrangeformatter.h811 const impl::UFormattedNumberRangeData *fResults;
821 : fResults(results), fErrorCode(U_ZERO_ERROR) {};
824 : fResults(nullptr), fErrorCode(errorCode) {};
Dnumberformatter.h2629 const impl::UFormattedNumberData *fResults;
2639 : fResults(results), fErrorCode(U_ZERO_ERROR) {}; in FormattedNumber()
2642 : fResults(nullptr), fErrorCode(errorCode) {}; in FormattedNumber()