Searched refs:arrayType (Results 1 - 25 of 41) 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/llvm/lib/Transforms/Instrumentation/
H A DProfilingUtils.h29 PointerType *arrayType = 0);
H A DProfilingUtils.cpp26 PointerType *arrayType) {
30 PointerType *UIntPtr = arrayType ? arrayType :
24 InsertProfilingInitCall(Function *MainFn, const char *FnName, GlobalValue *Array, PointerType *arrayType) argument
/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/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/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 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);
H A DJavaFieldJSC.cpp111 const char* arrayType = typeClassName(); local
112 if (arrayType[0] == '[')
113 jsresult = JavaArray::convertJObjectToArray(exec, anObject, arrayType, instance->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/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/clang/lib/CodeGen/
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 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
/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/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
H A DLwjglGL1Renderer.java913 int arrayType = convertArrayType(vb.getBufferType());
914 if (arrayType == -1) {
917 glEnableClientState(arrayType);
1040 int arrayType = convertArrayType(vb.getBufferType());
1041 glDisableClientState(arrayType);
/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/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java1988 RegisterType arrayType = RegisterType.getRegisterTypeForTypeIdItem((TypeIdItem)item);
1989 assert arrayType.type instanceof ClassPath.ArrayClassDef;
1991 setDestinationRegisterTypeAndPropagateChanges(analyzedInstruction, arrayType);
2005 RegisterType arrayType = RegisterType.getRegisterTypeForTypeIdItem((TypeIdItem)item);
2006 assert arrayType.type instanceof ClassPath.ArrayClassDef;
2008 if (arrayType.category != RegisterType.Category.Reference) {
2010 arrayType.toString()));
2012 if (arrayType.type.getClassType().charAt(0) != '[') {
2013 throw new ValidationException("Cannot use non-array type \"" + arrayType.type.getClassType() +
2022 RegisterType arrayType;
[all...]

Completed in 546 milliseconds

12