HomeSort by: relevance | last modified time | path
    Searched refs:ConstexprSpecKind (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
DeclSpec.cpp 590 const char *DeclSpec::getSpecifierName(ConstexprSpecKind C) {
592 case ConstexprSpecKind::Unspecified:
594 case ConstexprSpecKind::Constexpr:
596 case ConstexprSpecKind::Consteval:
598 case ConstexprSpecKind::Constinit:
601 llvm_unreachable("Unknown ConstexprSpecKind");
1091 bool DeclSpec::SetConstexprSpec(ConstexprSpecKind ConstexprKind,
1094 if (getConstexprSpecifier() != ConstexprSpecKind::Unspecified)
1363 if (getConstexprSpecifier() == ConstexprSpecKind::Constexpr)
1365 else if (getConstexprSpecifier() == ConstexprSpecKind::Consteval
    [all...]
SemaLambda.cpp 364 ConstexprSpecKind ConstexprKind,
1447 S.getLangOpts().CPlusPlus17 ? ConstexprSpecKind::Constexpr
1448 : ConstexprSpecKind::Unspecified,
1487 /*isInline=*/true, ConstexprSpecKind::Unspecified,
1555 /*isInline=*/true, ExplicitSpecifier(), ConstexprSpecKind::Unspecified,
1919 ? ConstexprSpecKind::Constexpr
1920 : ConstexprSpecKind::Unspecified);
SemaDeclCXX.cpp 7458 ? ConstexprSpecKind::Consteval
7459 : ConstexprSpecKind::Constexpr)
7460 : ConstexprSpecKind::Unspecified);
8556 FD->setConstexprKind(ConstexprSpecKind::Constexpr);
13047 Constexpr ? ConstexprSpecKind::Constexpr
13048 : ConstexprSpecKind::Unspecified);
13169 Constexpr ? BaseCtor->getConstexprKind() : ConstexprSpecKind::Unspecified,
13326 Constexpr ? ConstexprSpecKind::Constexpr
13327 : ConstexprSpecKind::Unspecified);
13963 Constexpr ? ConstexprSpecKind::Constexpr : ConstexprSpecKind::Unspecified
    [all...]
SemaDecl.cpp 7183 case ConstexprSpecKind::Unspecified:
7186 case ConstexprSpecKind::Consteval:
7192 case ConstexprSpecKind::Constexpr:
7204 case ConstexprSpecKind::Constinit:
8498 ConstexprSpecKind::Unspecified,
8508 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier();
8509 if (ConstexprKind == ConstexprSpecKind::Constinit) {
8513 ConstexprKind = ConstexprSpecKind::Unspecified;
9218 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier();
9219 if (ConstexprKind != ConstexprSpecKind::Unspecified)
    [all...]
SemaDeclAttr.cpp 8466 ConstexprSpecKind::Unspecified, FD->getTrailingRequiresClause());
SemaType.cpp 5605 if (D.getDeclSpec().getConstexprSpecifier() == ConstexprSpecKind::Constexpr &&
SemaOpenMP.cpp 6645 D.getDeclSpec().getConstexprSpecifier() == ConstexprSpecKind::Constexpr;
6647 D.getDeclSpec().getConstexprSpecifier() == ConstexprSpecKind::Consteval;
SemaExpr.cpp 19333 /*ConstexprKind*/ ConstexprSpecKind::Unspecified);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Specifiers.h 32 enum class ConstexprSpecKind { Unspecified, Constexpr, Consteval, Constinit };
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 435 static_cast<unsigned>(ConstexprSpecKind::Unspecified)),
542 static const char *getSpecifierName(ConstexprSpecKind C);
745 bool SetConstexprSpec(ConstexprSpecKind ConstexprKind, SourceLocation Loc,
754 ConstexprSpecKind getConstexprSpecifier() const {
755 return ConstexprSpecKind(ConstexprSpecifier);
760 return getConstexprSpecifier() != ConstexprSpecKind::Unspecified;
764 ConstexprSpecifier = static_cast<unsigned>(ConstexprSpecKind::Unspecified);
Sema.h 6589 ConstexprSpecKind ConstexprKind,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h 1858 SC_None, false, ConstexprSpecKind::Unspecified),
1953 bool isInline, ConstexprSpecKind ConstexprKind,
1967 bool isInline, ConstexprSpecKind ConstexprKind,
2415 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2458 ConstexprSpecKind ConstexprKind,
2678 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2694 ConstexprSpecKind ConstexprKind,
2734 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation,
2751 bool isInline, ExplicitSpecifier ES, ConstexprSpecKind ConstexprKind,
Decl.h 1965 ConstexprSpecKind ConstexprKind,
2001 ConstexprSpecKind ConstexprKind = ConstexprSpecKind::Unspecified,
2014 ConstexprSpecKind ConstexprKind,
2253 return getConstexprKind() != ConstexprSpecKind::Unspecified;
2255 void setConstexprKind(ConstexprSpecKind CSK) {
2258 ConstexprSpecKind getConstexprKind() const {
2259 return static_cast<ConstexprSpecKind>(FunctionDeclBits.ConstexprKind);
2262 return getConstexprKind() == ConstexprSpecKind::Constexpr;
2265 return getConstexprKind() == ConstexprSpecKind::Consteval
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclCXX.cpp 2200 ConstexprSpecKind ConstexprKind,
2213 ConstexprSpecKind::Unspecified, SourceLocation(), nullptr);
2586 ConstexprSpecKind ConstexprKind, InheritedConstructor Inherited,
2613 ExplicitSpecifier(), false, false, ConstexprSpecKind::Unspecified,
2626 ConstexprSpecKind ConstexprKind, InheritedConstructor Inherited,
2754 false, false, ConstexprSpecKind::Unspecified, nullptr);
2760 bool isInline, bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2787 false, ExplicitSpecifier(), ConstexprSpecKind::Unspecified,
2794 bool isInline, ExplicitSpecifier ES, ConstexprSpecKind ConstexprKind,
Decl.cpp 2848 ConstexprSpecKind ConstexprKind,
4851 ConstexprSpecKind ConstexprKind,
4864 nullptr, SC_None, false, ConstexprSpecKind::Unspecified, nullptr);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 1213 DS.SetConstexprSpec(ConstexprSpecKind::Constexpr, ConstexprLoc, PrevSpec,
1227 DS.SetConstexprSpec(ConstexprSpecKind::Consteval, ConstevalLoc, PrevSpec,
ParseDecl.cpp 3765 isInvalid = DS.SetConstexprSpec(ConstexprSpecKind::Constexpr, Loc,
3769 isInvalid = DS.SetConstexprSpec(ConstexprSpecKind::Consteval, Loc,
3773 isInvalid = DS.SetConstexprSpec(ConstexprSpecKind::Constinit, Loc,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 883 FD->setConstexprKind(static_cast<ConstexprSpecKind>(Record.readInt()));

Completed in 131 milliseconds