OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:formaltypeparameters
(Results
1 - 10
of
10
) sorted by null
/cts/tools/signature-tools/test/signature/converter/dex/
GenericSignatureParserTest.java
60
assertEquals(1, parser.
formalTypeParameters
.size());
61
assertEquals("T", parser.
formalTypeParameters
.get(0).getName());
63
assertSame(sigClass, parser.
formalTypeParameters
.get(0).getGenericDeclaration());
65
assertEquals(1, parser.
formalTypeParameters
.get(0).getUpperBounds().size());
66
// IType type = parser.
formalTypeParameters
.get(0).getUpperBounds().get(0);
/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
GenericSignatureParser.java
71
public TypeVariable[]
formalTypeParameters
;
128
this.
formalTypeParameters
= ListOfVariables.EMPTY;
132
this.
formalTypeParameters
= ListOfVariables.EMPTY;
154
this.
formalTypeParameters
= ListOfVariables.EMPTY;
159
this.
formalTypeParameters
= ListOfVariables.EMPTY;
182
this.
formalTypeParameters
= ListOfVariables.EMPTY;
186
this.
formalTypeParameters
= ListOfVariables.EMPTY;
243
this.
formalTypeParameters
= typeParams.getArray();
396
// MethodTypeSignature ::= [
FormalTypeParameters
]