Searched defs:arrayType (Results 1 - 25 of 31) 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/webkit/Source/WebCore/bindings/v8/custom/
H A DV8ArrayBufferViewCustom.h44 v8::Handle<v8::Value> constructWebGLArrayWithArrayBufferArgument(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType, bool hasIndexer) argument
74 args.Holder()->SetIndexedPropertiesToExternalArrayData(array.get()->baseAddress(), arrayType, array.get()->length());
80 v8::Handle<v8::Value> constructWebGLArray(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType) argument
122 return constructWebGLArrayWithArrayBufferArgument<ArrayClass, ElementType>(args, type, arrayType, true);
159 args.Holder()->SetIndexedPropertiesToExternalArrayData(array.get()->baseAddress(), arrayType, array.get()->length());
/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/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/skia/src/animator/
H A DSkMemberInfo.h45 SkDisplayTypes arrayType() const { function in struct:SkMemberInfo
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaArrayJSC.cpp78 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]); local
86 jvalue aJValue = convertValueToJValue(exec, m_rootObject.get(), aValue, arrayType, javaClassName);
88 switch (arrayType) {
152 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]); local
153 switch (arrayType) {
H A DJavaFieldJSC.cpp111 const char* arrayType = typeClassName(); local
112 if (arrayType[0] == '[')
113 jsresult = JavaArray::convertJObjectToArray(exec, anObject, arrayType, instance->rootObject());
H A DJavaInstanceJSC.cpp224 const char* arrayType = jMethod->returnTypeClassName(); local
225 if (arrayType[0] == '[')
226 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
298 const char* arrayType = jMethod->returnTypeClassName(); local
299 ASSERT(arrayType[0] == '[');
300 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
/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/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.java1637 private <A, T> Method arraySwapMethod(TypeId<A> arrayType, TypeId<T> singleType) argument
1648 singleType, "call", arrayType, TypeId.INT, singleType);
1650 Local<A> localArray = code.getParameter(0, arrayType);
/external/clang/lib/CodeGen/
H A DCGDecl.cpp1273 const ArrayType *arrayType = getContext().getAsArrayType(type); local
1274 if (!arrayType)
1278 llvm::Value *length = emitArrayLength(arrayType, type, begin);
1362 while (const ArrayType *arrayType = CGF.getContext().getAsArrayType(type)) {
1364 if (!isa<VariableArrayType>(arrayType))
1366 type = arrayType->getElementType();
H A DCGExprAgg.cpp305 QualType arrayType,
308 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
317 CGF.pushDestroy(NormalAndEHCleanup, addr, arrayType, destroyer,
304 EmitStdInitializerListCleanup(CodeGenFunction &CGF, QualType arrayType, llvm::Value *addr, const InitListExpr *initList) argument
H A DCodeGenFunction.cpp919 const ArrayType *arrayType = origArrayType; local
924 if (isa<VariableArrayType>(arrayType)) {
925 numVLAElements = getVLASize(cast<VariableArrayType>(arrayType)).first;
930 QualType elementType = arrayType->getElementType();
931 arrayType = getContext().getAsArrayType(elementType);
934 if (!arrayType) {
938 } while (isa<VariableArrayType>(arrayType));
960 assert(isa<ConstantArrayType>(arrayType));
961 assert(cast<ConstantArrayType>(arrayType)->getSize().getZExtValue()
966 eltType = arrayType
[all...]
H A DCGClass.cpp1101 /// \param arrayType the type of the array to initialize
1102 /// \param arrayBegin an arrayType*
1107 const ConstantArrayType *arrayType,
1114 emitArrayLength(arrayType, elementType, arrayBegin);
1106 EmitCXXAggrConstructorCall(const CXXConstructorDecl *ctor, const ConstantArrayType *arrayType, llvm::Value *arrayBegin, CallExpr::const_arg_iterator argBegin, CallExpr::const_arg_iterator argEnd, bool zeroInitialize) argument
H A DCodeGenModule.cpp1457 QualType arrayType = ctx.getConstantArrayType(elementType, numElements, local
1462 arrayType, D->getLocation());
1466 name, arrayType, sourceInfo,
1476 arrayInit->setType(arrayType);
/external/clang/lib/Sema/
H A DSemaInit.cpp79 const ArrayType *arrayType = Context.getAsArrayType(declType); local
80 if (!arrayType) return 0;
82 return IsStringInit(init, arrayType, Context);
761 if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) {
762 // arrayType can be incomplete if we're initializing a flexible
766 if (Expr *Str = IsStringInit(expr, arrayType, SemaRef.Context)) {
768 CheckStringInit(Str, ElemType, arrayType, SemaRef);
1145 const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1149 if (Expr *Str = IsStringInit(IList->getInit(Index), arrayType,
1157 CheckStringInit(Str, DeclType, arrayType, SemaRe
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp1104 const ArrayType *arrayType; local
1105 if (MinWidth && (arrayType = getAsArrayType(T))) {
1106 if (isa<VariableArrayType>(arrayType))
1108 else if (isa<ConstantArrayType>(arrayType) &&
1109 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
1113 T = getBaseElementType(arrayType);

Completed in 864 milliseconds

12