Home
last modified time | relevance | path

Searched defs:ArrayType (Results 1 – 25 of 131) sorted by relevance

123456

/aosp_15_r20/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
H A DArrayType.java27 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/
Dtype.go114 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 DArrayType.java49 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 DArrayType.java19 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/
Dtype.go264 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/
DArrayType.h30 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 DArrayType.java28 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 DArraysEqCmpTest.java77 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 DSpirvShaderDebugger.cpp357 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 DCGVTT.cpp48 llvm::ArrayType *ArrayType = in EmitVTTDefinition() local
118 llvm::ArrayType *ArrayType = in GetAddrOfVTT() local
H A DCGVTables.cpp655 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 DArrayType.java12 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/
Dast.go1310 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/
Dast.go432 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/
Dnodes.go253 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 DArrayType.java42 public interface ArrayType extends ReferenceType { interface
/aosp_15_r20/external/llvm/include/llvm/DebugInfo/CodeView/
H A DByteStream.h27 ArrayRef<uint8_t>>::type ArrayType; typedef
H A DStreamArray.h109 typedef VarStreamArray<ValueType, Extractor> ArrayType; typedef
/aosp_15_r20/external/clang/test/Index/
H A Dprint-type.c9 typedef int ArrayType[5]; typedef
H A Dprint-type.cpp26 typedef int ArrayType[5]; typedef
/aosp_15_r20/external/eigen/test/
H A Dnum_dimensions.cpp25 typedef Object<double, 2, 2> ArrayType; in map_num_dimensions() typedef
/aosp_15_r20/external/llvm/tools/llvm-pdbdump/
H A DVariableDumper.cpp131 if (auto *ArrayType = dyn_cast<PDBSymbolTypeArray>(&Type)) { in dumpSymbolTypeAndName() local
/aosp_15_r20/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java839 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 DConstants.h44 class ArrayType; variable
/aosp_15_r20/external/llvm/include/llvm/IR/
H A DConstants.h33 class ArrayType; variable

123456