HomeSort by relevance Sort by last modified time
    Searched defs:arrayType (Results 1 - 25 of 28) sorted by null

1 2

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /dalvik/dx/src/com/android/dx/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 28 private int arrayType;
40 arrayType = atype;
103 public int getArrayType() { return arrayType; }
  /external/javassist/src/main/javassist/compiler/ast/
NewExpr.java 26 protected int arrayType;
31 arrayType = CLASS;
37 arrayType = type;
56 public int getArrayType() { return arrayType; }
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaFieldJSC.cpp 111 const char* arrayType = typeClassName();
112 if (arrayType[0] == '[')
113 jsresult = JavaArray::convertJObjectToArray(exec, anObject, arrayType, instance->rootObject());
JavaArrayJSC.cpp 78 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]);
86 jvalue aJValue = convertValueToJValue(exec, m_rootObject.get(), aValue, arrayType, javaClassName);
88 switch (arrayType) {
152 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]);
153 switch (arrayType) {
JavaInstanceJSC.cpp 224 const char* arrayType = jMethod->returnTypeClassName();
225 if (arrayType[0] == '[')
226 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
298 const char* arrayType = jMethod->returnTypeClassName();
299 ASSERT(arrayType[0] == '[');
300 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericArrayTypeTest.java 57 GenericArrayType arrayType = (GenericArrayType) genericType;
58 Type componentType = arrayType.getGenericComponentType();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 42 private final Constant arrayType;
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 == CstType.FLOAT_ARRAY)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 42 private final Constant arrayType;
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 == CstType.FLOAT_ARRAY)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 153 CtClass arrayType = type.getComponentType();
154 MemberValue member = createMemberValue(cp, arrayType);
  /external/skia/src/animator/
SkMemberInfo.h 53 SkDisplayTypes arrayType() const {
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 296 Type arrayType = frame.getStack().peekType(0);
297 if (!arrayType.isArrayOrKnownNull()) {
300 arrayType.toHuman());
  /external/javassist/src/main/javassist/expr/
NewArray.java 241 CtClass arrayType;
246 arrayType = type;
273 gen.setType(arrayType);
279 c.setType(arrayType);
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 364 SigArrayType arrayType = factory.getArrayType(parseTypeSignature());
365 return arrayType;
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 679 void arrayType () throws IOException
699 arrayType ();
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 325 ITypeReference arrayType = baseType;
328 arrayType = pool.getArrayType(arrayType);
332 return arrayType;
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 470 IArrayType arrayType = (IArrayType) method.getReturnType();
471 IClassDefinition clazz = ((IClassReference) arrayType.getComponentType()).getClassDefinition();
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 283 private Type arrayType;
511 this.arrayType = null;
846 if (arrayType == null) {
847 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
850 return arrayType;
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 268 private Type arrayType;
445 this.arrayType = null;
780 if (arrayType == null) {
781 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
784 return arrayType;
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 806 llvm::Value *CodeGenFunction::emitArrayLength(const ArrayType *origArrayType,
809 const ArrayType *arrayType = origArrayType;
814 if (isa<VariableArrayType>(arrayType)) {
815 numVLAElements = getVLASize(cast<VariableArrayType>(arrayType)).first;
820 QualType elementType = arrayType->getElementType();
821 arrayType = getContext().getAsArrayType(elementType);
824 if (!arrayType) {
828 } while (isa<VariableArrayType>(arrayType));
847 llvm::ArrayType *llvmArrayType
    [all...]
CGDecl.cpp     [all...]
  /cts/tools/dasm/src/dasm/
DAsm.java     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 33 static Expr *IsStringInit(Expr *Init, const ArrayType *AT,
77 const ArrayType *arrayType = Context.getAsArrayType(declType);
78 if (!arrayType) return 0;
80 return IsStringInit(init, arrayType, Context);
83 static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
98 ArrayType::Normal, 0);
396 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
764 if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType))
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp 746 const ArrayType *arrayType;
747 if (MinWidth && (arrayType = getAsArrayType(T))) {
748 if (isa<VariableArrayType>(arrayType))
750 else if (isa<ConstantArrayType>(arrayType) &&
751 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
755 T = getBaseElementType(arrayType);
830 Align = getTypeAlign(cast<ArrayType>(T)->getElementType());
    [all...]

Completed in 861 milliseconds

1 2