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

1 2 3 4 5

  /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 {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
ArraySerializer.java 50 Class nextClass = array.getClass().getComponentType();
53 nextClass = nextClass.getComponentType();
83 while (elementClass.getComponentType() != null)
84 elementClass = elementClass.getComponentType();
105 while (elementClass.getComponentType() != null) {
106 elementClass = elementClass.getComponentType();
  /external/dexmaker/src/dx/java/com/android/dx/cf/code/
Merger.java 59 mergeType(type1.getComponentType(),
60 type2.getComponentType());
  /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/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsMoreEmptyValues.java 70 Class<?> componenetType = type.getComponentType();
  /libcore/libart/src/main/java/sun/misc/
Unsafe.java 80 Class<?> component = clazz.getComponentType();
99 Class<?> component = clazz.getComponentType();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 49 public static Type getComponentType( this Type type )
  /external/guava/guava/src/com/google/common/collect/
Platform.java 76 Class<?> type = reference.getClass().getComponentType();
79 // result.getClass() == reference.getClass().getComponentType()
  /external/mockito/src/org/mockito/internal/stubbing/answers/
ReturnsArgumentAt.java 108 return parameterTypes[varargPosition].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();
  /libcore/luni/src/main/java/libcore/reflect/
InternalNames.java 64 return '[' + getInternalName(c.getComponentType());
Types.java 69 return "[" + getSignature(clazz.getComponentType());
102 c = c.getComponentType();
  /libcore/libdvm/src/main/java/java/lang/reflect/
AccessibleObject.java 163 result = "[" + getSignature(clazz.getComponentType());
240 c = c.getComponentType();
  /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();
  /external/junit/src/org/junit/experimental/theories/
ParameterSignature.java 56 return type.isArray() && canAcceptType(type.getComponentType());
  /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/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowWranglerTest.java 116 assertEquals(Object.class, objArrayClass.getComponentType());
120 assertEquals(Integer.TYPE, intArrayClass.getComponentType());
  /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);

Completed in 767 milliseconds

1 2 3 4 5