Searched refs:requestKey (Results 1 – 4 of 4) sorted by relevance
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | BindingGraphFactory.java | 374 ResolvedBindings lookUpBindings(Key requestKey) { in lookUpBindings() argument 382 ImmutableSet<Key> keysMatchingRequest = keysMatchingRequest(requestKey); in lookUpBindings() 384 bindings.addAll(resolver.getLocalExplicitBindings(requestKey)); in lookUpBindings() 399 bindings.add(bindingFactory.syntheticMultibinding(requestKey, multibindingContributions)); in lookUpBindings() 406 requestKey, in lookUpBindings() 407 getRequestKind(OptionalType.from(requestKey).valueType()), in lookUpBindings() 408 lookUpBindings(keyFactory.unwrapOptional(requestKey).get()).bindings())); in lookUpBindings() 421 if (isType(requestKey.type().java()) in lookUpBindings() 422 && isTypeOf(MembersInjector.class, requestKey.type().java())) { in lookUpBindings() 424 .getOrFindMembersInjectorProvisionBinding(requestKey) in lookUpBindings() [all …]
|
D | DependencyRequestFactory.java | 237 DependencyRequest forSyntheticPresentOptionalBinding(Key requestKey, RequestKind kind) { in forSyntheticPresentOptionalBinding() argument 238 Optional<Key> key = keyFactory.unwrapOptional(requestKey); in forSyntheticPresentOptionalBinding() 239 checkArgument(key.isPresent(), "not a request for optional: %s", requestKey); in forSyntheticPresentOptionalBinding() local 244 allowsNull(getRequestKind(OptionalType.from(requestKey).valueType()), Optional.empty())) in forSyntheticPresentOptionalBinding()
|
D | KeyFactory.java | 362 ImmutableSet<Key> implicitFrameworkMapKeys(Key requestKey) { in implicitFrameworkMapKeys() argument 363 return Stream.of(implicitMapProviderKeyFrom(requestKey), implicitMapProducerKeyFrom(requestKey)) in implicitFrameworkMapKeys()
|
/external/grpc-grpc-java/examples/android/clientcache/app/src/main/java/io/grpc/clientcacheexample/ |
D | SafeMethodCachingInterceptor.java | 176 private Key requestKey; 231 internalCache.put(requestKey, value); 268 requestKey = new Key(fullMethodName, (MessageLite) message); 269 Value cachedResponse = internalCache.get(requestKey); 272 internalCache.remove(requestKey);
|