HomeSort by relevance Sort by last modified time
    Searched refs:getComponentType (Results 1 - 25 of 65) 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);
  /external/javassist/src/main/javassist/
CtArray.java 43 mod |= getComponentType().getModifiers()
77 && getComponentType().subtypeOf(clazz.getComponentType());
80 public CtClass getComponentType() throws NotFoundException {
  /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();
Simulator.java 168 && foundArrayType.getComponentType().isReference()) {
320 type = requiredArrayType.getComponentType();
378 type = requiredArrayType.getComponentType();
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsMoreEmptyValues.java 70 Class<?> componenetType = type.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();
  /external/chromium_org/third_party/angle/src/libGLESv2/
FramebufferAttachment.h 49 GLenum getComponentType() const;
FramebufferAttachment.cpp 64 GLenum FramebufferAttachment::getComponentType() const
  /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());
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
ParallelSorterEmitter.java 74 Type component = TypeUtils.getComponentType(type);
  /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/guava/guava-tests/test/com/google/common/collect/
ForwardingTestCase.java 117 return Array.newInstance(returnType.getComponentType(), 0);
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 166 Object newArray = Array.newInstance(array.getClass().getComponentType(), length);
  /external/mockito/src/org/mockito/internal/util/collections/
HashCodeAndEqualsSafeSet.java 111 (T[]) newInstance(typedArray.getClass().getComponentType(), size());
  /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 514 return getComponentType().toHuman() + "[]";
714 * {@code true}, then it is safe to use {@link #getComponentType}
792 public Type getComponentType() {
  /external/dexmaker/src/dx/java/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() {
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
TypeUtils.java 100 return getClassName(getComponentType(type)) + "[]";
292 public static Type getComponentType(Type type) {

Completed in 1052 milliseconds

1 2 3