/aosp_15_r20/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
H A D | ArrayType.java | 27 public final class ArrayType extends ReferenceType { class 38 public ArrayType(final byte type, final int dimensions) { in ArrayType() method in ArrayType 48 public ArrayType(final String class_name, final int dimensions) { in ArrayType() method in ArrayType 58 public ArrayType(final Type type, final int dimensions) { in ArrayType() method in ArrayType
|
/aosp_15_r20/prebuilts/go/linux-x86/src/debug/dwarf/ |
D | type.go | 114 type ArrayType struct { struct 115 CommonType 116 Type Type 117 StrideBitSize int64 // if > 0, number of bits to hold each element 118 Count int64 // if == -1, an incomplete array, like char x[]. 121 func (t *ArrayType) String() string { 125 func (t *ArrayType) Size() int64 {
|
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
H A D | ArrayType.java | 49 public class ArrayType extends ReferenceType implements NodeWithAnnotations<ArrayType> { class 76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) { in ArrayType() method in ArrayType 80 public ArrayType(Type type, AnnotationExpr... annotations) { in ArrayType() method in ArrayType 88 …public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr… in ArrayType() method in ArrayType
|
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/ |
H A D | ArrayType.java | 19 public class ArrayType extends ReferenceType<ArrayType> implements NodeWithAnnotations<ArrayType> { class 22 public ArrayType(Type componentType, List<AnnotationExpr> annotations) { in ArrayType() method in ArrayType 27 public ArrayType(Range range, Type componentType, List<AnnotationExpr> annotations) { in ArrayType() method in ArrayType
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/abi/ |
D | type.go | 264 type ArrayType struct { struct 265 Type 266 Elem *Type // array element type 267 Slice *Type // slice type 268 Len uintptr 411 func (t *Type) ArrayType() *ArrayType { func
|
/aosp_15_r20/system/tools/hidl/ |
D | ArrayType.h | 30 struct ArrayType : public Type { struct 124 DISALLOW_COPY_AND_ASSIGN(ArrayType); argument
|
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-model/com/github/javaparser/symbolsolver/model/typesystem/ |
H A D | ArrayType.java | 28 public class ArrayType implements Type { class 32 public ArrayType(Type baseType) { in ArrayType() method in ArrayType
|
/aosp_15_r20/libcore/ojluni/src/test/java/util/Arrays/ |
H A D | ArraysEqCmpTest.java | 77 static abstract class ArrayType<T> { class in ArraysEqCmpTest 95 public ArrayType(Class<T> arrayType) { in ArrayType() method in ArraysEqCmpTest.ArrayType 99 public ArrayType(Class<T> arrayType, boolean unsigned) { in ArrayType() method in ArraysEqCmpTest.ArrayType 844 BiFunction<ArrayType<?>, Integer, Object> constructor, in testArrayType()
|
/aosp_15_r20/external/swiftshader/src/Pipeline/ |
H A D | SpirvShaderDebugger.cpp | 357 ArrayType, enumerator 595 struct ArrayType : ObjectImpl<ArrayType, Type, Object::Kind::ArrayType> struct 597 Type *base = nullptr; 598 bool ownsBase = false; // If true, base is owned by this ArrayType. 599 uint32_t size; // In elements 601 ~ArrayType() in ~ArrayType() 606 std::string name() const override { return base->name() + "[]"; } in name() 607 uint32_t sizeInBytes() const override { return base->sizeInBytes() * size; } in sizeInBytes() 608 size_t numMembers() const override { return size; } in numMembers() 609 Member getMember(size_t i) const override { return { base, std::to_string(i) }; } in getMember() [all …]
|
/aosp_15_r20/external/clang/lib/CodeGen/ |
H A D | CGVTT.cpp | 48 llvm::ArrayType *ArrayType = in EmitVTTDefinition() local 118 llvm::ArrayType *ArrayType = in GetAddrOfVTT() local
|
H A D | CGVTables.cpp | 655 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents); in CreateVTableInitializer() local 683 llvm::ArrayType *ArrayType = in GenerateConstructionVTable() local
|
/aosp_15_r20/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
H A D | ArrayType.java | 12 public final class ArrayType class 29 protected ArrayType(JavaType componentType, TypeBindings bindings, Object emptyInstance, in ArrayType() method in ArrayType
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/ |
D | ast.go | 1310 type ArrayType struct { struct 1311 Dimension AST 1312 Element AST 1315 func (at *ArrayType) print(ps *printState) { 1326 func (at *ArrayType) printInner(ps *printState) { 1331 func (at *ArrayType) printDimension(ps *printState) { 1360 func (at *ArrayType) Traverse(fn func(AST) bool) { 1367 func (at *ArrayType) Copy(fn func(AST) AST, skip func(AST) bool) AST { 1389 func (at *ArrayType) GoString() string { 1393 func (at *ArrayType) goString(indent int, field string) string {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/ |
D | ast.go | 432 ArrayType struct { struct 433 Lbrack token.Pos // position of "[" 434 Len Expr // Ellipsis node for [...]T array types, nil for slice types 435 Elt Expr // element type 502 func (x *ArrayType) Pos() token.Pos { return x.Lbrack } 536 func (x *ArrayType) End() token.Pos { return x.Elt.End() } 568 func (*ArrayType) exprNode() {}
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/ |
D | nodes.go | 253 ArrayType struct { struct 255 Len Expr // nil means Len is ... 256 Elem Expr 257 expr
|
/aosp_15_r20/external/oj-libjdwp/src/share/classes/com/sun/jdi/ |
H A D | ArrayType.java | 42 public interface ArrayType extends ReferenceType { interface
|
/aosp_15_r20/external/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | ByteStream.h | 27 ArrayRef<uint8_t>>::type ArrayType; typedef
|
H A D | StreamArray.h | 109 typedef VarStreamArray<ValueType, Extractor> ArrayType; typedef
|
/aosp_15_r20/external/clang/test/Index/ |
H A D | print-type.c | 9 typedef int ArrayType[5]; typedef
|
H A D | print-type.cpp | 26 typedef int ArrayType[5]; typedef
|
/aosp_15_r20/external/eigen/test/ |
H A D | num_dimensions.cpp | 25 typedef Object<double, 2, 2> ArrayType; in map_num_dimensions() typedef
|
/aosp_15_r20/external/llvm/tools/llvm-pdbdump/ |
H A D | VariableDumper.cpp | 131 if (auto *ArrayType = dyn_cast<PDBSymbolTypeArray>(&Type)) { in dumpSymbolTypeAndName() local
|
/aosp_15_r20/external/javassist/src/main/javassist/bytecode/ |
H A D | SignatureAttribute.java | 839 public static class ArrayType extends ObjectType { class in SignatureAttribute 849 public ArrayType(int d, Type comp) { in ArrayType() method in SignatureAttribute.ArrayType
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | Constants.h | 44 class ArrayType; variable
|
/aosp_15_r20/external/llvm/include/llvm/IR/ |
H A D | Constants.h | 33 class ArrayType; variable
|