HomeSort by relevance Sort by last modified time
    Searched refs:resolved (Results 51 - 75 of 742) sorted by null

1 23 4 5 6 7 8 91011>>

  /tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
PsiConstructorItem.kt 83 val resolved = (curr.expression as PsiMethodCallExpression).resolveMethod()
84 if (resolved is PsiMethod) {
85 val superConstructor = codebase.findMethod(resolved)
233 val resolved = call.resolveMethod()
234 if (resolved is PsiMethod) {
235 return resolved
  /external/elfutils/libdwfl/
dwfl_module_addrsym.c 130 Elf *elf, bool resolved)
157 resolved ? state->mod->main.elf : elf,
203 bool resolved; local
206 &resolved,
215 try_sym_value (state, value, &sym, name, shndx, elf, resolved);
218 resolved then also try matching the (adjusted) st_value. */
219 if (resolved && state->mod->e_type != ET_REL)
  /art/runtime/
class_linker-inl.h 74 // We do not need the read barrier for getting the DexCache for the initial resolved type
75 // lookup as both from-space and to-space copies point to the same native resolved types array.
93 // We do not need the read barrier for getting the DexCache for the initial resolved type
94 // lookup as both from-space and to-space copies point to the same native resolved types array.
112 ObjPtr<mirror::Class> resolved = dex_cache->GetResolvedType(type_idx); local
113 if (resolved == nullptr) {
114 resolved = DoResolveType(type_idx, dex_cache, class_loader);
116 return resolved;
121 // We do not need the read barrier for getting the DexCache for the initial resolved type
122 // lookup as both from-space and to-space copies point to the same native resolved types array
223 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx, pointer_size); local
    [all...]
  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java 60 boolean resolved = resolveIntent(getIntent());
61 if (!resolved) {
100 * @return True if the {@code intent} is resolved properly.
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java 60 boolean resolved = resolveIntent(getIntent());
61 if (!resolved) {
100 * @return True if the {@code intent} is resolved properly.
  /development/samples/browseable/DirectShare/src/com.example.android.directshare/
SendMessageActivity.java 60 boolean resolved = resolveIntent(getIntent());
61 if (!resolved) {
100 * @return True if the {@code intent} is resolved properly.
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MembersInjectionBinding.java 137 ExecutableType resolved = local
143 containingType, methodElement.getParameters(), resolved.getParameterTypes()));
151 TypeMirror resolved = types.asMemberOf(containingType, fieldElement); local
157 containingType, fieldElement, resolved)));
174 * this will return a resolved binding, with the key & type resolved to the given type (using
181 DeclaredType resolved = MoreTypes.asDeclared(resolvedType.get()); local
184 types.isSameType(types.erasure(resolved), types.erasure(declaredType)),
186 types.erasure(resolved),
188 declaredType = resolved;
    [all...]
ProvisionBinding.java 89 * will return a resolved binding, with the key & type resolved to the given type (using
104 DeclaredType resolved = MoreTypes.asDeclared(resolvedType.get()); local
106 checkState(types.isSameType(types.erasure(resolved), types.erasure(enclosingCxtorType)),
108 types.erasure(resolved), types.erasure(enclosingCxtorType));
109 cxtorType = MoreTypes.asExecutable(types.asMemberOf(resolved, constructorElement));
110 enclosingCxtorType = resolved;
  /toolchain/binutils/binutils-2.27/opcodes/
ia64-gen.c 1040 int resolved = 0;
1078 resolved = ((strncmp (ic->name, idesc->name, len) == 0)
1083 if (resolved &&
1087 resolved = strcmp (ic->name, idesc->name) == 0;
1091 if (resolved && field)
1099 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0;
1105 resolved = strstr (field, "fault") != NULL;
1107 resolved = strstr (field, "fault") == NULL;
1113 resolved = strstr (field, "or.andcm") != NULL;
1038 int resolved = 0; local
    [all...]
  /test/vts/utils/python/coverage/
function_summary.py 53 Using the edges that were resolved by the GCDA file,
54 counts are resolved in the unresolved arcs. Then, block
55 counts are resolved by summing the counts along arcs entering
59 True if the counts could be resolved and False otherwise.
65 if not arc.resolved:
gcda_parser_test.py 62 Verifies that arcs are marked as resolved and count is correct.
80 self.assertTrue(arc.resolved)
86 arcs are read and resolved correctly.
114 self.assertFalse(blocks[0].exit_arcs[0].resolved)
115 self.assertFalse(blocks[0].exit_arcs[1].resolved)
118 self.assertTrue(arc.resolved)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
undefined.s 14 # for undefined symbols the page never gets resolved any further.
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
TileUtils.java 291 for (ResolveInfo resolved : results) {
292 if (!resolved.system) {
296 category.title = resolved.activityInfo.loadLabel(pm);
298 resolved.activityInfo.applicationInfo.packageName) ? resolved.priority : 0;
342 for (ResolveInfo resolved : results) {
343 if (!resolved.system) {
347 ActivityInfo activityInfo = resolved.activityInfo;
354 Log.w(LOG_TAG, "Found " + resolved.activityInfo.name + " for intent "
370 tile.priority = usePriority ? resolved.priority : 0
    [all...]
  /prebuilts/tools/common/m2/repository/xml-resolver/xml-resolver/1.2/
xml-resolver-1.2.jar 
  /art/runtime/mirror/
dex_cache-inl.h 69 inline void DexCache::SetResolvedString(dex::StringIndex string_idx, ObjPtr<String> resolved) {
70 DCHECK(resolved != nullptr);
72 StringDexCachePair(resolved, string_idx.index_), std::memory_order_relaxed);
101 // It is theorized that a load acquire is not required since obtaining the resolved class will
107 inline void DexCache::SetResolvedType(dex::TypeIndex type_idx, ObjPtr<Class> resolved) {
108 DCHECK(resolved != nullptr);
114 TypeDexCachePair(resolved, type_idx.index_), std::memory_order_release);
143 inline void DexCache::SetResolvedMethodType(uint32_t proto_idx, MethodType* resolved) {
144 DCHECK(resolved != nullptr);
146 MethodTypeDexCachePair(resolved, proto_idx), std::memory_order_relaxed)
    [all...]
  /external/libcups/cups/
testhttp.c 529 char resolved[1024]; /* Resolved URI */ local
535 if (!_httpResolveURI(argv[1], resolved, sizeof(resolved),
542 printf("PASS (%s)\n", resolved);
547 if (!_httpResolveURI(argv[1], resolved, sizeof(resolved),
553 else if (strstr(resolved, ".local:"))
555 printf("FAIL (%s)\n", resolved);
560 printf("PASS (%s)\n", resolved);
    [all...]
  /external/curl/docs/cmdline-opts/
resolve.d 8 otherwise normally resolved address to be used. Consider it a sort of
  /external/javaparser/
CONTRIBUTING.md 29 - A pull request is merged when all comments on it have been resolved.
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/
SuggestionParser.java 105 for (ResolveInfo resolved : results) {
106 final CandidateSuggestion candidate = new CandidateSuggestion(mContext, resolved,
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
group-reloc-ldr.s 32 @ resolved by the assembler but instead left to the linker.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RegexUtilitiesTest.java 197 String resolved = regex.transform(result);
198 logln(resolved);
199 Matcher m = Pattern.compile(resolved, Pattern.COMMENTS).matcher("");
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 194 String resolved = regex.transform(result);
195 logln(resolved);
196 Matcher m = Pattern.compile(resolved, Pattern.COMMENTS).matcher("");
  /packages/apps/Car/Settings/src/com/android/car/settings/common/
ExtraSettingsLoader.java 78 for (ResolveInfo resolved : results) {
79 if (!resolved.system) {
86 ActivityInfo activityInfo = resolved.activityInfo;
  /packages/apps/Settings/src/com/android/settings/
PrivacySettings.java 204 List<ResolveInfo> resolved = pm.queryIntentActivities(intent, 0); local
205 if (resolved == null || resolved.isEmpty()) {
  /system/core/adb/
transport_mdns.cpp 136 D("mDNS resolved non-IP address.");
220 D("Resolved a service.");
230 auto resolved = local
234 if (! resolved->Initialized()) {
235 delete resolved;

Completed in 1775 milliseconds

1 23 4 5 6 7 8 91011>>