Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExpr.cpp671 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local
672 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
674 if (HasFunctionName) in PredefinedExpr()
679 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument
681 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
687 bool HasFunctionName = SL != nullptr; in Create() local
688 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()
694 bool HasFunctionName) { in CreateEmpty() argument
695 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()
697 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp582 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local
583 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()
586 if (HasFunctionName) in VisitPredefinedExpr()
H A DASTWriterStmt.cpp593 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local
594 Record.push_back(HasFunctionName); in VisitPredefinedExpr()
597 if (HasFunctionName) in VisitPredefinedExpr()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExpr.h1998 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);
2001 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()
2016 bool HasFunctionName);
H A DStmt.h365 unsigned HasFunctionName : 1; variable