Home | History | Annotate | Download | only in Frontend

Lines Matching refs:PH

243   for (ParseHelper PH(CommentStart, CommentStart+CommentLen); !PH.Done();) {
245 if (!PH.Search("expected"))
247 PH.Advance();
250 if (!PH.Next("-"))
252 PH.Advance();
256 if (PH.Next("error"))
258 else if (PH.Next("warning"))
260 else if (PH.Next("note"))
264 PH.Advance();
271 if (PH.Next("-re")) {
272 PH.Advance();
278 PH.SkipWhitespace();
282 if (PH.Next(Count))
283 PH.Advance();
286 PH.SkipWhitespace();
289 if (!PH.Next("{{")) {
290 PP.Diag(Pos.getLocWithOffset(PH.C-PH.Begin),
294 PH.Advance();
295 const char* const ContentBegin = PH.C; // mark content begin
298 if (!PH.Search("}}")) {
299 PP.Diag(Pos.getLocWithOffset(PH.C-PH.Begin),
303 const char* const ContentEnd = PH.P; // mark content end
304 PH.Advance();
326 PP.Diag(Pos.getLocWithOffset(ContentBegin-PH.Begin),