Home
last modified time | relevance | path

Searched defs:requestKind (Results 1 – 13 of 13) sorted by relevance

/external/dagger2/java/dagger/internal/codegen/binding/
DFrameworkType.java40 public CodeBlock to(RequestKind requestKind, CodeBlock from) { in to()
72 public Expression to(RequestKind requestKind, Expression from, DaggerTypes types) { in to()
100 public CodeBlock to(RequestKind requestKind, CodeBlock from) { in to()
115 public Expression to(RequestKind requestKind, Expression from, DaggerTypes types) { in to()
145 public static Optional<FrameworkType> forRequestKind(RequestKind requestKind) { in forRequestKind()
174 public RequestKind requestKind() { in requestKind() method in FrameworkType
194 public abstract CodeBlock to(RequestKind requestKind, CodeBlock from); in to()
206 public abstract Expression to(RequestKind requestKind, Expression from, DaggerTypes types); in to()
DFrameworkTypeMapper.java32 public FrameworkType getFrameworkType(RequestKind requestKind) { in FOR_PROVIDER()
49 public FrameworkType getFrameworkType(RequestKind requestKind) { in FOR_PRODUCER()
69 public abstract FrameworkType getFrameworkType(RequestKind requestKind); in getFrameworkType()
DBindingRequest.java47 public static BindingRequest bindingRequest(Key key, RequestKind requestKind) { in bindingRequest()
73 public abstract RequestKind requestKind(); in requestKind() method in BindingRequest
79 public final boolean isRequestKind(RequestKind requestKind) { in isRequestKind()
DDependencyRequestFactory.java256 RequestKind requestKind = getRequestKind(type); in newDependencyRequest() local
DBindingFactory.java471 RequestKind requestKind, in syntheticOptionalBinding()
/external/dagger2/java/dagger/internal/codegen/base/
DRequestKinds.java52 RequestKind requestKind, TypeMirror type, DaggerTypes types) { in requestType()
69 public static TypeName requestTypeName(RequestKind requestKind, TypeName keyType) { in requestTypeName()
143 private static XType extractKeyType(RequestKind requestKind, XType type) { in extractKeyType()
167 private static TypeMirror extractKeyType(RequestKind requestKind, TypeMirror type) { in extractKeyType()
191 public static ClassName frameworkClassName(RequestKind requestKind) { in frameworkClassName()
193 FRAMEWORK_CLASSES.containsKey(requestKind), "no framework class for %s", requestKind); in frameworkClassName() local
201 public static boolean canBeSatisfiedByProductionBinding(RequestKind requestKind) { in canBeSatisfiedByProductionBinding()
/external/dagger2/java/dagger/internal/codegen/writing/
DExperimentalSwitchingProviderDependencyRepresentation.java71 Expression getDependencyExpression(RequestKind requestKind, ProvisionBinding requestingBinding) { in getDependencyExpression()
106 private boolean usesExplicitTypeCast(Expression expression, RequestKind requestKind) { in usesExplicitTypeCast()
113 private boolean usesErasedTypeCast(RequestKind requestKind) { in usesErasedTypeCast()
DDerivedFromFrameworkInstanceRequestRepresentation.java40 private final RequestKind requestKind; field in DerivedFromFrameworkInstanceRequestRepresentation
49 @Assisted RequestKind requestKind, in DerivedFromFrameworkInstanceRequestRepresentation()
98 RequestKind requestKind, in create()
DDelegateRequestRepresentation.java46 private final RequestKind requestKind; field in DelegateRequestRepresentation
54 @Assisted RequestKind requestKind, in DelegateRequestRepresentation()
153 DelegateRequestRepresentation create(ContributionBinding binding, RequestKind requestKind); in create()
DProvisionBindingRepresentation.java85 private boolean usesDirectInstanceExpression(RequestKind requestKind) { in usesDirectInstanceExpression()
/external/dagger2/java/dagger/internal/codegen/bindinggraphvalidation/
DDependencyCycleValidator.java225 RequestKind requestKind = getRequestKind(optionalValueType); in breaksCycle() local
231 private boolean breaksCycle(XType requestedType, RequestKind requestKind) { in breaksCycle()
/external/dagger2/java/dagger/internal/codegen/validation/
DDependencyRequestValidator.java153 RequestKind requestKind = RequestKinds.getRequestKind(requestType); in checkType() local
DExternalBindingGraphConverter.java141 private static RequestKind fromSpiModel(dagger.spi.model.RequestKind requestKind) { in fromSpiModel()