Searched refs:HasFunctionName (Results 1 – 5 of 5) sorted by relevance
513 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local514 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()516 if (HasFunctionName) in PredefinedExpr()521 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument523 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()529 bool HasFunctionName = SL != nullptr; in Create() local530 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()536 bool HasFunctionName) { in CreateEmpty() argument537 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()539 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
586 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local587 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()590 if (HasFunctionName) in VisitPredefinedExpr()
586 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local587 Record.push_back(HasFunctionName); in VisitPredefinedExpr()590 if (HasFunctionName) in VisitPredefinedExpr()
1977 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);1980 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()1995 bool HasFunctionName);
360 unsigned HasFunctionName : 1; variable