Home
last modified time | relevance | path

Searched refs:getConstexprKind (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/clang/include/clang/AST/
DDecl.h2233 return getConstexprKind() != ConstexprSpecKind::Unspecified; in isConstexpr()
2238 ConstexprSpecKind getConstexprKind() const { in getConstexprKind() function
2242 return getConstexprKind() == ConstexprSpecKind::Constexpr; in isConstexprSpecified()
2245 return getConstexprKind() == ConstexprSpecKind::Consteval; in isConsteval()
/external/llvm-project/clang/lib/Sema/
DSemaTemplateInstantiateDecl.cpp1991 D->hasWrittenPrototype(), D->getConstexprKind(), in VisitFunctionDecl()
2333 Constructor->getConstexprKind(), InheritedConstructor(), in VisitCXXMethodDecl()
2339 Destructor->isInlineSpecified(), false, Destructor->getConstexprKind(), in VisitCXXMethodDecl()
2346 Conversion->getConstexprKind(), Conversion->getEndLoc(), in VisitCXXMethodDecl()
2352 D->getConstexprKind(), D->getEndLoc(), in VisitCXXMethodDecl()
DSemaDeclCXX.cpp656 if (New->getConstexprKind() != Old->getConstexprKind()) { in MergeCXXFunctionDecl()
658 << New << static_cast<int>(New->getConstexprKind()) in MergeCXXFunctionDecl()
659 << static_cast<int>(Old->getConstexprKind()); in MergeCXXFunctionDecl()
1646 << static_cast<int>(DD->getConstexprKind()) << !FD in CheckConstexprDestructorSubobjects()
13111 Constexpr ? BaseCtor->getConstexprKind() : ConstexprSpecKind::Unspecified, in findInheritingConstructor()
DSemaDecl.cpp10227 if (OldFD->getConstexprKind() != NewFD->getConstexprKind()) in areMultiversionVariantFunctionsCompatible()
DSemaTemplate.cpp9102 Specialization->setConstexprKind(FD->getConstexprKind()); in CheckFunctionTemplateSpecialization()
DTreeTransform.h12516 E->getCallOperator()->getConstexprKind(), in TransformLambdaExpr()
/external/llvm-project/clang/lib/AST/
DASTImporter.cpp3353 D->isImplicit(), D->getConstexprKind(), in VisitFunctionDecl()
3370 D->isImplicit(), D->getConstexprKind(), TrailingRequiresClause)) in VisitFunctionDecl()
3385 D->getConstexprKind(), SourceLocation(), TrailingRequiresClause)) in VisitFunctionDecl()
3391 Method->isInlineSpecified(), D->getConstexprKind(), in VisitFunctionDecl()
3409 D->hasWrittenPrototype(), D->getConstexprKind(), in VisitFunctionDecl()
/external/llvm-project/clang/lib/Serialization/
DASTWriterDecl.cpp560 Record.push_back(static_cast<uint64_t>(D->getConstexprKind())); in VisitFunctionDecl()