OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allowsnull
(Results
1 - 3
of
3
) sorted by null
/external/guice/core/src/com/google/inject/internal/
Nullability.java
39
public static boolean
allowsNull
(Annotation[] annotations) {
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DependencyRequest.java
314
boolean
allowsNull
= !kindAndType.kind().equals(Kind.INSTANCE)
321
allowsNull
,
/external/guice/core/src/com/google/inject/spi/
InjectionPoint.java
103
newDependency(key, Nullability.
allowsNull
(annotations), -1));
118
dependencies.add(newDependency(key, Nullability.
allowsNull
(parameterAnnotations), index));
132
private <T> Dependency<T> newDependency(Key<T> key, boolean
allowsNull
, int parameterIndex) {
133
return new Dependency<T>(this, key,
allowsNull
, parameterIndex);
Completed in 160 milliseconds