Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp588 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local
589 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
591 if (HasFunctionName) in PredefinedExpr()
596 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument
598 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
604 bool HasFunctionName = SL != nullptr; in Create() local
605 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()
611 bool HasFunctionName) { in CreateEmpty() argument
612 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()
614 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp581 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local
582 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()
585 if (HasFunctionName) in VisitPredefinedExpr()
H A DASTWriterStmt.cpp595 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local
596 Record.push_back(HasFunctionName); in VisitPredefinedExpr()
599 if (HasFunctionName) in VisitPredefinedExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h1987 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);
1990 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()
2005 bool HasFunctionName);
H A DStmt.h363 unsigned HasFunctionName : 1; in alignas() local