Home
last modified time | relevance | path

Searched refs:lookup_result (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/androidfw/
DLocaleData.cpp53 auto lookup_result = map->find(packed_locale); in findParent() local
54 if (lookup_result != map->end()) { in findParent()
55 return lookup_result->second; in findParent()
207 auto lookup_result = LIKELY_SCRIPTS.find(lookup_key); in localeDataComputeScript() local
208 if (lookup_result == LIKELY_SCRIPTS.end()) { in localeDataComputeScript()
212 lookup_result = LIKELY_SCRIPTS.find(lookup_key); in localeDataComputeScript()
213 if (lookup_result != LIKELY_SCRIPTS.end()) { in localeDataComputeScript()
214 memcpy(out, SCRIPT_CODES[lookup_result->second], SCRIPT_LENGTH); in localeDataComputeScript()
223 memcpy(out, SCRIPT_CODES[lookup_result->second], SCRIPT_LENGTH); in localeDataComputeScript()
/frameworks/compile/slang/
Dslang_rs_context.cpp186 clang::DeclContext::lookup_result R = TUDecl->lookup(II); in processExportType()