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

1 2 3

  /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);
  /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 57 = (Class<Byte>) byte[].class.getComponentType();
Short.java 59 = (Class<Short>) short[].class.getComponentType();
Class.java 356 String name = getComponentType().getCanonicalName();
451 public native Class<?> getComponentType();
    [all...]
Double.java 103 = (Class<Double>) double[].class.getComponentType();
Float.java 100 = (Class<Float>) float[].class.getComponentType();
Integer.java 80 = (Class<Integer>) int[].class.getComponentType();
Long.java 60 = (Class<Long>) long[].class.getComponentType();
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 110 if (cache == null || cache.getClass().getComponentType() != kind) {
  /cts/tools/signature-tools/src/signature/io/html/
ExecutableMemberComparator.java 84 return getTypeName(((IArrayType) type).getComponentType());
  /libcore/luni/src/main/java/java/util/
AbstractCollection.java 353 Class<?> ct = contents.getClass().getComponentType();
Arrays.java 143 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());
  /libcore/luni/src/main/java/java/lang/reflect/
AccessibleObject.java 223 result = "[" + getSignature(clazz.getComponentType());
315 Class simplified = obj.getComponentType();
Array.java 514 !array.getClass().getComponentType().isInstance(value)) {
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 508 return getComponentType().toHuman() + "[]";
708 * {@code true}, then it is safe to use {@link #getComponentType}
786 public Type getComponentType() {
  /packages/apps/Gallery3D/src/com/cooliris/media/
LongSparseArray.java 430 if (cache == null || cache.getClass().getComponentType() != kind) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
CompiledResourcesMonitor.java 198 if (type.isArray() && type.getComponentType() == int.class) {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 833 * @tests java.lang.Class#getComponentType()
838 method = "getComponentType",
843 .getComponentType());
845 Object[].class.getComponentType());
846 assertNull("Object has non-null component type", Object.class.getComponentType());
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java     [all...]

Completed in 737 milliseconds

1 2 3