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

1 2 3 4 5 6 7 8 91011

  /external/proguard/src/proguard/classfile/instruction/
InstructionUtil.java 35 * @param arrayType <code>InstructionConstants.ARRAY_T_BOOLEAN</code>,
52 public static char internalTypeFromArrayType(byte arrayType)
54 switch (arrayType)
64 default: throw new IllegalArgumentException("Unknown array type ["+arrayType+"]");
  /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/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...]
  /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; }
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliArrayTypeElement.java 61 PsiArrayType arrayType = new PsiArrayType(baseType.getType());
64 arrayType = new PsiArrayType(arrayType);
67 return arrayType;
  /libcore/ojluni/src/lambda/java/java/lang/invoke/
MethodHandle.java 42 public MethodHandle asCollector(Class<?> arrayType, int arrayLength) { return null; }
44 public MethodHandle asVarargsCollector(Class<?> arrayType) { return null; }
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
DelayedRemovalArray.java 40 public DelayedRemovalArray (boolean ordered, int capacity, Class arrayType) {
41 super(ordered, capacity, arrayType);
52 public DelayedRemovalArray (Class arrayType) {
53 super(arrayType);
SnapshotArray.java 52 public SnapshotArray (boolean ordered, int capacity, Class arrayType) {
53 super(ordered, capacity, arrayType);
64 public SnapshotArray (Class arrayType) {
65 super(arrayType);
Array.java 62 public Array (boolean ordered, int capacity, Class arrayType) {
64 items = (T[])ArrayReflection.newInstance(arrayType, capacity);
68 public Array (Class arrayType) {
69 this(true, 16, arrayType);
516 static public <T> Array<T> of (Class<T> arrayType) {
517 return new Array<T>(arrayType);
521 static public <T> Array<T> of (boolean ordered, int capacity, Class<T> arrayType) {
522 return new Array<T>(ordered, capacity, arrayType);
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
JavassistHelper.java 118 CtClass arrayType = parameterType.getComponentType();
120 while (arrayType.isArray()) {
121 arrayType = arrayType.getComponentType();
  /external/junit/src/org/junit/runners/model/
NoGenericTypeParametersValidator.java 50 GenericArrayType arrayType, List<Throwable> errors) {
51 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors);
  /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();
  /libcore/benchmarks/src/benchmarks/
DeepArrayOpsBenchmark.java 102 private static final <T, V> T[] new16ElementArray(Class<T> arrayType, Class<V> type)
105 if (!arrayType.isAssignableFrom(type)) {
106 throw new IllegalArgumentException(arrayType + " is not assignable from " + type);
  /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/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 428 public static String getElementType(String arrayType) {
429 char c = arrayType.charAt(1);
431 return arrayType.substring(2, arrayType.length() - 1).replace('/', '.');
433 return arrayType.substring(1);
435 return arrayType;
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationTypeUtil.java 25 import javax.lang.model.type.ArrayType;
77 final ArrayType arrayType = (ArrayType) typeMirror;
78 final String componentType = getDescription(arrayType.getComponentType());
  /external/javassist/src/main/javassist/expr/
NewArray.java 241 CtClass arrayType;
246 arrayType = type;
273 gen.setType(arrayType);
279 c.setType(arrayType);
  /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 393 milliseconds

1 2 3 4 5 6 7 8 91011