/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() method in DependencyRequest.Builder
|
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/ |
D | MethodBindingExpression.java | 238 if (isNullable()) { in implementation() 263 if (isNullable()) { in createField() 273 if (isNullable()) { in fieldType() 282 private boolean isNullable() { in isNullable() method in MethodBindingExpression.SingleCheckedMethodImplementation 283 return request.isRequestKind(RequestKind.INSTANCE) && binding.isNullable(); in isNullable()
|
D | NullableBindingValidator.java | 66 .filter(binding -> binding.isNullable()) in nullableBindings() 74 .filter(edge -> !edge.dependencyRequest().isNullable()) in nonNullableDependencies()
|
D | BindingNode.java | 119 public boolean isNullable() { in isNullable() method in BindingNode 120 return delegate().isNullable(); in isNullable()
|
D | DependencyRequestFactory.java | 212 .isNullable( in forSyntheticPresentOptionalBinding() 224 .isNullable(allowsNull(requestKind, getNullableType(requestElement))) in newDependencyRequest()
|
D | MembersInjectionBinding.java | 70 public boolean isNullable() { in isNullable() method in MembersInjectionBinding
|
D | ContributionBinding.java | 79 public final boolean isNullable() { in isNullable() method in ContributionBinding
|
D | ComponentCreatorDescriptor.java | 215 request.key(), request.isNullable(), variableName); in requirement()
|
D | Binding.java | 78 abstract boolean isNullable(); in isNullable() method in Binding
|
/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/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()) {
|
D | ProviderMethod.java | 174 if (t == null && !dependency.isNullable()) { in doProvision()
|
/external/guice/core/src/com/google/inject/spi/ |
D | Dependency.java | 75 public boolean isNullable() { in isNullable() method in Dependency
|
/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
|
/external/skia/src/sksl/ |
D | SkSLASTNode.h | 189 TypeData(StringFragment name, bool isStructDeclaration, bool isNullable) in TypeData() 192 , fIsNullable(isNullable) {} in TypeData()
|
/external/libchrome/mojo/public/js/lib/ |
D | validator.js | 101 function isNullable(type) { function 530 var nullable = isNullable(elementType);
|