Home
last modified time | relevance | path

Searched refs:locale_it (Results 1 – 3 of 3) sorted by relevance

/external/libtextclassifier/native/annotator/datetime/
Dregex-parser.cc308 auto locale_it = locale_string_to_id_.find(locale_str.ToString()); in ParseAndExpandLocales() local
309 if (locale_it != locale_string_to_id_.end()) { in ParseAndExpandLocales()
310 result.push_back(locale_it->second); in ParseAndExpandLocales()
324 locale_it = locale_string_to_id_.find("*-" + region); in ParseAndExpandLocales()
325 if (locale_it != locale_string_to_id_.end()) { in ParseAndExpandLocales()
326 result.push_back(locale_it->second); in ParseAndExpandLocales()
331 locale_it = locale_string_to_id_.find(language + "-" + script + "-*"); in ParseAndExpandLocales()
332 if (locale_it != locale_string_to_id_.end()) { in ParseAndExpandLocales()
333 result.push_back(locale_it->second); in ParseAndExpandLocales()
338 locale_it = locale_string_to_id_.find(language + "-*"); in ParseAndExpandLocales()
[all …]
Dextractor.cc213 auto locale_it = type_it->second.find(locale_id_); in RuleIdForType() local
214 if (locale_it == type_it->second.end()) { in RuleIdForType()
217 *rule_id = locale_it->second; in RuleIdForType()
/external/libtextclassifier/native/utils/grammar/utils/
Dlocale-shard-map.cc55 auto locale_it = shard_to_locale_data_.find(shard); in GetLocales() local
56 if (locale_it != shard_to_locale_data_.end()) { in GetLocales()
57 return locale_it->second; in GetLocales()