/external/dagger2/java/dagger/model/ |
D | DependencyRequest.java | 55 public abstract boolean isNullable(); in isNullable() method in DependencyRequest 59 return new AutoValue_DependencyRequest.Builder().isNullable(false); in builder() 72 public abstract Builder isNullable(boolean isNullable); in isNullable() argument
|
D | Binding.java | 81 boolean isNullable(); in isNullable() method
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | NullPointerTester.java | 383 args[i] != null || isNullable(param)); in buildParamList() 472 return param.getType().getRawType().isPrimitive() || isNullable(param); 478 static boolean isNullable(Invokable<?, ?> invokable) { 479 return isNullable(invokable.getAnnotatedReturnType().getAnnotations()) 480 || isNullable(invokable.getAnnotations()); 483 static boolean isNullable(Parameter param) { 484 return isNullable(param.getAnnotatedType().getAnnotations()) 485 || isNullable(param.getAnnotations()); 488 private static boolean isNullable(Annotation[] annotations) {
|
D | DummyProxy.java | 20 import static com.google.common.testing.NullPointerTester.isNullable; 77 if (!isNullable(param)) { in handleInvocation()
|
D | ClassSanityTester.java | 22 import static com.google.common.testing.NullPointerTester.isNullable; 667 if (isNullable(param)) { in generateDummyArg() 721 if (isNullable(param)) { in getDummyArguments() 766 factory + " returns null but it's not annotated with @Nullable", isNullable(factory)); in invoke()
|
/external/dagger2/java/dagger/internal/codegen/writing/ |
D | MethodBindingExpression.java | 212 if (isNullable()) { in implementation() 234 if (isNullable()) { in createField() 244 if (isNullable()) { in fieldType() 253 private boolean isNullable() { in isNullable() method in MethodBindingExpression.SingleCheckedMethodImplementation 254 return request.isRequestKind(RequestKind.INSTANCE) && binding.isNullable(); in isNullable()
|
/external/dagger2/java/dagger/internal/codegen/bindinggraphvalidation/ |
D | NullableBindingValidator.java | 67 .filter(binding -> binding.isNullable()) in nullableBindings() 75 .filter(edge -> !edge.dependencyRequest().isNullable()) in nonNullableDependencies()
|
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | BindingNode.java | 120 public boolean isNullable() { in isNullable() method in BindingNode 121 return delegate().isNullable(); in isNullable()
|
D | DependencyRequestFactory.java | 216 .isNullable( in forSyntheticPresentOptionalBinding() 228 .isNullable(allowsNull(requestKind, getNullableType(requestElement))) in newDependencyRequest()
|
D | MembersInjectionBinding.java | 68 public boolean isNullable() { in isNullable() method in MembersInjectionBinding
|
D | Binding.java | 68 public abstract boolean isNullable(); in isNullable() method in Binding
|
D | ContributionBinding.java | 74 public final boolean isNullable() { in isNullable() method in ContributionBinding
|
D | ComponentCreatorDescriptor.java | 216 request.key(), request.isNullable(), variableName); in requirement()
|
/external/guava/android/guava-testlib/src/com/google/common/testing/ |
D | DummyProxy.java | 20 import static com.google.common.testing.NullPointerTester.isNullable; 77 if (!isNullable(param)) { in handleInvocation()
|
D | NullPointerTester.java | 384 args[i] != null || isNullable(param)); in buildParamList() 473 return param.getType().getRawType().isPrimitive() || isNullable(param); 479 static boolean isNullable(AnnotatedElement e) {
|
D | ClassSanityTester.java | 22 import static com.google.common.testing.NullPointerTester.isNullable; 670 if (isNullable(param)) { in generateDummyArg() 724 if (isNullable(param)) { in getDummyArguments() 770 factory + " returns null but it's not annotated with @Nullable", isNullable(factory)); in invoke()
|
/external/auto/factory/src/main/java/com/google/auto/factory/processor/ |
D | Parameter.java | 78 if (isNullable(annotation)) { in forVariableElement() 92 private static boolean isNullable(AnnotationMirror annotation) { in isNullable() method in Parameter
|
/external/guice/core/test/com/google/inject/spi/ |
D | InjectionPointTest.java | 81 assertFalse(dependency.isNullable()); in testFieldInjectionPoint() 110 assertFalse(dependency.isNullable()); in testMethodInjectionPoint() 140 assertFalse(dependency.isNullable()); in testConstructorInjectionPoint() 156 assertTrue(dependency.isNullable()); in testUnattachedDependency()
|
/external/guice/core/src/com/google/inject/internal/ |
D | InternalFactoryToProviderAdapter.java | 40 if (t == null && !dependency.isNullable()) { in get()
|
D | ProviderInternalFactory.java | 86 if (t == null && !dependency.isNullable()) {
|
/external/guice/core/src/com/google/inject/spi/ |
D | Dependency.java | 75 public boolean isNullable() { in isNullable() method in Dependency
|
/external/auto/value/src/main/java/com/google/auto/value/processor/ |
D | PropertyBuilderClassifier.java | 219 if (isNullable(barGetter)) { in makePropertyBuilder() 403 private static boolean isNullable(ExecutableElement getter) { in isNullable() method
|
D | AutoValueOrOneOfProcessor.java | 256 public boolean isNullable() { in isNullable() method in AutoValueOrOneOfProcessor.Property 405 if (p.isNullable() && returnType.getKind().isPrimitive()) { in propertySet() 570 if (isNullable(annotations.get(i))) { in nullableAnnotationIndex() 577 private static boolean isNullable(AnnotationMirror annotation) { in isNullable() method in AutoValueOrOneOfProcessor
|
D | BuilderSpec.java | 306 if (property.isNullable() in defineVars() 457 if (property.isNullable() && !copier.acceptsNull) { in copy()
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCResultSetMetaData.java | 172 public int isNullable(int column) throws java.sql.SQLException { in isNullable() method in JDBCResultSetMetaData
|