Searched refs:arrayType (Results 1 - 25 of 48) sorted by relevance

12

/external/proguard/src/proguard/classfile/instruction/
H A DInstructionUtil.java35 * @param arrayType <code>InstructionConstants.ARRAY_T_BOOLEAN</code>,
52 public static char internalTypeFromArrayType(byte arrayType) argument
54 switch (arrayType)
64 default: throw new IllegalArgumentException("Unknown array type ["+arrayType+"]");
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DArrayData.java42 private final Constant arrayType; field in class:ArrayData
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
59 ArrayData(SourcePosition position, CodeAddress user, ArrayList<Constant> values, Constant arrayType) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DFillArrayDataInsn.java40 private final Constant arrayType; field in class:FillArrayDataInsn
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
H A DRops.java1826 * @param arrayType {@code non-null;} array type of array being created
1829 public static Rop opNewArray(TypeBearer arrayType) { argument
1830 Type type = arrayType.getType();
1856 * @param arrayType {@code non-null;} type of array being created
1860 public static Rop opFilledNewArray(TypeBearer arrayType, int count) { argument
1861 Type type = arrayType.getType();
1865 return throwBadType(arrayType);
/external/javassist/src/main/javassist/
H A DCtPrimitiveType.java28 private int arrayType; field in class:CtPrimitiveType
40 arrayType = atype;
103 public int getArrayType() { return arrayType; }
/external/javassist/src/main/javassist/compiler/ast/
H A DNewExpr.java26 protected int arrayType; field in class:NewExpr
31 arrayType = CLASS;
37 arrayType = type;
56 public int getArrayType() { return arrayType; }
/external/junit/src/org/junit/runners/model/
H A DNoGenericTypeParametersValidator.java50 GenericArrayType arrayType, List<Throwable> errors) {
51 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors);
49 validateNoTypeParameterOnGenericArrayType( GenericArrayType arrayType, List<Throwable> errors) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSimpleVerifier.java152 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/
H A DTypeData.java428 public static String getElementType(String arrayType) { argument
429 char c = arrayType.charAt(1);
431 return arrayType.substring(2, arrayType.length() - 1).replace('/', '.');
433 return arrayType.substring(1);
435 return arrayType;
/external/javassist/src/main/javassist/expr/
H A DNewArray.java241 CtClass arrayType; field in class:NewArray.ProceedForArray
246 arrayType = type;
273 gen.setType(arrayType);
279 c.setType(arrayType);
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DType.java268 private Type arrayType; field in class:Type
445 this.arrayType = null;
780 if (arrayType == null) {
781 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
784 return arrayType;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DMessageNanoPrinter.java120 Class<?> arrayType = fieldType.getComponentType();
123 if (arrayType == byte.class) {
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1298 const ArrayType *arrayType = origArrayType; local
1303 if (isa<VariableArrayType>(arrayType)) {
1304 numVLAElements = getVLASize(cast<VariableArrayType>(arrayType)).first;
1309 QualType elementType = arrayType->getElementType();
1310 arrayType = getContext().getAsArrayType(elementType);
1313 if (!arrayType) {
1317 } while (isa<VariableArrayType>(arrayType));
1339 assert(isa<ConstantArrayType>(arrayType));
1340 assert(cast<ConstantArrayType>(arrayType)->getSize().getZExtValue()
1345 eltType = arrayType
[all...]
H A DCGDecl.cpp1385 const ArrayType *arrayType = getContext().getAsArrayType(type); local
1386 if (!arrayType)
1390 llvm::Value *length = emitArrayLength(arrayType, type, begin);
1474 while (const ArrayType *arrayType = CGF.getContext().getAsArrayType(type)) {
1476 if (!isa<VariableArrayType>(arrayType))
1478 type = arrayType->getElementType();
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c64 // 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], function
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotation.java153 CtClass arrayType = type.getComponentType();
154 MemberValue member = createMemberValue(cp, arrayType);
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java679 void arrayType () throws IOException method in class:Types.methodDescriptorCompiler
699 arrayType ();
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayable.cpp105 elementType = info->arrayType();
195 elementType = info->arrayType();
H A DSkMemberInfo.h45 SkDisplayTypes arrayType() const { function in struct:SkMemberInfo
H A DSkMemberInfo.cpp292 success = engine.convertTo(arrayType(), &scriptValue);
/external/skia/src/animator/
H A DSkDisplayable.cpp105 elementType = info->arrayType();
195 elementType = info->arrayType();
H A DSkMemberInfo.h45 SkDisplayTypes arrayType() const { function in struct:SkMemberInfo
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DParseContext.cpp1264 TPublicType arrayType = publicType; local
1273 arrayType.setArray(true, size);
1276 TIntermSymbol* symbol = intermediate.addSymbol(0, identifier, TType(arrayType), identifierLocation);
1280 if (arrayErrorCheck(identifierLocation, identifier, arrayType, variable))
1360 TPublicType arrayType(publicType);
1361 arrayType.setArray(true, size);
1363 if (arrayErrorCheck(arrayLocation, identifier, arrayType, variable))
1365 TType type = TType(arrayType);
1372 TPublicType arrayType(publicType);
1373 arrayType
[all...]
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp3663 EXPECT_TRUE(matches("int a[] = {2,3};", arrayType()));
3664 EXPECT_TRUE(matches("int a[42];", arrayType()));
3665 EXPECT_TRUE(matches("void f(int b) { int a[b]; }", arrayType()));
3668 arrayType(hasElementType(builtinType()))));
3672 qualType(arrayType(hasElementType(builtinType())))));
3675 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3678 qualType(isConstQualified(), arrayType())));
3682 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3685 qualType(arrayType(hasElementType(isConstQualified(), builtinType())))));
3688 qualType(arrayType(hasElementTyp
[all...]
/external/clang/lib/Sema/
H A DSemaInit.cpp125 const ArrayType *arrayType = Context.getAsArrayType(declType); local
126 if (!arrayType)
128 return IsStringInit(init, arrayType, Context);
927 if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) {
928 // arrayType can be incomplete if we're initializing a flexible
932 if (IsStringInit(expr, arrayType, SemaRef.Context) == SIF_None) {
934 CheckStringInit(expr, ElemType, arrayType, SemaRef);
1350 const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1354 if (IsStringInit(IList->getInit(Index), arrayType, SemaRef.Context) ==
1362 CheckStringInit(IList->getInit(Index), DeclType, arrayType, SemaRe
[all...]

Completed in 3209 milliseconds

12