Home
last modified time | relevance | path

Searched refs:LineIt (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp89 for (line_iterator LineIt(NewSymbolFile, /*SkipBlanks=*/true, '#'); in remapSymbols() local
90 !LineIt.is_at_eof(); ++LineIt) { in remapSymbols()
91 StringRef Symbol = *LineIt; in remapSymbols()
105 Twine(LineIt.line_number()), in remapSymbols()
111 for (line_iterator LineIt(OldSymbolFile, /*SkipBlanks=*/true, '#'); in remapSymbols() local
112 !LineIt.is_at_eof(); ++LineIt) { in remapSymbols()
113 StringRef Symbol = *LineIt; in remapSymbols()
122 Twine(LineIt.line_number())); in remapSymbols()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DSymbolRemappingReader.cpp29 line_iterator LineIt(B, /*SkipBlanks=*/true, '#'); in read() local
33 B.getBufferIdentifier(), LineIt.line_number(), Msg); in read()
36 for (; !LineIt.is_at_eof(); ++LineIt) { in read()
37 StringRef Line = *LineIt; in read()
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DSampleProfReader.cpp195 line_iterator LineIt(*Buffer, /*SkipBlanks=*/true, '#'); in read() local
200 for (; !LineIt.is_at_eof(); ++LineIt) { in read()
201 if ((*LineIt)[(*LineIt).find_first_not_of(' ')] == '#') in read()
215 if ((*LineIt)[0] != ' ') { in read()
218 if (!ParseHead(*LineIt, FName, NumSamples, NumHeadSamples)) { in read()
219 reportError(LineIt.line_number(), in read()
238 reportError(LineIt.line_number(), in read()
240 *LineIt); in read()
277 line_iterator LineIt(Buffer, /*SkipBlanks=*/true, '#'); in hasFormat() local
278 if (!LineIt.is_at_eof()) { in hasFormat()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp143 for (line_iterator LineIt(*Remapper->File, /*SkipBlanks=*/true, '#'); in create() local
144 !LineIt.is_at_eof(); ++LineIt) { in create()
145 std::pair<StringRef, StringRef> Parts = LineIt->split(' '); in create()
149 (InputFile + ":" + Twine(LineIt.line_number())).str(), in create()