Home
last modified time | relevance | path

Searched refs:ListOfTypes (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
DGenericSignatureParser.java72 public ListOfTypes exceptionTypes;
73 public ListOfTypes parameterTypes;
77 public ListOfTypes interfaceTypes;
134 this.interfaceTypes = ListOfTypes.EMPTY; in parseForClass()
136 this.interfaceTypes = new ListOfTypes(interfaces); in parseForClass()
141 this.interfaceTypes = ListOfTypes.EMPTY; in parseForClass()
163 this.parameterTypes = ListOfTypes.EMPTY; in parseForMethod()
165 this.parameterTypes = new ListOfTypes(parameterTypes); in parseForMethod()
169 this.exceptionTypes = ListOfTypes.EMPTY; in parseForMethod()
171 this.exceptionTypes = new ListOfTypes(exceptionTypes); in parseForMethod()
[all …]
DListOfTypes.java24 public final class ListOfTypes { class
25 public static final ListOfTypes EMPTY = new ListOfTypes(0);
30 ListOfTypes(int capacity) { in ListOfTypes() method in ListOfTypes
34 ListOfTypes(Type[] types) { in ListOfTypes() method in ListOfTypes
DWildcardTypeImpl.java26 private final ListOfTypes extendsBound, superBound;
28 public WildcardTypeImpl(ListOfTypes extendsBound, ListOfTypes superBound) { in WildcardTypeImpl()
DParameterizedTypeImpl.java25 private final ListOfTypes args;
33 ListOfTypes args, ClassLoader loader) { in ParameterizedTypeImpl()
DTypeVariableImpl.java32 private ListOfTypes bounds;
55 TypeVariableImpl(D genericDecl, String name, ListOfTypes bounds) { in TypeVariableImpl()
DTypes.java46 public static Type[] getTypeArray(ListOfTypes types, boolean clone) { in getTypeArray()
/libcore/libart/src/main/java/java/lang/reflect/
DAbstractMethod.java39 import libcore.reflect.ListOfTypes;
236 final ListOfTypes genericExceptionTypes;
237 final ListOfTypes genericParameterTypes;
241 GenericInfo(ListOfTypes exceptions, ListOfTypes parameters, Type ret, in GenericInfo()
/libcore/
Dnon_openjdk_java_files.mk400 luni/src/main/java/libcore/reflect/ListOfTypes.java \