/cts/tools/signature-tools/src/signature/model/ |
IArrayType.java | 29 ITypeReference getComponentType();
|
/cts/tools/signature-tools/src/signature/model/impl/ |
SigArrayType.java | 32 public ITypeReference getComponentType() {
42 return type.getComponentType().hashCode();
55 return thiz.getComponentType().equals(other.getComponentType());
65 builder.append(type.getComponentType().toString());
|
/cts/tools/signature-tools/src/signature/compare/model/subst/ |
ArrayTypeProjection.java | 37 public ITypeReference getComponentType() { 39 .getComponentType(), mappings);
|
/external/javassist/src/main/javassist/ |
CtArray.java | 43 mod |= getComponentType().getModifiers() 77 && getComponentType().subtypeOf(clazz.getComponentType()); 80 public CtClass getComponentType() throws NotFoundException {
|
/dalvik/dx/src/com/android/dx/cf/code/ |
Merger.java | 177 mergeType(type1.getComponentType(), 178 type2.getComponentType()); 285 supertype = supertype.getComponentType(); 286 subtype = subtype.getComponentType();
|
/external/guava/src/com/google/common/collect/ |
Platform.java | 100 Class<?> type = reference.getClass().getComponentType(); 103 // result.getClass() == reference.getClass().getComponentType()
|
/libcore/luni/src/main/java/java/lang/ |
Boolean.java | 42 = (Class<Boolean>) boolean[].class.getComponentType();
|
Byte.java | 58 = (Class<Byte>) byte[].class.getComponentType();
|
Short.java | 60 = (Class<Short>) short[].class.getComponentType();
|
Class.java | 334 String name = getComponentType().getCanonicalName(); 415 public native Class<?> getComponentType(); [all...] |
Double.java | 103 = (Class<Double>) double[].class.getComponentType();
|
Float.java | 100 = (Class<Float>) float[].class.getComponentType();
|
/libcore/luni/src/main/java/java/lang/reflect/ |
AccessibleObject.java | 163 result = "[" + getSignature(clazz.getComponentType()); 242 obj = obj.getComponentType();
|
/frameworks/base/core/java/com/android/internal/util/ |
ArrayUtils.java | 110 if (cache == null || cache.getClass().getComponentType() != kind) {
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/ |
ArrayUtils.java | 110 if (cache == null || cache.getClass().getComponentType() != kind) {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ClassTest.java | 218 * @tests java.lang.Class#getComponentType() 222 .getComponentType()); 224 Object[].class.getComponentType()); 225 assertNull("Object has non-null component type", Object.class.getComponentType()); 605 assertSame(c1, a1.getComponentType()); 606 assertSame(a1, a2.getComponentType());
|
/cts/tools/signature-tools/src/signature/io/html/ |
ExecutableMemberComparator.java | 84 return getTypeName(((IArrayType) type).getComponentType());
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
ArrayMemberValue.java | 63 clazz = method.getReturnType().getComponentType();
|
/libcore/luni/src/main/java/java/util/ |
AbstractCollection.java | 352 Class<?> ct = contents.getClass().getComponentType();
|
Arrays.java | 128 Class<?> ct = contents.getClass().getComponentType(); [all...] |
/cts/tools/signature-tools/test/signature/converter/ |
ConvertEnumTest.java | 142 assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassDefinition()); 185 assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassDefinition());
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
SimpleImmutableEntryTest.java | 111 Object array =Array.newInstance((byte[].class).getComponentType(), 10);
|
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/ |
TestDelegates.java | 184 theClass = theClass.getComponentType();
|
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
Type.java | 581 return getComponentType().toHuman() + "[]"; 781 * {@code true}, then it is safe to use {@link #getComponentType} 859 public Type getComponentType() {
|
/dalvik/dx/src/com/android/dx/rop/type/ |
Type.java | 515 return getComponentType().toHuman() + "[]"; 715 * {@code true}, then it is safe to use {@link #getComponentType} 793 public Type getComponentType() {
|