Home
last modified time | relevance | path

Searched refs:HasFunctionName (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp485 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local
486 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
488 if (HasFunctionName) in PredefinedExpr()
492 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument
494 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
500 bool HasFunctionName = SL != nullptr; in Create() local
501 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()
507 bool HasFunctionName) { in CreateEmpty() argument
508 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()
510 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp534 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local
535 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()
538 if (HasFunctionName) in VisitPredefinedExpr()
H A DASTWriterStmt.cpp438 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local
439 Record.push_back(HasFunctionName); in VisitPredefinedExpr()
442 if (HasFunctionName) in VisitPredefinedExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h1786 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);
1789 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()
1804 bool HasFunctionName);
H A DStmt.h329 unsigned HasFunctionName : 1; in alignas() local