Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp624 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local
625 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
628 if (HasFunctionName) in PredefinedExpr()
633 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument
635 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
641 bool HasFunctionName = SL != nullptr; in Create() local
642 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()
648 bool HasFunctionName) { in CreateEmpty() argument
649 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()
651 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp590 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local
591 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()
595 if (HasFunctionName) in VisitPredefinedExpr()
H A DASTWriterStmt.cpp660 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local
661 Record.push_back(HasFunctionName); in VisitPredefinedExpr()
666 if (HasFunctionName) in VisitPredefinedExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2002 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);
2005 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()
2024 bool HasFunctionName);
H A DStmt.h416 unsigned HasFunctionName : 1;