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

1 2

  /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 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 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/webkit/Source/WebCore/bridge/jni/jsc/
JavaFieldJSC.cpp 111 const char* arrayType = typeClassName();
112 if (arrayType[0] == '[')
113 jsresult = JavaArray::convertJObjectToArray(exec, anObject, arrayType, instance->rootObject());
JavaArrayJSC.cpp 78 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]);
86 jvalue aJValue = convertValueToJValue(exec, m_rootObject.get(), aValue, arrayType, javaClassName);
88 switch (arrayType) {
152 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]);
153 switch (arrayType) {
JavaInstanceJSC.cpp 224 const char* arrayType = jMethod->returnTypeClassName();
225 if (arrayType[0] == '[')
226 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
298 const char* arrayType = jMethod->returnTypeClassName();
299 ASSERT(arrayType[0] == '[');
300 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
  /libcore/luni/src/test/java/tests/api/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 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/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/skia/src/animator/
SkMemberInfo.h 45 SkDisplayTypes arrayType() const {
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 296 Type arrayType = frame.getStack().peekType(0);
297 if (!arrayType.isArrayOrKnownNull()) {
300 arrayType.toHuman());
  /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 268 private Type arrayType;
445 this.arrayType = null;
780 if (arrayType == null) {
781 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
784 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;
  /cts/tools/dasm/src/dasm/
DAsm.java     [all...]

Completed in 1464 milliseconds

1 2