Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp513 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local
514 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
516 if (HasFunctionName) in PredefinedExpr()
521 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument
523 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()
529 bool HasFunctionName = SL != nullptr; in Create() local
530 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()
536 bool HasFunctionName) { in CreateEmpty() argument
537 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()
539 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp586 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local
587 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()
590 if (HasFunctionName) in VisitPredefinedExpr()
H A DASTWriterStmt.cpp586 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local
587 Record.push_back(HasFunctionName); in VisitPredefinedExpr()
590 if (HasFunctionName) in VisitPredefinedExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h1977 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);
1980 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()
1995 bool HasFunctionName);
H A DStmt.h360 unsigned HasFunctionName : 1; variable