Lines Matching refs:LocaleMatcher
54 LocaleMatcher::Result::Result(LocaleMatcher::Result &&src) U_NOEXCEPT : in Result()
67 LocaleMatcher::Result::~Result() { in ~Result()
73 LocaleMatcher::Result &LocaleMatcher::Result::operator=(LocaleMatcher::Result &&src) U_NOEXCEPT { in operator =()
90 Locale LocaleMatcher::Result::makeResolvedLocale(UErrorCode &errorCode) const { in makeResolvedLocale()
125 LocaleMatcher::Builder::Builder(LocaleMatcher::Builder &&src) U_NOEXCEPT : in Builder()
138 LocaleMatcher::Builder::~Builder() { in ~Builder()
145 LocaleMatcher::Builder &LocaleMatcher::Builder::operator=(LocaleMatcher::Builder &&src) U_NOEXCEPT { in operator =()
162 void LocaleMatcher::Builder::clearSupportedLocales() { in clearSupportedLocales()
168 bool LocaleMatcher::Builder::ensureSupportedLocaleVector() { in ensureSupportedLocaleVector()
180 LocaleMatcher::Builder &LocaleMatcher::Builder::setSupportedLocalesFromListString( in setSupportedLocalesFromListString()
199 LocaleMatcher::Builder &LocaleMatcher::Builder::setSupportedLocales(Locale::Iterator &locales) { in setSupportedLocales()
219 LocaleMatcher::Builder &LocaleMatcher::Builder::addSupportedLocale(const Locale &locale) { in addSupportedLocale()
233 LocaleMatcher::Builder &LocaleMatcher::Builder::setNoDefaultLocale() { in setNoDefaultLocale()
241 LocaleMatcher::Builder &LocaleMatcher::Builder::setDefaultLocale(const Locale *defaultLocale) { in setDefaultLocale()
257 LocaleMatcher::Builder &LocaleMatcher::Builder::setFavorSubtag(ULocMatchFavorSubtag subtag) { in setFavorSubtag()
263 LocaleMatcher::Builder &LocaleMatcher::Builder::setDemotionPerDesiredLocale(ULocMatchDemotion demot… in setDemotionPerDesiredLocale()
269 LocaleMatcher::Builder &LocaleMatcher::Builder::setMaxDistance(const Locale &desired, in setMaxDistance()
297 LocaleMatcher::Builder &LocaleMatcher::Builder::internalSetThresholdDistance(int32_t thresholdDista…
307 UBool LocaleMatcher::Builder::copyErrorTo(UErrorCode &outErrorCode) const { in copyErrorTo()
314 LocaleMatcher LocaleMatcher::Builder::build(UErrorCode &errorCode) const { in build()
318 return LocaleMatcher(*this, errorCode); in build()
345 int32_t LocaleMatcher::putIfAbsent(const LSR &lsr, int32_t i, int32_t suppLength, in putIfAbsent()
358 LocaleMatcher::LocaleMatcher(const Builder &builder, UErrorCode &errorCode) : in LocaleMatcher() function in LocaleMatcher
504 LocaleMatcher::LocaleMatcher(LocaleMatcher &&src) U_NOEXCEPT : in LocaleMatcher() function in LocaleMatcher
529 LocaleMatcher::~LocaleMatcher() { in ~LocaleMatcher()
541 LocaleMatcher &LocaleMatcher::operator=(LocaleMatcher &&src) U_NOEXCEPT { in operator =()
542 this->~LocaleMatcher(); in operator =()
624 const Locale *LocaleMatcher::getBestMatch(const Locale &desiredLocale, UErrorCode &errorCode) const… in getBestMatch()
632 const Locale *LocaleMatcher::getBestMatch(Locale::Iterator &desiredLocales, in getBestMatch()
643 const Locale *LocaleMatcher::getBestMatchForListString( in getBestMatchForListString()
650 LocaleMatcher::Result LocaleMatcher::getBestMatchResult( in getBestMatchResult()
665 LocaleMatcher::Result LocaleMatcher::getBestMatchResult( in getBestMatchResult()
680 int32_t LocaleMatcher::getBestSuppIndex(LSR desiredLSR, LocaleLsrIterator *remainingIter, in getBestSuppIndex()
726 UBool LocaleMatcher::isMatch(const Locale &desired, const Locale &supported, in isMatch()
738 double LocaleMatcher::internalMatch(const Locale &desired, const Locale &supported, UErrorCode &err… in internalMatch()
774 LocaleMatcher::Builder builder; in acceptLanguage()
784 LocaleMatcher matcher = builder.build(errorCode); in acceptLanguage()
785 LocaleMatcher::Result result = matcher.getBestMatchResult(desiredLocales, errorCode); in acceptLanguage()