Searched defs:ElementType (Results 1 - 25 of 52) sorted by relevance

123

/external/llvm/tools/llvm-pdbdump/
H A DVariableDumper.cpp134 std::unique_ptr<PDBSymbol> ElementType = ArrayType->getElementType(); local
135 while (auto NestedArray = dyn_cast<PDBSymbolTypeArray>(ElementType.get())) {
139 ElementType = NestedArray->getElementType();
142 ElementType->dump(*this);
H A DFunctionDumper.cpp199 auto ElementType = Symbol.getSession().getSymbolById(ElementTypeId); local
200 if (!ElementType)
203 ElementType->dump(*this);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DICoverageNode.java23 public enum ElementType { enum in interface:ICoverageNode
74 public abstract ElementType getElementType();
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DTGValueTypes.cpp45 EVT ElementType; member in class:ExtendedVectorType
49 : ElementType(elty), NumElements(num) {}
54 return ElementType;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DElementType.java23 public class ElementType { class
32 private ElementType theParent; // parent of this element type
36 Construct an ElementType:
50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) { method in class:ElementType
157 public ElementType parent() {return theParent;}
175 public boolean canContain(ElementType other) {
274 public void setParent(ElementType parent) { theParent = parent; }
/external/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp406 Type *ElementType = GEP->getResultElementType(); local
407 uint64_t ElementSize = DL->getTypeAllocSize(ElementType);
/external/swiftshader/third_party/LLVM/include/llvm/
H A DDerivedTypes.h342 static ArrayType *get(Type *ElementType, uint64_t NumElements);
369 static VectorType *get(Type *ElementType, unsigned NumElements);
432 static PointerType *get(Type *ElementType, unsigned AddressSpace);
436 static PointerType *getUnqual(Type *ElementType) { argument
437 return PointerType::get(ElementType, 0);
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp208 QualType ElementType) {
204 InitializeArrayCookie(CodeGenFunction &CGF, Address NewPtr, llvm::Value *NumElements, const CXXNewExpr *expr, QualType ElementType) argument
H A DCGDecl.cpp1632 QualType ElementType; member in class:__anon1201::final
1640 ElementType(elementType), Destroyer(destroyer),
1645 ElementType, ElementAlign, Destroyer);
1655 QualType ElementType; member in class:__anon1201::final
1665 ElementType(elementType), Destroyer(destroyer),
1671 ElementType, ElementAlign, Destroyer);
H A DCGExprCXX.cpp832 const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy,
846 QualType::DestructionKind DtorKind = ElementType.isDestructedType();
850 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType);
878 ElementType, ElementAlign,
926 if (!CGM.getTypes().isZeroInitializable(ElementType))
938 getContext().getTypeSizeInChars(ElementType).getQuantity() *
992 ImplicitValueInitExpr IVIE(ElementType);
1005 assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) &&
1069 ElementType, ElementAlign,
1099 QualType ElementType, llv
831 EmitNewArrayInitializer( const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy, Address BeginPtr, llvm::Value *NumElements, llvm::Value *AllocSizeWithoutCookie) argument
1098 EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy, Address NewPtr, llvm::Value *NumElements, llvm::Value *AllocSizeWithoutCookie) argument
1523 QualType ElementType; member in struct:__anon1211::final
1525 CallObjectDelete(llvm::Value *Ptr, const FunctionDecl *OperatorDelete, QualType ElementType) argument
1537 pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete, llvm::Value *CompletePtr, QualType ElementType) argument
1545 EmitObjectDelete(CodeGenFunction &CGF, const CXXDeleteExpr *DE, Address Ptr, QualType ElementType) argument
1604 QualType ElementType; member in struct:__anon1212::final
1607 CallArrayDelete(llvm::Value *Ptr, const FunctionDecl *OperatorDelete, llvm::Value *NumElements, QualType ElementType, CharUnits CookieSize) argument
[all...]
H A DCGObjC.cpp126 QualType ElementType = Context.getObjCIdType().withConst(); local
128 = Context.getConstantArrayType(ElementType, APNumElements,
151 ElementType, AlignmentSource::Decl);
163 ElementType, AlignmentSource::Decl);
171 ElementType, AlignmentSource::Decl);
/external/llvm/bindings/go/llvm/
H A DDIBuilderBindings.cpp173 LLVMMetadataRef ElementType,
177 unwrap<DIType>(ElementType),
170 LLVMDIBuilderCreateArrayType(LLVMDIBuilderRef Dref, uint64_t SizeInBits, uint64_t AlignInBits, LLVMMetadataRef ElementType, LLVMMetadataRef Subscripts) argument
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h347 static ArrayType *get(Type *ElementType, uint64_t NumElements);
374 static VectorType *get(Type *ElementType, unsigned NumElements);
451 static PointerType *get(Type *ElementType, unsigned AddressSpace);
455 static PointerType *getUnqual(Type *ElementType) { argument
456 return PointerType::get(ElementType, 0);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h295 SVal getLValue(QualType ElementType, SVal Idx, SVal Base) const;
722 inline SVal ProgramState::getLValue(QualType ElementType, SVal Idx, SVal Base) const{ argument
724 return getStateManager().StoreMgr->getLValueElement(ElementType, *N, Base);
H A DMemRegion.h1007 QualType ElementType; member in class:clang::ento::ElementRegion
1012 ElementType(elementType), Index(Idx) {
1026 return ElementType;
1030 return ElementType;
/external/llvm/lib/IR/
H A DType.cpp608 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) { argument
609 assert(isValidElementType(ElementType) && "Invalid type for array element!");
611 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
613 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
616 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
635 VectorType *VectorType::get(Type *ElementType, unsigned NumElements) { argument
637 assert(isValidElementType(ElementType) && "Element type of a VectorType must "
641 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
642 VectorType *&Entry = ElementType->getContext().pImpl
643 ->VectorTypes[std::make_pair(ElementType, NumElement
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DType.cpp625 Type *ElementType = const_cast<Type*>(elementType); local
626 assert(isValidElementType(ElementType) && "Invalid type for array element!");
628 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
630 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
633 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
652 Type *ElementType = const_cast<Type*>(elementType); local
654 assert(isValidElementType(ElementType) &&
657 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
658 VectorType *&Entry = ElementType->getContext().pImpl
659 ->VectorTypes[std::make_pair(ElementType, NumElement
[all...]
/external/vixl/src/
H A Dinvalset-vixl.h48 // - The templated class `ElementType` must provide comparison operators so that
69 // 'ElementType' and 'KeyType' are respectively the types of the elements and
75 class ElementType, \
84 ElementType, N_PREALLOCATED_ELEMENTS, KeyType, INVALID_KEY, RECLAIM_FROM, \
105 void insert(const ElementType& element);
109 size_t erase(const ElementType& element);
121 const ElementType GetMinElement();
126 static bool IsValid(const ElementType& element);
127 static KeyType GetKey(const ElementType& element);
128 static void SetKey(ElementType* elemen
251 typedef typename S::_ElementType ElementType; typedef in class:vixl::InvalSetIterator
[all...]
/external/clang/lib/AST/
H A DType.cpp78 QualType ElementType,
80 uint64_t ElementSize = Context.getTypeSizeInChars(ElementType).getQuantity();
150 QualType ElementType,
156 ElementType->isVariablyModifiedType(),
157 (ElementType->containsUnexpandedParameterPack() ||
159 Context(Context), SizeExpr(SizeExpr), ElementType(ElementType),
167 QualType ElementType, Expr *SizeExpr) {
168 ID.AddPointer(ElementType.getAsOpaquePtr());
182 ElementType(vecTyp
77 getNumAddressingBits(const ASTContext &Context, QualType ElementType, const llvm::APInt &NumElements) argument
148 DependentSizedExtVectorType(const ASTContext &Context, QualType ElementType, QualType can, Expr *SizeExpr, SourceLocation loc) argument
165 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, QualType ElementType, Expr *SizeExpr) argument
[all...]
H A DMicrosoftMangle.cpp2242 QualType ElementType = T->getElementType(); local
2249 Extra.mangleType(ElementType, Range, QMM_Escape);
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVType.h199 SPIRVType *ElementType)
201 ElemTypeId(ElementType->getId()){
197 SPIRVTypePointer(SPIRVModule *M, SPIRVId TheId, SPIRVStorageClassKind TheStorageClass, SPIRVType *ElementType) argument
/external/ImageMagick/MagickCore/
H A Dxwindow-private.h97 } ElementType; typedef in typeref:enum:__anon123
122 ElementType
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp344 QualType ElementType, SVal Idx,
347 ID.Add(ElementType);
353 ElementRegion::ProfileRegion(ID, ElementType, Index, superRegion);
343 ProfileRegion(llvm::FoldingSetNodeID& ID, QualType ElementType, SVal Idx, const MemRegion* superRegion) argument
/external/flatbuffers/include/flatbuffers/
H A Dflexbuffers.h264 Type ElementType() { return type_; } function in class:flexbuffers::TypedVector
288 Type ElementType() { return type_; } function in class:flexbuffers::FixedTypedVector
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h412 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size, argument
414 : TypeRecord(TypeRecordKind::Array), ElementType(ElementType),
424 TypeIndex getElementType() const { return ElementType; }
431 TypeIndex ElementType; member in struct:llvm::codeview::ArrayRecord::Layout
437 TypeIndex ElementType; member in class:llvm::codeview::ArrayRecord

Completed in 581 milliseconds

123