HomeSort by relevance Sort by last modified time
    Searched defs:ArrayType (Results 51 - 75 of 138) sorted by null

1 23 4 5 6

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
DerivedTypes.h 161 /// Common super class of ArrayType, StructType and VectorType.
369 class ArrayType : public SequentialType {
370 ArrayType(Type *ElType, uint64_t NumEl);
373 ArrayType(const ArrayType &) = delete;
374 ArrayType &operator=(const ArrayType &) = delete;
376 /// This static method is the primary way to construct an ArrayType
377 static ArrayType *get(Type *ElementType, uint64_t NumElements);
389 return cast<ArrayType>(this)->getNumElements()
    [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/llvm/lib/IR/
Type.cpp 92 if (auto *ATy = dyn_cast<ArrayType>(this)) {
141 if (auto *ATy = dyn_cast<ArrayType>(this))
600 // ArrayType Implementation
603 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
608 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) {
612 ArrayType *&Entry =
616 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
620 bool ArrayType::isValidElementType(Type *ElemTy)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Type.cpp 114 const ArrayType *ATy = dyn_cast<ArrayType>(this);
175 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
615 // ArrayType Implementation
618 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
624 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
629 ArrayType *&Entry =
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 230 ArrayType struct {
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 845 // ArrayType is an array type.
846 type ArrayType struct {
851 func (at *ArrayType) print(ps *printState) {
862 func (at *ArrayType) printInner(ps *printState) {
867 func (at *ArrayType) printDimension(ps *printState) {
878 if _, ok := in.(*ArrayType); ok {
895 func (at *ArrayType) Traverse(fn func(AST) bool) {
902 func (at *ArrayType) Copy(fn func(AST) AST, skip func(AST) bool) AST {
917 at = &ArrayType{Dimension: dimension, Element: element}
924 func (at *ArrayType) GoString() string
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
ast.go 374 // An ArrayType node represents an array or slice type.
375 ArrayType struct {
443 func (x *ArrayType) Pos() token.Pos { return x.Lbrack }
476 func (x *ArrayType) End() token.Pos { return x.Elt.End() }
508 func (*ArrayType) exprNode() {}
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
nodes.go 230 ArrayType struct {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 845 // ArrayType is an array type.
846 type ArrayType struct {
851 func (at *ArrayType) print(ps *printState) {
862 func (at *ArrayType) printInner(ps *printState) {
867 func (at *ArrayType) printDimension(ps *printState) {
878 if _, ok := in.(*ArrayType); ok {
895 func (at *ArrayType) Traverse(fn func(AST) bool) {
902 func (at *ArrayType) Copy(fn func(AST) AST, skip func(AST) bool) AST {
917 at = &ArrayType{Dimension: dimension, Element: element}
924 func (at *ArrayType) GoString() string
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
ast.go 374 // An ArrayType node represents an array or slice type.
375 ArrayType struct {
443 func (x *ArrayType) Pos() token.Pos { return x.Lbrack }
476 func (x *ArrayType) End() token.Pos { return x.Elt.End() }
508 func (*ArrayType) exprNode() {}
  /external/clang/lib/CodeGen/
CGVTables.cpp 655 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents);
656 return llvm::ConstantArray::get(ArrayType, Inits);
683 llvm::ArrayType *ArrayType =
684 llvm::ArrayType::get(CGM.Int8PtrTy, VTLayout->getNumVTableComponents());
696 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType, Linkage);
    [all...]
CGExprAgg.cpp 87 void EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
324 const ConstantArrayType *ArrayType =
326 assert(ArrayType && "std::initializer_list constructed from non-array");
339 ArrayType->getElementType())) {
359 llvm::Value *Size = Builder.getInt(ArrayType->getSize());
363 ArrayType->getElementType())) {
402 void AggExprEmitter::EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
    [all...]
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 548 public static class ArrayType extends ObjectType {
552 public ArrayType(int d, Type comp) {
692 if (t instanceof ArrayType)
814 return new ArrayType(dim, parseType(sig, c));
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDBTypes.h 173 ArrayType,
  /external/libcxxabi/src/
cxa_demangle.cpp 655 class ArrayType final : public Node {
660 ArrayType(Node *Base_, NodeOrString Dimension_)
671 ArrayType(Node *Base_)
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 184 ArrayType,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 178 ArrayType,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/
PDBTypes.h 178 ArrayType,

Completed in 548 milliseconds

1 23 4 5 6