HomeSort by relevance Sort by last modified time
    Searched defs:genericDeclaration (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionTypeParameter.java 26 import java.lang.reflect.GenericDeclaration;
44 GenericDeclaration genericDeclaration = typeVariable.getGenericDeclaration();
45 if (genericDeclaration instanceof Class) {
46 container = ReflectionFactory.typeDeclarationFor((Class) genericDeclaration, typeSolver);
47 } else if (genericDeclaration instanceof Method) {
48 container = new ReflectionMethodDeclaration((Method) genericDeclaration, typeSolver);
49 } else if (genericDeclaration instanceof Constructor) {
50 container = new ReflectionConstructorDeclaration((Constructor) genericDeclaration, typeSolver);
  /libcore/luni/src/main/java/libcore/reflect/
TypeVariableImpl.java 21 import java.lang.reflect.GenericDeclaration;
27 public final class TypeVariableImpl<D extends GenericDeclaration> implements TypeVariable<D> {
29 private final GenericDeclaration declOfVarUser;
31 private D genericDeclaration;
56 this.genericDeclaration = genericDecl;
72 static TypeVariable findFormalVar(GenericDeclaration layer, String name) {
83 private static GenericDeclaration nextLayer(GenericDeclaration decl) {
88 decl = (GenericDeclaration) m != null ? m : cl.getEnclosingConstructor();
106 GenericDeclaration curLayer = declOfVarUser
    [all...]
  /external/guice/core/src/com/google/inject/internal/
MoreTypes.java 33 import java.lang.reflect.GenericDeclaration;
349 GenericDeclaration genericDeclaration = typeVariable.getGenericDeclaration();
350 return genericDeclaration instanceof Class
351 ? (Class<?>) genericDeclaration
  /external/guava/guava/src/com/google/common/reflect/
Types.java 36 import java.lang.reflect.GenericDeclaration;
154 static <D extends GenericDeclaration> TypeVariable<D> newArtificialTypeVariable(
324 private static <D extends GenericDeclaration> TypeVariable<D> newTypeVariableImpl(
325 D genericDeclaration, String name, Type[] bounds) {
327 new TypeVariableImpl<D>(genericDeclaration, name, bounds);
393 private static final class TypeVariableImpl<D extends GenericDeclaration> {
395 private final D genericDeclaration;
399 TypeVariableImpl(D genericDeclaration, String name, Type[] bounds) {
401 this.genericDeclaration = checkNotNull(genericDeclaration);
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/retrofit2/retrofit/2.1.0/
retrofit-2.1.0.jar 
  /external/caliper/lib/
gson-2.2.2.jar 
  /prebuilts/devtools/tools/lib/
gson-2.2.4.jar 
  /prebuilts/gradle-plugin/com/google/code/gson/gson/2.3/
gson-2.3.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
gson-2.8.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.2.4/
gson-2.2.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.3/
gson-2.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.6.2/
gson-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.8.0/
gson-2.8.0.jar 
  /prebuilts/tools/common/offline-m2/com/google/code/gson/gson/2.2.4/
gson-2.2.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.19.0/
google-http-client-1.19.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.22.0/
google-http-client-1.22.0.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/3.1.0/
sisu-guice-3.1.0-no_aop.jar 
sisu-guice-3.1.0.jar 
  /external/testng/lib-supplied/
guice-2.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.2.1/
commons-lang3-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.3/
commons-lang3-3.3.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.3.2/
commons-lang3-3.3.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.4/
commons-lang3-3.4.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar 

Completed in 207 milliseconds

1 2 3 4