Lines Matching refs:LineIt
241 line_iterator LineIt(*Buffer, /*SkipBlanks=*/true, '#'); in readImpl() local
252 for (; !LineIt.is_at_eof(); ++LineIt) { in readImpl()
253 if ((*LineIt)[(*LineIt).find_first_not_of(' ')] == '#') in readImpl()
267 if ((*LineIt)[0] != ' ') { in readImpl()
270 if (!ParseHead(*LineIt, FName, NumSamples, NumHeadSamples)) { in readImpl()
271 reportError(LineIt.line_number(), in readImpl()
272 "Expected 'mangled_name:NUM:NUM', found " + *LineIt); in readImpl()
295 if (!ParseLine(*LineIt, LineTy, Depth, NumSamples, LineOffset, in readImpl()
298 reportError(LineIt.line_number(), in readImpl()
300 *LineIt); in readImpl()
305 reportError(LineIt.line_number(), in readImpl()
306 "Found non-metadata after metadata: " + *LineIt); in readImpl()
373 line_iterator LineIt(Buffer, /*SkipBlanks=*/true, '#'); in hasFormat() local
374 if (!LineIt.is_at_eof()) { in hasFormat()
375 if ((*LineIt)[0] != ' ') { in hasFormat()
378 result = ParseHead(*LineIt, FName, NumSamples, NumHeadSamples); in hasFormat()