HomeSort by relevance Sort by last modified time
    Searched defs:resolved (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/smalidea/src/test/java/org/jf/smalidea/
AnnotationElementNameReferenceTest.java 55 PsiElement resolved = reference.resolve(); local
56 Assert.assertNotNull(resolved);
57 Assert.assertTrue(resolved instanceof PsiAnnotationMethod);
58 Assert.assertEquals("intValue", ((PsiAnnotationMethod)resolved).getName());
60 ((PsiAnnotationMethod)resolved).getContainingClass().getQualifiedName());
76 PsiElement resolved = reference.resolve(); local
77 Assert.assertNotNull(resolved);
78 Assert.assertTrue(resolved instanceof PsiAnnotationMethod);
79 Assert.assertEquals("intValue", ((PsiAnnotationMethod)resolved).getName());
81 ((PsiAnnotationMethod)resolved).getContainingClass().getQualifiedName())
97 PsiElement resolved = reference.resolve(); local
    [all...]
  /external/apache-http/src/org/apache/http/client/utils/
URIUtils.java 199 URI resolved = baseURI.resolve(reference); local
201 String resolvedString = resolved.toString();
202 resolved = URI.create(resolvedString.substring(0,
205 return resolved;
  /libcore/luni/src/test/java/libcore/java/net/
OldAndroidURITest.java 46 URI resolved = b.resolve(uri); local
47 assertEquals(expected, resolved.toString());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAConfiguration.java 59 /** Indicate that this configuration has been resolved and no further
62 * such as (s|2) and (s|3), I can set (s|3) to resolved=true (and any
65 protected boolean resolved; field in class:NFAConfiguration
72 * nondeterministic configurations (as it does for "resolved" field)
144 if ( resolved ) {
145 buf.append("|resolved");
  /external/elfutils/libdwfl/
dwfl_module_getsym.c 35 bool *resolved, bool adjust_st_value)
123 *resolved = false;
138 *resolved = ebl_resolve_sym_value (mod->ebl, &st_value);
139 if (! *resolved)
173 *resolved ? mod->main.elf : elf,
202 bool resolved; local
204 &resolved, false);
212 bool resolved; local
214 &resolved, true);
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)
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliClassType.java 61 PsiElement resolved = reference.resolve(); local
62 if (resolved instanceof PsiClass) {
63 return (PsiClass)resolved;
70 PsiClass resolved = resolve(); local
71 if (resolved != null) {
72 return NameUtils.shortNameFromQualifiedName(resolved.getQualifiedName());
  /packages/apps/Settings/src/com/android/settings/applications/appinfo/
TimeSpentInAppPreferenceController.java 60 final List<ResolveInfo> resolved = mPackageManager.queryIntentActivities(mIntent, local
62 if (resolved == null || resolved.isEmpty()) {
65 for (ResolveInfo info : resolved) {
  /external/annotation-tools/asmx/src/org/objectweb/asm/
Label.java 48 boolean resolved; field in class:Label
141 * @throws IllegalStateException if this label is not resolved yet.
144 if (!resolved) {
145 throw new IllegalStateException("Label offset position has not been resolved yet");
171 if (resolved) {
190 * for a true forward reference, i.e. only if this label is not resolved
236 * @throws IllegalArgumentException if this label has already been resolved,
245 this.resolved = true;
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/
JavaSymbolSolver.java 53 ResolvedReferenceTypeDeclaration resolved = JavaParserFactory.toTypeDeclaration(node, typeSolver); local
54 if (resultClass.isInstance(resolved)) {
55 return resultClass.cast(resolved);
59 ResolvedReferenceTypeDeclaration resolved = JavaParserFactory.toTypeDeclaration(node, typeSolver); local
60 if (resultClass.isInstance(resolved)) {
61 return resultClass.cast(resolved);
66 ResolvedEnumConstantDeclaration resolved = enumDeclaration.getEnumConstants().stream().filter(c -> ((JavaParserEnumConstantDeclaration)c).getWrappedNode() == node).findFirst().get(); local
67 if (resultClass.isInstance(resolved)) {
68 return resultClass.cast(resolved);
75 ResolvedConstructorDeclaration resolved = resolvedClass.getConstructors().stream().filter(c -> ((JavaParserConstructorDeclaration)c).getW (…) local
81 ResolvedReferenceTypeDeclaration resolved = JavaParserFactory.toTypeDeclaration(node, typeSolver); local
88 ResolvedAnnotationMemberDeclaration resolved = annotationDeclaration.getAnnotationMembers().stream().filter(c -> ((JavaParserAnnotationMemberDeclaration)c).getWrappedNode() == node).findFirst().get(); local
98 ResolvedFieldDeclaration resolved = new JavaParserFieldDeclaration(fieldDeclaration.getVariable(0), typeSolver); local
104 ResolvedFieldDeclaration resolved = new JavaParserFieldDeclaration((VariableDeclarator)node, typeSolver); local
    [all...]
  /external/libxkbcommon/xkbcommon/src/compose/
paths.c 171 char *resolved; local
188 resolved = resolve_name("compose.dir", RIGHT_TO_LEFT, locale);
189 if (!resolved)
192 if (resolved[0] == '/') {
193 path = resolved;
197 ret = asprintf(&path, "%s/%s", xlocaledir, resolved);
198 free(resolved);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Node.java 42 protected boolean resolved; field in class:Node
51 this.resolved = true;
161 * @return <code>true</code> if the tag of this node was resolved</code>
164 return resolved;
  /system/core/adb/
adb_listeners.cpp 209 int resolved = 0; local
210 listener->fd = socket_spec_listen(listener->local_name, error, &resolved);
215 // If the caller requested port 0, update the listener name with the resolved port.
216 if (resolved != 0) {
217 listener->local_name = android::base::StringPrintf("tcp:%d", resolved);
219 *resolved_tcp_port = resolved;
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;
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
AbstractInjectorGrapher.java 178 Map<NodeId, NodeId> resolved = Maps.newHashMap(); local
184 if (resolved.containsKey(to)) {
185 to = resolved.get(to);
187 resolved.put(from, to);
196 resolved.remove(id);
198 resolved.put(id, to);
204 return resolved;
  /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...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
MarshalHashtable.java 107 Object resolved = resolvedIndex == 0 ? getProperty(0) : getProperty(1); local
109 h.put(value, resolved);
111 h.put(resolved, value);
  /external/syslinux/gpxe/src/core/
uri.c 295 * @ret resolved_uri Resolved path
309 char *resolved; local
344 if ( asprintf ( &resolved, "%s%s%s", base_tmp,
349 return resolved;
357 * @ret resolved_uri Resolved URI
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
PreviewInflater.java 130 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent, local
133 if (wouldLaunchResolverActivity(resolved, appList)) {
136 if (resolved == null || resolved.activityInfo == null) {
139 return getWidgetInfoFromMetaData(resolved.activityInfo.packageName,
140 resolved.activityInfo.metaData);
154 * {@code null} if it resolved to the resolver activity
169 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent, local
171 if (resolved == null || wouldLaunchResolverActivity(resolved, appList))
    [all...]
  /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;
SourceFiles.java 76 * pass two providers. Naively (if we just referenced by resolved BindingKey),
87 BindingKey resolved = dependency.bindingKey(); local
93 BindingKey.create(resolved.kind(), resolved.key().withType(types, unresolvedType));
  /external/javassist/src/main/javassist/bytecode/analysis/
MultiType.java 28 * is to reduce the set of possible types down to a single resolved type. This
50 private Type resolved; field in class:MultiType
70 if (resolved != null)
71 return resolved.getCtClass();
111 if (resolved != null)
112 return type.isAssignableFrom(resolved);
123 // Update previous merge paths to the same resolved type
124 resolved = Type.get((CtClass)map.values().iterator().next());
139 resolved = potentialClass;
160 source.resolved = resolved
    [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/webrtc/webrtc/p2p/base/
stunport.cc 376 rtc::SocketAddress resolved; local
378 !resolver_->GetResolvedAddress(input, ip().family(), &resolved)) {
387 if (server_addresses_.find(resolved) == server_addresses_.end()) {
388 server_addresses_.insert(resolved);
389 SendStunBindingRequest(resolved);

Completed in 507 milliseconds

1 2 3 4 5 6 7 8 91011>>