Searched refs:bounds (Results 1 - 6 of 6) sorted by relevance

/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DTypeVariableTest.java50 Type[] bounds = typeVariable.getBounds();
51 assertLenghtOne(bounds);
52 assertEquals(Object.class, bounds[0]);
72 Type[] bounds = typeVariable.getBounds();
73 assertLenghtOne(bounds);
74 assertEquals(Object.class, bounds[0]);
108 Type[] bounds = typeVariable.getBounds();
109 assertLenghtOne(bounds);
110 assertEquals(Object.class, bounds[0]);
197 Type[] bounds
[all...]
H A DBoundedGenericMethodsTests.java61 Type[] bounds = typeParameter.getBounds();
62 assertLenghtOne(bounds);
63 Type bound = bounds[0];
98 Type[] bounds = returnTypeVariable.getBounds();
99 assertLenghtOne(bounds);
100 Type bound = bounds[0];
H A DWildcardTypeTest.java83 Type[] bounds = typeParameter.getBounds();
84 assertLenghtOne(bounds);
85 Type bound = bounds[0];
138 Type[] bounds = returnTypeVariable.getBounds();
139 assertLenghtOne(bounds);
140 Type bound = bounds[0];
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DImplForVariable.java32 private ListOfTypes bounds; field in class:ImplForVariable
54 * @param bounds class and interface bounds
57 ImplForVariable(D genericDecl, String name, ListOfTypes bounds) { argument
60 this.bounds = bounds;
124 this.bounds = formalVar.bounds;
130 return bounds.getResolvedTypes().clone();
H A DGenericSignatureParser.java252 ListOfTypes bounds = new ListOfTypes(8);
257 bounds.add(parseFieldTypeSignature());
263 bounds.add(parseFieldTypeSignature());
266 return new ImplForVariable<GenericDeclaration>(genericDecl, name, bounds);
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONTokener.java517 throw syntaxError(length + " is out of bounds");

Completed in 97 milliseconds