Home
last modified time | relevance | path

Searched refs:IsConstexpr (Results 1 – 6 of 6) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDecl.h816 unsigned IsConstexpr : 1; variable
1234 return isa<ParmVarDecl>(this) ? false : NonParmVarDeclBits.IsConstexpr; in isConstexpr()
1238 NonParmVarDeclBits.IsConstexpr = IC; in setConstexpr()
1564 bool IsConstexpr : 1; variable
1657 IsConstexpr(isConstexprSpecified), UsesSEHTry(false), in FunctionDecl()
1835 bool isConstexpr() const { return IsConstexpr; } in isConstexpr()
1836 void setConstexpr(bool IC) { IsConstexpr = IC; } in setConstexpr()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderDecl.cpp743 FD->IsConstexpr = Record[Idx++]; in VisitFunctionDecl()
1185 VD->NonParmVarDeclBits.IsConstexpr = Record[Idx++]; in VisitVarDeclImpl()
HDASTWriterDecl.cpp459 Record.push_back(D->IsConstexpr); in VisitFunctionDecl()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaExprCXX.cpp6613 bool IsConstexpr, in ActOnFinishFullExpr() argument
6661 CheckCompletedExpr(FullExpr.get(), CC, IsConstexpr); in ActOnFinishFullExpr()
HDSemaChecking.cpp8128 bool IsConstexpr) { in CheckCompletedExpr() argument
8131 if (!IsConstexpr && !E->isValueDependent()) in CheckCompletedExpr()
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h4719 bool IsConstexpr = false,
8887 bool IsConstexpr = false);