Searched defs:arrayType (Results 1 - 25 of 34) 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/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/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/chromium_org/third_party/skia/src/animator/
H A DSkMemberInfo.h45 SkDisplayTypes arrayType() const { function in struct:SkMemberInfo
/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/skia/src/animator/
H A DSkMemberInfo.h45 SkDisplayTypes arrayType() const { function in struct:SkMemberInfo
/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/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/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java679 void arrayType () throws IOException method in class:Types.methodDescriptorCompiler
699 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/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java1638 private <A, T> Method arraySwapMethod(TypeId<A> arrayType, TypeId<T> singleType) argument
1649 singleType, "call", arrayType, TypeId.INT, singleType);
1651 Local<A> localArray = code.getParameter(0, arrayType);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DParseContext.cpp1305 TPublicType arrayType = publicType; local
1314 arrayType.setArray(true, size);
1317 TIntermSymbol* symbol = intermediate.addSymbol(0, identifier, TType(arrayType), identifierLocation);
1321 if (arrayErrorCheck(identifierLocation, identifier, arrayType, variable))
1427 TPublicType arrayType(publicType);
1428 arrayType.setArray(true, size);
1430 if (arrayErrorCheck(arrayLocation, identifier, arrayType, variable))
1432 TType type = TType(arrayType);
1439 TPublicType arrayType(publicType);
1440 arrayType
[all...]
/external/clang/lib/CodeGen/
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();
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 DCGClass.cpp1514 /// \param arrayType the type of the array to initialize
1515 /// \param arrayBegin an arrayType*
1520 const ConstantArrayType *arrayType,
1527 emitArrayLength(arrayType, elementType, arrayBegin);
1519 EmitCXXAggrConstructorCall(const CXXConstructorDecl *ctor, const ConstantArrayType *arrayType, llvm::Value *arrayBegin, CallExpr::const_arg_iterator argBegin, CallExpr::const_arg_iterator argEnd, bool zeroInitialize) argument
/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...]
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 2879 milliseconds

12