Searched refs:HasFunctionName (Results 1 – 5 of 5) sorted by relevance
671 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local672 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()674 if (HasFunctionName) in PredefinedExpr()679 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument681 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()687 bool HasFunctionName = SL != nullptr; in Create() local688 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()694 bool HasFunctionName) { in CreateEmpty() argument695 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()697 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
582 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local583 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()586 if (HasFunctionName) in VisitPredefinedExpr()
593 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local594 Record.push_back(HasFunctionName); in VisitPredefinedExpr()597 if (HasFunctionName) in VisitPredefinedExpr()
1998 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);2001 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()2016 bool HasFunctionName);
365 unsigned HasFunctionName : 1; variable