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

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/runners/model/
NoGenericTypeParametersValidator.java 55 GenericArrayType arrayType, List<Throwable> errors) {
56 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliArrayTypeElement.java 61 PsiArrayType arrayType = new PsiArrayType(baseType.getType());
64 arrayType = new PsiArrayType(arrayType);
67 return arrayType;
  /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 39 private final Constant arrayType;
61 this.arrayType = cst;
84 return arrayType;
104 initValues, arrayType);
113 sources, initValues, arrayType);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/
ArrayType.java 16 * To indicate that a type is an array, it gets wrapped in an ArrayType for every array level it has.
17 * So, int[][] becomes ArrayType(ArrayType(int)).
19 public class ArrayType extends ReferenceType<ArrayType> implements NodeWithAnnotations<ArrayType> {
22 public ArrayType(Type componentType, List<AnnotationExpr> annotations) {
27 public ArrayType(Range range, Type componentType, List<AnnotationExpr> annotations) {
45 public ArrayType setComponentType(final Type type) {
53 * The type gets wrapped in ArrayTypes so that the outermost ArrayType corresponds to the rightmost ArrayBracketPair
    [all...]
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 28 private int arrayType;
40 arrayType = atype;
103 public int getArrayType() { return arrayType; }
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationTypeUtil.java 25 import javax.lang.model.type.ArrayType;
77 final ArrayType arrayType = (ArrayType) typeMirror;
78 final String componentType = getDescription(arrayType.getComponentType());
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
SimpleVerifier.java 131 Type arrayType = ((BasicValue) objectArrayValue).getType();
132 if (arrayType != null) {
133 if (arrayType.getSort() == Type.ARRAY) {
134 return newValue(Type.getType(arrayType.getDescriptor()
136 } else if (arrayType.getDescriptor().equals("Lnull;")) {
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/type/
TypeTest.java 53 public void arrayType() {
56 ArrayType arrayType = type.asArrayType();
57 final ArrayType[] s = new ArrayType[1];
  /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/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
JavassistHelper.java 118 CtClass arrayType = parameterType.getComponentType();
120 while (arrayType.isArray()) {
121 arrayType = arrayType.getComponentType();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericArrayTypeTest.java 64 GenericArrayType arrayType = (GenericArrayType) genericType;
65 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 44 private final Constant arrayType;
63 Constant arrayType) {
80 this.arrayType = arrayType;
82 if (arrayType == CstType.BYTE_ARRAY ||
83 arrayType == CstType.BOOLEAN_ARRAY) {
85 } else if (arrayType == CstType.SHORT_ARRAY ||
86 arrayType == CstType.CHAR_ARRAY) {
88 } else if (arrayType == CstType.INT_ARRAY ||
89 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistUtils.java 154 } else if (signatureType instanceof SignatureAttribute.ArrayType) {
155 SignatureAttribute.ArrayType arrayType = (SignatureAttribute.ArrayType) signatureType;
156 return new ResolvedArrayType(signatureTypeToType(arrayType.getComponentType(), typeSolver, typeParametrizable));
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 153 CtClass arrayType = type.getComponentType();
154 MemberValue member = createMemberValue(cp, arrayType);
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java 125 Class<?> arrayType = fieldType.getComponentType();
128 if (arrayType == byte.class) {
  /external/clang/test/CodeGen/
xcore-stringtype.c 70 // test ArrayType
72 // 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],
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
ArrayType.java 46 * To indicate that a type is an array, it gets wrapped in an ArrayType for every array level it has.
47 * So, int[][] becomes ArrayType(ArrayType(int)).
49 public final class ArrayType extends ReferenceType implements NodeWithAnnotations<ArrayType> {
76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) {
80 public ArrayType(Type type, AnnotationExpr... annotations) {
88 public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) {
113 public ArrayType setComponentType(final Type componentType) {
116 return (ArrayType) this
    [all...]
  /external/javassist/src/main/javassist/expr/
NewArray.java 241 CtClass arrayType;
246 arrayType = type;
273 gen.setType(arrayType);
279 c.setType(arrayType);
  /libcore/ojluni/src/main/java/java/lang/invoke/
MethodHandle.java     [all...]
  /system/tools/hidl/
ArrayType.cpp 17 #include "ArrayType.h"
27 ArrayType::ArrayType(const Reference<Type>& elementType, ConstantExpression* size, Scope* parent)
32 void ArrayType::appendDimension(ConstantExpression *size) {
36 size_t ArrayType::countDimensions() const {
40 bool ArrayType::isArray() const {
44 bool ArrayType::deepCanCheckEquality(std::unordered_set<const Type*>* visited) const {
48 const Type* ArrayType::getElementType() const {
52 std::string ArrayType::typeName() const {
60 std::vector<const Reference<Type>*> ArrayType::getReferences() const
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
PrettyPrintVisitor.java 403 public void visit(final ArrayType n, final Void arg) {
404 final List<ArrayType> arrayTypeBuffer = new LinkedList<>();
406 while (type instanceof ArrayType) {
407 final ArrayType arrayType = (ArrayType) type;
408 arrayTypeBuffer.add(arrayType);
409 type = arrayType.getComponentType();
413 for (ArrayType arrayType : arrayTypeBuffer)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DumpVisitor.java 427 public void visit(final ArrayType n, final Object arg) {
428 final List<ArrayType> arrayTypeBuffer = new LinkedList<>();
430 while (type instanceof ArrayType) {
431 final ArrayType arrayType = (ArrayType) type;
432 arrayTypeBuffer.add(arrayType);
433 type = arrayType.getComponentType();
437 for (ArrayType arrayType : arrayTypeBuffer)
    [all...]
  /external/javaparser/javaparser-testing/src/test/test_sourcecode/com/github/javaparser/printer/
PrettyPrintVisitor.java 319 public void visit(final ArrayType n, final Void arg) {
320 final List<ArrayType> arrayTypeBuffer = new LinkedList<>();
322 while (type instanceof ArrayType) {
323 final ArrayType arrayType = (ArrayType) type;
324 arrayTypeBuffer.add(arrayType);
325 type = arrayType.getComponentType();
329 for (ArrayType arrayType : arrayTypeBuffer)
    [all...]

Completed in 626 milliseconds

1 2 3 4 5 6 7 8 91011>>