Searched defs:arrayType (Results 1 - 25 of 40) 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/junit/src/main/java/org/junit/runners/model/
H A DNoGenericTypeParametersValidator.java55 GenericArrayType arrayType, List<Throwable> errors) {
56 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors);
54 validateNoTypeParameterOnGenericArrayType( GenericArrayType arrayType, List<Throwable> errors) argument
/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/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/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DProfilingUtils.cpp26 PointerType *arrayType) {
30 PointerType *UIntPtr = arrayType ? arrayType :
24 InsertProfilingInitCall(Function *MainFn, const char *FnName, GlobalValue *Array, PointerType *arrayType) argument
/external/guava/guava-testlib/src/com/google/common/testing/
H A DArbitraryInstances.java403 private static <T> T createEmptyArray(Class<T> arrayType) { argument
404 return arrayType.cast(Array.newInstance(arrayType.getComponentType(), 0));
/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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DUtil.java237 public static <T> T[] intersect(Class<T> arrayType, T[] first, T[] second) { argument
239 return result.toArray((T[]) Array.newInstance(arrayType, result.size()));
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c72 // CHECK: @arrayType, !"f{p(a(2:si))}(p(si),p(cv:si),p(a(2:si)),
95 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/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp71 auto arrayType = CGM.getContext().getAsConstantArrayType(type); local
72 if (!arrayType) return;
74 QualType eltType = arrayType->getElementType();
76 for (uint64_t i = 0, e = arrayType->getSize().getZExtValue(); i != e; ++i) {
H A DCGDecl.cpp1508 const ArrayType *arrayType = getContext().getAsArrayType(type); local
1509 if (!arrayType)
1512 llvm::Value *length = emitArrayLength(arrayType, type, addr);
1603 while (const ArrayType *arrayType = CGF.getContext().getAsArrayType(type)) {
1605 if (!isa<VariableArrayType>(arrayType))
1607 type = arrayType->getElementType();
H A DCodeGenFunction.cpp1546 const ArrayType *arrayType = origArrayType; local
1551 if (isa<VariableArrayType>(arrayType)) {
1552 numVLAElements = getVLASize(cast<VariableArrayType>(arrayType)).first;
1557 QualType elementType = arrayType->getElementType();
1558 arrayType = getContext().getAsArrayType(elementType);
1561 if (!arrayType) {
1565 } while (isa<VariableArrayType>(arrayType));
1586 assert(isa<ConstantArrayType>(arrayType));
1587 assert(cast<ConstantArrayType>(arrayType)->getSize().getZExtValue()
1592 eltType = arrayType
[all...]
H A DCGClass.cpp1913 /// \param arrayType the type of the array to initialize
1914 /// \param arrayBegin an arrayType*
1918 const CXXConstructorDecl *ctor, const ArrayType *arrayType,
1922 emitArrayLength(arrayType, elementType, arrayBegin);
1917 EmitCXXAggrConstructorCall( const CXXConstructorDecl *ctor, const ArrayType *arrayType, Address arrayBegin, const CXXConstructExpr *E, bool zeroInitialize) argument
/external/smali/smalidea/src/test/java/org/jf/smalidea/
H A DSmaliPositionManagerTest.java170 @Override public ArrayReference newInstance(ArrayType arrayType, int dimension) throws EvaluateException { return null; } argument
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
H A DDexMakerTest.java1701 private <A, T> Method arraySwapMethod(TypeId<A> arrayType, TypeId<T> singleType) argument
1712 singleType, "call", arrayType, TypeId.INT, singleType);
1714 Local<A> localArray = code.getParameter(0, arrayType);
/external/guava/guava-tests/test/com/google/common/reflect/
H A DTypeTokenTest.java1620 private static void assertHasArrayInterfaces(TypeToken<?> arrayType) { argument
1621 assertEquals(arrayInterfaces(), ImmutableSet.copyOf(arrayType.getGenericInterfaces()));
/external/swiftshader/src/OpenGL/compiler/
H A DParseHelper.cpp1536 TType arrayType(publicType);
1545 arrayType.setArraySize(size);
1548 if(!declareVariable(identifierLocation, identifier, arrayType, &variable))
1551 TIntermSymbol *symbol = intermediate.addSymbol(0, identifier, arrayType, identifierLocation);
1602 TPublicType arrayType(publicType);
1612 arrayType.setArray(true, size);
1616 if(!executeInitializer(identifierLocation, identifier, arrayType, initializer, &initNode))
1718 TType arrayType = TType(publicType); local
1724 arrayType.setArraySize(size);
1727 if(!declareVariable(identifierLocation, identifier, arrayType,
[all...]
/external/clang/lib/Sema/
H A DSemaInit.cpp126 const ArrayType *arrayType = Context.getAsArrayType(declType); local
127 if (!arrayType)
129 return IsStringInit(init, arrayType, Context);
1178 } else if (const ArrayType *arrayType =
1180 // arrayType can be incomplete if we're initializing a flexible
1184 if (IsStringInit(expr, arrayType, SemaRef.Context) == SIF_None) {
1186 CheckStringInit(expr, ElemType, arrayType, SemaRef);
1575 const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1579 if (IsStringInit(IList->getInit(Index), arrayType, SemaRef.Context) ==
1587 CheckStringInit(IList->getInit(Index), DeclType, arrayType, SemaRe
[all...]
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/robolectric/v1/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/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 1646 milliseconds

12