Home
last modified time | relevance | path

Searched refs:DependentSizedExtVectorType (Results 1 – 25 of 25) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h466 struct CanProxyAdaptor<DependentSizedExtVectorType>
467 : public CanProxyBase<DependentSizedExtVectorType> {
H A DASTNodeTraverser.h408 void VisitDependentSizedExtVectorType(const DependentSizedExtVectorType *T) { in VisitDependentSizedExtVectorType()
492 Visit(cast<DependentSizedExtVectorType>(TL.getType())->getSizeExpr()); in VisitDependentSizedExtVectorTypeLoc()
H A DTextNodeDumper.h330 void VisitDependentSizedExtVectorType(const DependentSizedExtVectorType *T);
H A DJSONNodeDumper.h229 void VisitDependentSizedExtVectorType(const DependentSizedExtVectorType *VT);
H A DTypeProperties.td237 let Class = DependentSizedExtVectorType in {
H A DRecursiveASTVisitor.h1048 DEF_TRAVERSE_TYPE(DependentSizedExtVectorType, {
1317 DEF_TRAVERSE_TYPELOC(DependentSizedExtVectorType, {
H A DTypeLoc.h1888 DependentSizedExtVectorType, VectorTypeLocInfo> {
H A DASTContext.h204 mutable llvm::ContextualFoldingSet<DependentSizedExtVectorType, ASTContext &>
H A DType.h3921 class DependentSizedExtVectorType : public Type, public llvm::FoldingSetNode {
3931 DependentSizedExtVectorType(QualType ElementType, QualType can,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td68 def DependentSizedExtVectorType : TypeNode<Type>, AlwaysDependent;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4541 DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType), in getDependentSizedExtVectorType()
4545 DependentSizedExtVectorType *Canon in getDependentSizedExtVectorType()
4547 DependentSizedExtVectorType *New; in getDependentSizedExtVectorType()
4551 New = new (*this, alignof(DependentSizedExtVectorType)) in getDependentSizedExtVectorType()
4552 DependentSizedExtVectorType(vecType, QualType(Canon, 0), SizeExpr, in getDependentSizedExtVectorType()
4557 New = new (*this, alignof(DependentSizedExtVectorType)) in getDependentSizedExtVectorType()
4558 DependentSizedExtVectorType(vecType, QualType(), SizeExpr, AttrLoc); in getDependentSizedExtVectorType()
4560 DependentSizedExtVectorType *CanonCheck in getDependentSizedExtVectorType()
4568 New = new (*this, alignof(DependentSizedExtVectorType)) in getDependentSizedExtVectorType()
4569 DependentSizedExtVectorType(vecType, CanonExtTy, SizeExpr, AttrLoc); in getDependentSizedExtVectorType()
[all …]
H A DType.cpp284 DependentSizedExtVectorType::DependentSizedExtVectorType(QualType ElementType, in DependentSizedExtVectorType() function in DependentSizedExtVectorType
296 DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID, in Profile()
1962 const DependentSizedExtVectorType *T) { in VisitDependentSizedExtVectorType()
H A DASTStructuralEquivalence.cpp956 const auto *Vec1 = cast<DependentSizedExtVectorType>(T1); in IsStructurallyEquivalent()
957 const auto *Vec2 = cast<DependentSizedExtVectorType>(T2); in IsStructurallyEquivalent()
H A DODRHash.cpp1038 void VisitDependentSizedExtVectorType(const DependentSizedExtVectorType *T) { in VisitDependentSizedExtVectorType()
H A DTypePrinter.cpp645 const DependentSizedExtVectorType *T, in printDependentSizedExtVectorBefore()
653 const DependentSizedExtVectorType *T, in printDependentSizedExtVectorAfter()
H A DJSONNodeDumper.cpp705 const DependentSizedExtVectorType *VT) { in VisitDependentSizedExtVectorType()
H A DTextNodeDumper.cpp1828 const DependentSizedExtVectorType *T) { in VisitDependentSizedExtVectorType()
H A DMicrosoftMangle.cpp3415 void MicrosoftCXXNameMangler::mangleType(const DependentSizedExtVectorType *T, in mangleType()
H A DItaniumMangle.cpp4163 void CXXNameMangler::mangleType(const DependentSizedExtVectorType *T) { in mangleType()
H A DASTImporter.cpp1276 const DependentSizedExtVectorType *T) { in VisitDependentSizedExtVectorType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp2104 } else if (const auto *VA = A->getAs<DependentSizedExtVectorType>()) { in DeduceTemplateArgumentsByTypeMatch()
2170 const auto *VP = P->castAs<DependentSizedExtVectorType>(); in DeduceTemplateArgumentsByTypeMatch()
2196 if (const auto *VA = A->getAs<DependentSizedExtVectorType>()) { in DeduceTemplateArgumentsByTypeMatch()
6429 const DependentSizedExtVectorType *VecType in MarkUsedTemplateParameters()
6430 = cast<DependentSizedExtVectorType>(T); in MarkUsedTemplateParameters()
H A DSemaTemplateInstantiate.cpp3000 const DependentSizedExtVectorType *T) { in VisitDependentSizedExtVectorType()
H A DTreeTransform.h5681 const DependentSizedExtVectorType *T = TL.getTypePtr(); in TransformDependentSizedExtVectorType()
5709 if (isa<DependentSizedExtVectorType>(Result)) { in TransformDependentSizedExtVectorType()
H A DSemaTemplate.cpp5684 const DependentSizedExtVectorType* T) { in VisitDependentSizedExtVectorType()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7144 extern const AstTypeMatcher<DependentSizedExtVectorType>