Searched refs:HasFunctionName (Results 1 – 5 of 5) sorted by relevance
511 bool HasFunctionName = SL != nullptr; in PredefinedExpr() local512 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()514 if (HasFunctionName) in PredefinedExpr()519 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() argument521 PredefinedExprBits.HasFunctionName = HasFunctionName; in PredefinedExpr()527 bool HasFunctionName = SL != nullptr; in Create() local528 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in Create()534 bool HasFunctionName) { in CreateEmpty() argument535 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName), in CreateEmpty()537 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
584 bool HasFunctionName = Record.readInt(); in VisitPredefinedExpr() local585 E->PredefinedExprBits.HasFunctionName = HasFunctionName; in VisitPredefinedExpr()588 if (HasFunctionName) in VisitPredefinedExpr()
585 bool HasFunctionName = E->getFunctionName() != nullptr; in VisitPredefinedExpr() local586 Record.push_back(HasFunctionName); in VisitPredefinedExpr()589 if (HasFunctionName) in VisitPredefinedExpr()
1975 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);1978 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; } in hasFunctionName()1993 bool HasFunctionName);
360 unsigned HasFunctionName : 1; variable