Searched refs:LineIt (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | SymbolRemappingReader.cpp | 29 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()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | BasicBlockSectionsProfileReader.cpp | 64 line_iterator LineIt(*MBuf, /*SkipBlanks=*/true, /*CommentMarker=*/'#'); in getBBClusterInfo() local 69 Twine(LineIt.line_number()) + ": " + Message), in getBBClusterInfo() 84 for (; !LineIt.is_at_eof(); ++LineIt) { in getBBClusterInfo() 85 StringRef S(*LineIt); in getBBClusterInfo()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | ReplayInlineAdvisor.cpp | 45 line_iterator LineIt(*BufferOrErr.get(), /*SkipBlanks=*/true); in ReplayInlineAdvisor() local 49 for (; !LineIt.is_at_eof(); ++LineIt) { in ReplayInlineAdvisor() 50 StringRef Line = *LineIt; in ReplayInlineAdvisor()
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | SampleProfReader.cpp | 243 line_iterator LineIt(*Buffer, /*SkipBlanks=*/true, '#'); in readImpl() local 255 for (; !LineIt.is_at_eof(); ++LineIt) { in readImpl() 256 if ((*LineIt)[(*LineIt).find_first_not_of(' ')] == '#') in readImpl() 270 if ((*LineIt)[0] != ' ') { in readImpl() 274 reportError(LineIt.line_number(), in readImpl() 300 reportError(LineIt.line_number(), in readImpl() 302 *LineIt); in readImpl() 307 reportError(LineIt.line_number(), in readImpl() 380 line_iterator LineIt(Buffer, /*SkipBlanks=*/true, '#'); in hasFormat() local 381 if (!LineIt.is_at_eof()) { in hasFormat() [all …]
|
| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/ |
| H A D | AMDGPU.cpp | 787 for (llvm::line_iterator LineIt(**OutputBuf); !LineIt.is_at_end(); ++LineIt) { in detectSystemGPUs() local 788 GPUArchs.push_back(LineIt->str()); in detectSystemGPUs()
|
| /llvm-project-15.0.7/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 170 for (line_iterator LineIt(*Remapper->File, /*SkipBlanks=*/true, '#'); in create() local 171 !LineIt.is_at_eof(); ++LineIt) { in create() 172 std::pair<StringRef, StringRef> Parts = LineIt->split(' '); in create() 176 (InputFile + ":" + Twine(LineIt.line_number())).str(), in create()
|