Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/
DLocaleData.cpp52 auto lookup_result = map->find(packed_locale); in findParent() local
53 if (lookup_result != map->end()) { in findParent()
54 return lookup_result->second; in findParent()
184 auto lookup_result = LIKELY_SCRIPTS.find(lookup_key); in localeDataComputeScript() local
185 if (lookup_result == LIKELY_SCRIPTS.end()) { in localeDataComputeScript()
189 lookup_result = LIKELY_SCRIPTS.find(lookup_key); in localeDataComputeScript()
190 if (lookup_result != LIKELY_SCRIPTS.end()) { in localeDataComputeScript()
191 memcpy(out, SCRIPT_CODES[lookup_result->second], SCRIPT_LENGTH); in localeDataComputeScript()
200 memcpy(out, SCRIPT_CODES[lookup_result->second], SCRIPT_LENGTH); in localeDataComputeScript()
/frameworks/compile/slang/
Dslang_rs_context.cpp185 clang::DeclContext::lookup_result R = TUDecl->lookup(II); in processExportType()