HomeSort by relevance Sort by last modified time
    Searched refs:getTypeParameters (Results 1 - 25 of 35) sorted by null

1 2

  /dalvik/libcore/luni/src/main/java/java/lang/reflect/
GenericDeclaration.java 34 TypeVariable<?>[] getTypeParameters();
  /cts/tools/signature-tools/src/signature/model/
IGenericDeclaration.java 32 List<ITypeVariableDefinition> getTypeParameters();
  /cts/tools/signature-tools/src/signature/model/impl/
SigConstructor.java 39 if (getTypeParameters() != null && !getTypeParameters().isEmpty()) {
41 builder.append(ModelUtil.separate(getTypeParameters(), ", "));
SigMethod.java 55 if (method.getTypeParameters() != null
56 && !method.getTypeParameters().isEmpty()) {
60 .separate(method.getTypeParameters(), ", "));
SigClassDefinition.java 165 public List<ITypeVariableDefinition> getTypeParameters() {
223 if (type.getTypeParameters() != null
224 && (!type.getTypeParameters().isEmpty())) {
226 ModelUtil.separate(type.getTypeParameters(), ", ");
SigExecutableMember.java 74 public List<ITypeVariableDefinition> getTypeParameters() {
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ExecutableMemberProjection.java 72 public List<ITypeVariableDefinition> getTypeParameters() {
74 return original.getTypeParameters();
ClassProjection.java 155 public List<ITypeVariableDefinition> getTypeParameters() {
156 return original.getTypeParameters();
ViewpointAdapter.java 45 parameterizedTypeDefinition.getTypeParameters();
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericReflectionTestsBase.java 34 TypeVariable<Method>[] typeParameters = method.getTypeParameters();
49 TypeVariable[] typeParameters = clazz.getTypeParameters();
TypeVariableTest.java 45 TypeVariable[] typeParameters = clazz.getTypeParameters();
67 TypeVariable<Method>[] typeParameters = method.getTypeParameters();
103 TypeVariable<?>[] typeParameters = constructor.getTypeParameters();
122 TypeVariable<?>[] typeParameters = clazz.getTypeParameters();
148 TypeVariable<?>[] typeParameters = method.getTypeParameters();
173 TypeVariable<?>[] typeParameters = constructor.getTypeParameters();
195 TypeVariable[] typeParameters = clazz.getTypeParameters();
211 TypeVariable[] typeParameters = clazz.getTypeParameters();
GenericMethodsTests.java 56 method = "getTypeParameters",
60 assertLenghtZero(clazz.getTypeParameters());
101 method = "getTypeParameters",
113 method = "getTypeParameters",
159 method = "getTypeParameters",
184 method = "getTypeParameters",
189 TypeVariable<Method> typeParameter0 = method0.getTypeParameters()[0];
192 TypeVariable<Method> typeParameter1 = method1.getTypeParameters()[0];
GenericArrayTypeTest.java 80 assertEquals(clazz.getTypeParameters()[0], parameteriezdType.getActualTypeArguments()[0]);
GenericReflectionCornerCases.java 48 method = "getTypeParameters",
63 TypeVariable<?>[] typeParameters = clazz.getTypeParameters();
105 method = "getTypeParameters",
120 TypeVariable<?>[] typeParameters = clazz.getTypeParameters();
161 method = "getTypeParameters",
180 TypeVariable<?>[] typeParameters = clazz.getTypeParameters();
231 method = "getTypeParameters",
247 TypeVariable<?>[] typeParameters = clazz.getTypeParameters();
GenericSignatureFormatErrorTest.java 102 TypeVariable[] tvs = clazz.getTypeParameters();
BoundedGenericMethodsTests.java 113 method = "getTypeParameters",
117 assertLenghtOne(clazz.getTypeParameters());
122 method = "getTypeParameters",
132 method = "getTypeParameters",
143 method = "getTypeParameters",
155 method = "getTypeParameters",
WildcardTypeTest.java 58 // methodName = "getTypeParameters",
66 method = "getTypeParameters",
70 assertLenghtOne(clazz.getTypeParameters());
GenericTypesTest.java 141 TypeVariable<?>[] typeParameters = clazz.getTypeParameters();
177 method = "getTypeParameters",
184 TypeVariable<?>[] typeParameters = clazz.getTypeParameters();
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 156 assertEquals(1, sigClass.getTypeParameters().size());
157 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0);
175 assertEquals(1, sigClass.getTypeParameters().size());
176 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0);
194 assertEquals(2, sigClass.getTypeParameters().size());
195 ITypeVariableDefinition variableS = sigClass.getTypeParameters().get(0);
202 ITypeVariableDefinition variableT = sigClass.getTypeParameters().get(1);
220 assertEquals(2, sigClass.getTypeParameters().size());
221 ITypeVariableDefinition variableS = sigClass.getTypeParameters().get(0);
228 ITypeVariableDefinition variableT = sigClass.getTypeParameters().get(1)
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForVariable.java 76 TypeVariable[] formalVars = layer.getTypeParameters();
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 339 if (!Uninitialized.isInitialized(declaration.getTypeParameters())) {
345 .getTypeParameters()) {
  /cts/tools/signature-tools/src/signature/model/util/
TypePool.java 201 if (!isInitialized(clazz.getTypeParameters())) {
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
Constructor.java 125 public TypeVariable<Constructor<T>>[] getTypeParameters() {
Method.java 109 public TypeVariable<Method>[] getTypeParameters() {
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 220 compareTypeVariableSequence(from.getTypeParameters(),
221 to.getTypeParameters());
702 compareTypeVariableSequence(from.getTypeParameters(),
703 to.getTypeParameters());
    [all...]

Completed in 1116 milliseconds

1 2