Searched refs:LineIt (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cxxmap/ |
| H A D | llvm-cxxmap.cpp | 99 for (line_iterator LineIt(NewSymbolFile, /*SkipBlanks=*/true, '#'); in remapSymbols() local 100 !LineIt.is_at_eof(); ++LineIt) { in remapSymbols() 101 StringRef Symbol = *LineIt; in remapSymbols() 115 Twine(LineIt.line_number()), in remapSymbols() 121 for (line_iterator LineIt(OldSymbolFile, /*SkipBlanks=*/true, '#'); in remapSymbols() local 122 !LineIt.is_at_eof(); ++LineIt) { in remapSymbols() 123 StringRef Symbol = *LineIt; in remapSymbols() 132 Twine(LineIt.line_number())); in remapSymbols()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | SymbolRemappingReader.cpp | 28 line_iterator LineIt(B, /*SkipBlanks=*/true, '#'); in read() local 32 B.getBufferIdentifier(), LineIt.line_number(), Msg); in read() 35 for (; !LineIt.is_at_eof(); ++LineIt) { in read() 36 StringRef Line = *LineIt; in read()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ReplayInlineAdvisor.cpp | 41 line_iterator LineIt(*BufferOrErr.get(), /*SkipBlanks=*/true); in ReplayInlineAdvisor() local 42 for (; !LineIt.is_at_eof(); ++LineIt) { in ReplayInlineAdvisor() 43 StringRef Line = *LineIt; in ReplayInlineAdvisor()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | BasicBlockSections.cpp | 435 line_iterator LineIt(*MBuf, /*SkipBlanks=*/true, /*CommentMarker=*/'#'); in getBBClusterInfo() local 440 Twine(LineIt.line_number()) + ": " + Message), in getBBClusterInfo() 455 for (; !LineIt.is_at_eof(); ++LineIt) { in getBBClusterInfo() 456 StringRef S(*LineIt); in getBBClusterInfo()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | SampleProfReader.cpp | 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() 271 reportError(LineIt.line_number(), in readImpl() 298 reportError(LineIt.line_number(), in readImpl() 300 *LineIt); in readImpl() 305 reportError(LineIt.line_number(), in readImpl() 373 line_iterator LineIt(Buffer, /*SkipBlanks=*/true, '#'); in hasFormat() local 374 if (!LineIt.is_at_eof()) { in hasFormat() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | AMDGPU.cpp | 779 for (llvm::line_iterator LineIt(**OutputBuf); !LineIt.is_at_end(); ++LineIt) { in detectSystemGPUs() local 780 GPUArchs.push_back(LineIt->str()); in detectSystemGPUs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 163 for (line_iterator LineIt(*Remapper->File, /*SkipBlanks=*/true, '#'); in create() local 164 !LineIt.is_at_eof(); ++LineIt) { in create() 165 std::pair<StringRef, StringRef> Parts = LineIt->split(' '); in create() 169 (InputFile + ":" + Twine(LineIt.line_number())).str(), in create()
|