HomeSort by relevance Sort by last modified time
    Searched defs:arrayType (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/junit/src/org/junit/runners/model/
NoGenericTypeParametersValidator.java 50 GenericArrayType arrayType, List<Throwable> errors) {
51 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /dalvik/dx/src/com/android/dx/rop/code/
FillArrayDataInsn.java 39 private final Constant arrayType;
61 this.arrayType = cst;
84 return arrayType;
104 initValues, arrayType);
113 sources, initValues, arrayType);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 28 private int arrayType;
40 arrayType = atype;
103 public int getArrayType() { return arrayType; }
  /external/javassist/src/main/javassist/compiler/ast/
NewExpr.java 26 protected int arrayType;
31 arrayType = CLASS;
37 arrayType = type;
56 public int getArrayType() { return arrayType; }
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericArrayTypeTest.java 57 GenericArrayType arrayType = (GenericArrayType) genericType;
58 Type componentType = arrayType.getGenericComponentType();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 42 private final Constant arrayType;
61 Constant arrayType) {
78 this.arrayType = arrayType;
80 if (arrayType == CstType.BYTE_ARRAY ||
81 arrayType == CstType.BOOLEAN_ARRAY) {
83 } else if (arrayType == CstType.SHORT_ARRAY ||
84 arrayType == CstType.CHAR_ARRAY) {
86 } else if (arrayType == CstType.INT_ARRAY ||
87 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 44 private final Constant arrayType;
63 Constant arrayType) {
80 this.arrayType = arrayType;
82 if (arrayType == CstType.BYTE_ARRAY ||
83 arrayType == CstType.BOOLEAN_ARRAY) {
85 } else if (arrayType == CstType.SHORT_ARRAY ||
86 arrayType == CstType.CHAR_ARRAY) {
88 } else if (arrayType == CstType.INT_ARRAY ||
89 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkMemberInfo.h 45 SkDisplayTypes arrayType() const {
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
ArrayData.java 42 private final Constant arrayType;
61 Constant arrayType) {
78 this.arrayType = arrayType;
80 if (arrayType == CstType.BYTE_ARRAY ||
81 arrayType == CstType.BOOLEAN_ARRAY) {
83 } else if (arrayType == CstType.SHORT_ARRAY ||
84 arrayType == CstType.CHAR_ARRAY) {
86 } else if (arrayType == CstType.INT_ARRAY ||
87 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 153 CtClass arrayType = type.getComponentType();
154 MemberValue member = createMemberValue(cp, arrayType);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SimpleVerifier.java 152 Type arrayType = ((BasicValue) objectArrayValue).getType();
153 if (arrayType != null) {
154 if (arrayType.getSort() == Type.ARRAY) {
155 return newValue(Type.getType(arrayType.getDescriptor()
157 } else if ("Lnull;".equals(arrayType.getDescriptor())) {
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java 120 Class<?> arrayType = fieldType.getComponentType();
123 if (arrayType == byte.class) {
  /external/skia/src/animator/
SkMemberInfo.h 45 SkDisplayTypes arrayType() const {
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 295 Type arrayType = frame.getStack().peekType(0);
296 if (!arrayType.isArrayOrKnownNull()) {
299 arrayType.toHuman());
  /external/clang/test/CodeGen/
xcore-stringtype.c 62 // test ArrayType
64 // CHECK: @arrayType, metadata !"f{p(a(2:si))}(p(si),p(cv:si),p(a(2:si)),
87 RetType* arrayType(int A1[], int const volatile A2[2], int A3[][2],
  /external/javassist/src/main/javassist/expr/
NewArray.java 241 CtClass arrayType;
246 arrayType = type;
273 gen.setType(arrayType);
279 c.setType(arrayType);
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 364 SigArrayType arrayType = factory.getArrayType(parseTypeSignature());
365 return arrayType;
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 679 void arrayType () throws IOException
699 arrayType ();
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 325 ITypeReference arrayType = baseType;
328 arrayType = pool.getArrayType(arrayType);
332 return arrayType;
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 470 IArrayType arrayType = (IArrayType) method.getReturnType();
471 IClassDefinition clazz = ((IClassReference) arrayType.getComponentType()).getClassDefinition();
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 283 private Type arrayType;
511 this.arrayType = null;
846 if (arrayType == null) {
847 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
850 return arrayType;
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 267 private Type arrayType;
444 this.arrayType = null;
779 if (arrayType == null) {
780 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
783 return arrayType;
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 268 private Type arrayType;
445 this.arrayType = null;
780 if (arrayType == null) {
781 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
784 return arrayType;

Completed in 3668 milliseconds

1 2 3 4