/llvm-project/llvm/lib/DebugInfo/PDB/ |
H A D | PDBSymbolData.cpp | 35 if (auto FirstLine = Lines->getNext()) in getCompilandId() local 36 return FirstLine->getCompilandId(); in getCompilandId()
|
H A D | PDBSymbolFunc.cpp | 104 if (auto FirstLine = Lines->getNext()) { in getLineNumbers() 105 return FirstLine->getCompilandId(); 108 if (auto FirstLine = Lines->getNext()) { getCompilandId() local
|
/llvm-project/llvm/lib/CodeGen/ |
H A D | BasicBlockSectionsProfileReader.cpp | 368 StringRef FirstLine(*LineIt); in ReadProfile() local 369 if (FirstLine.consume_front("v")) { in ReadProfile() 370 if (getAsUnsignedInteger(FirstLine, 10, Version)) { in ReadProfile() 372 FirstLine + "'"); in ReadProfile()
|
/llvm-project/clang-tools-extra/clang-query/ |
H A D | Query.cpp | 148 auto FirstLine = Lines[0]; in run() 153 unsigned MaxLength = FirstLine.size(); in run() 155 OS << "\n " << PrefixText << FirstLine; in run() 118 auto FirstLine = Lines[0]; run() local
|
/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | DIPrinter.cpp | 56 if (L == FirstLine) in pruneSource() 72 const int64_t FirstLine; member in llvm::symbolize::SourceCode 80 FirstLine(std::max(static_cast<int64_t>(1), Line - Lines / 2)), in SourceCode() 81 LastLine(FirstLine + Lines - 1), in SourceCode() 88 int64_t L = FirstLine; in format()
|
/llvm-project/clang-tools-extra/clangd/unittests/ |
H A D | FindTargetTests.cpp | 42 llvm::StringRef FirstLine = local 44 FirstLine = FirstLine.rtrim(" {"); 45 Name = std::string(FirstLine.rtrim(" {"));
|
/llvm-project/llvm/unittests/DebugInfo/DWARF/ |
H A D | DWARFDebugFrameTest.cpp | 47 StringRef FirstLine = StringRef(Output).split('\n').first; in expectDumpResult() 48 EXPECT_EQ(FirstLine, ExpectedFirstLine); in expectDumpResult() local 58 StringRef FirstLine = StringRef(Output).split('\n').first; in expectDumpResult() 59 EXPECT_EQ(FirstLine, ExpectedFirstLine); in expectDumpResult() 346 StringRef FirstLine = StringRef(Output).split('\n').first; in expectDumpResult() 347 EXPECT_EQ(FirstLine, ExpectedFirstLine); in expectDumpResult() 388 StringRef FirstLine = StringRef(Output).split('\n').first; in expectDumpResult() 389 EXPECT_EQ(FirstLine, ExpectedFirstLine); in expectDumpResult() 60 StringRef FirstLine = StringRef(Output).split('\n').first; expectDumpResult() local 348 StringRef FirstLine = StringRef(Output).split('\n').first; expectDumpResult() local 391 StringRef FirstLine = StringRef(Output).split('\n').first; expectDumpResult() local
|
/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | LineTable.cpp | 69 const uint32_t FirstLine = (uint32_t)Data.getULEB128(&Offset); in parse() local 70 LineEntry Row(BaseAddr, 1, FirstLine); in parse()
|
/llvm-project/llvm/tools/llvm-cov/ |
H A D | SourceCoverageView.cpp | 227 unsigned FirstLine = StartSegment != EndSegment ? StartSegment->Line : 0; in print() local 235 else if (LI.line_number() < FirstLine) in print()
|
/llvm-project/clang/lib/Format/ |
H A D | UnwrappedLineFormatter.cpp | 1447 bool FirstLine = true; in format() 1451 FirstLine = false) { in format() 1497 FirstLine ? FirstStartColumn : 0, DryRun); in computeNewlines() 1501 FirstLine ? FirstStartColumn : 0, DryRun); in computeNewlines() 1505 FirstLine ? FirstStartColumn : 0, DryRun); in computeNewlines() 1356 bool FirstLine = true; format() local
|
H A D | UnwrappedLineParser.cpp | 4555 auto FirstLine = CurrentLines->size(); in addUnwrappedLine() 4563 if (CurrentLines->size() > FirstLine) in addUnwrappedLine() 4564 (*CurrentLines)[FirstLine].Level = OrigLevel; in addUnwrappedLine() 4489 auto FirstLine = CurrentLines->size(); parseVerilogCaseLabel() local
|
/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | SymbolCache.cpp | 497 LineInfo FirstLine(Group.LineNumbers.front().Flags); in findLineTable() 500 Entries.push_back({StartAddr, FirstLine, ColNum, Group.NameIndex, false}); in findLineTable() 493 LineInfo FirstLine(Group.LineNumbers.front().Flags); findLineTable() local
|
/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | SymbolFilePDB.cpp | 2004 if (auto FirstLine = Lines->getNext()) in GetCompilandId() 2005 return FirstLine->getCompilandId(); in GetCompilandId() 2019 if (auto FirstLine = Lines->getNext()) GetCompilandId() local
|
/llvm-project/llvm/lib/MC/MCParser/ |
H A D | MasmParser.cpp | 6097 std::string FirstLine = parseStringTo(AsmToken::EndOfStatement); in parseDirectiveComment() 6098 size_t DelimiterEnd = FirstLine.find_first_of("\b\t\v\f\r\x1A "); in parseDirectiveComment() local 6100 StringRef Delimiter = StringRef(FirstLine).take_front(DelimiterEnd); in parseDirectiveComment()
|