/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | TypeNodes.td | 66 def DependentSizedArrayType : TypeNode<ArrayType>, AlwaysDependent;
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | TextNodeDumper.h | 329 void VisitDependentSizedArrayType(const DependentSizedArrayType *T);
|
H A D | CanonicalType.h | 463 template<> struct CanProxyAdaptor<DependentSizedArrayType>;
|
H A D | ASTContext.h | 202 mutable llvm::ContextualFoldingSet<DependentSizedArrayType, ASTContext &> 2824 const DependentSizedArrayType *getAsDependentSizedArrayType(QualType T) in getAsDependentSizedArrayType() 2826 return dyn_cast_or_null<DependentSizedArrayType>(getAsArrayType(T)); in getAsDependentSizedArrayType()
|
H A D | ASTNodeTraverser.h | 404 void VisitDependentSizedArrayType(const DependentSizedArrayType *T) { in VisitDependentSizedArrayType()
|
H A D | TypeProperties.td | 172 let Class = DependentSizedArrayType in {
|
H A D | RecursiveASTVisitor.h | 1031 DEF_TRAVERSE_TYPE(DependentSizedArrayType, { 1305 DEF_TRAVERSE_TYPELOC(DependentSizedArrayType, {
|
H A D | Type.h | 3823 class DependentSizedArrayType : public ArrayType { 3836 DependentSizedArrayType(QualType et, QualType can, Expr *e, 8088 return isa<DependentSizedArrayType>(CanonicalType);
|
H A D | TypeLoc.h | 1628 DependentSizedArrayType> {
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTContext.cpp | 4071 const auto *dat = cast<DependentSizedArrayType>(ty); in getVariableArrayDecayedType() 4149 DependentSizedArrayType::Profile( in getDependentSizedArrayType() 4154 DependentSizedArrayType *canonTy = in getDependentSizedArrayType() 4164 auto *newType = new (*this, alignof(DependentSizedArrayType)) in getDependentSizedArrayType() 4165 DependentSizedArrayType(elementType, QualType(), numElements, ASM, in getDependentSizedArrayType() 4174 canonTy = new (*this, alignof(DependentSizedArrayType)) in getDependentSizedArrayType() 4175 DependentSizedArrayType(QualType(canonElementType.Ty, 0), QualType(), in getDependentSizedArrayType() 4193 auto *sugaredType = new (*this, alignof(DependentSizedArrayType)) in getDependentSizedArrayType() 4194 DependentSizedArrayType(elementType, canon, numElements, ASM, in getDependentSizedArrayType() 6490 const auto *DSAT = cast<DependentSizedArrayType>(AT); in getUnqualifiedArrayType() [all …]
|
H A D | ASTStructuralEquivalence.cpp | 930 const auto *Array1 = cast<DependentSizedArrayType>(T1); in IsStructurallyEquivalent() 931 const auto *Array2 = cast<DependentSizedArrayType>(T2); in IsStructurallyEquivalent()
|
H A D | ODRHash.cpp | 964 void VisitDependentSizedArrayType(const DependentSizedArrayType *T) { in VisitDependentSizedArrayType()
|
H A D | TypePrinter.cpp | 614 const DependentSizedArrayType *T, in printDependentSizedArrayBefore() 621 const DependentSizedArrayType *T, in printDependentSizedArrayAfter()
|
H A D | Type.cpp | 243 DependentSizedArrayType::DependentSizedArrayType(QualType et, QualType can, in DependentSizedArrayType() function in DependentSizedArrayType 250 void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID, in Profile()
|
H A D | MicrosoftMangle.cpp | 3169 void MicrosoftCXXNameMangler::mangleType(const DependentSizedArrayType *T, in mangleType() 3198 const DependentSizedArrayType *DSAT = in mangleArrayType()
|
H A D | ASTDiagnostic.cpp | 150 else if (const auto *DSAT = dyn_cast<DependentSizedArrayType>(AT)) in desugarForDiagnostic()
|
H A D | TextNodeDumper.cpp | 1821 const DependentSizedArrayType *T) { in VisitDependentSizedArrayType()
|
H A D | ItaniumMangle.cpp | 3683 void CXXNameMangler::mangleType(const DependentSizedArrayType *T) { in mangleType()
|
H A D | ASTImporter.cpp | 1260 const DependentSizedArrayType *T) { in VisitDependentSizedArrayType()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateDeduction.cpp | 1919 if (const auto *DAA = dyn_cast<DependentSizedArrayType>(AA)) in DeduceTemplateArgumentsByTypeMatch() 4303 if (auto *DependentArrTy = dyn_cast_or_null<DependentSizedArrayType>(ArrTy)) { in DeduceFromInitializerList() 6401 cast<DependentSizedArrayType>(T)->getSizeExpr(), in MarkUsedTemplateParameters()
|
H A D | TreeTransform.h | 5592 const DependentSizedArrayType *T = TL.getTypePtr(); in TransformDependentSizedArrayType() 13444 } else if (const DependentSizedArrayType *DepArrayT in TransformCXXNewExpr() 13445 = dyn_cast<DependentSizedArrayType>(ArrayT)) { in TransformCXXNewExpr()
|
H A D | SemaTemplate.cpp | 5679 const DependentSizedArrayType* T) { in VisitDependentSizedArrayType()
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 7130 extern const AstTypeMatcher<DependentSizedArrayType> dependentSizedArrayType;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 2870 llvm::cast<clang::DependentSizedArrayType>(qual_type) in IsArrayType()
|