Searched refs:allowsNull (Results 1 – 4 of 4) sorted by relevance
/external/guice/extensions/testlib/src/com/google/inject/testing/fieldbinder/ |
D | BoundFieldModule.java | 225 boolean allowsNull() { in allowsNull() method in BoundFieldModule.BoundFieldInfo 227 && Nullability.allowsNull(field.getAnnotations()); in allowsNull() 360 if (fieldValue == null && !fieldInfo.allowsNull()) { in getFieldValue()
|
/external/guice/core/src/com/google/inject/internal/ |
D | Nullability.java | 38 public static boolean allowsNull(Annotation[] annotations) { in allowsNull() method in Nullability
|
/external/guice/core/src/com/google/inject/spi/ |
D | InjectionPoint.java | 105 newDependency(key, Nullability.allowsNull(annotations), -1)); in InjectionPoint() 119 dependencies.add(newDependency(key, Nullability.allowsNull(parameterAnnotations), index)); in forMember() 133 private <T> Dependency<T> newDependency(Key<T> key, boolean allowsNull, int parameterIndex) { in newDependency() argument 134 return new Dependency<T>(this, key, allowsNull, parameterIndex); in newDependency()
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | DependencyRequest.java | 314 boolean allowsNull = !kindAndType.kind().equals(Kind.INSTANCE) in newDependencyRequest() 321 allowsNull, in newDependencyRequest()
|