Searched refs:Lines (Results 1 - 25 of 72) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h53 /// push "Row" onto the end of the "LineTable.Lines" vector. The end result
75 /// LineEntry.Lines array. They do this by using some of the bits to
104 /// Lines.push_back(Row);
115 /// Opcodes that will push "Row" onto the LineEntry.Lines include the
120 Collection Lines; ///< All line entries in the line table. member in class:llvm::gsym::LineTable
167 bool empty() const { return Lines.empty(); }
168 void clear() { Lines.clear(); }
170 Lines.push_back(LE);
173 return !Lines.empty();
176 return Lines
[all...]
/freebsd-11-stable/usr.bin/tset/
H A Dextern.h36 extern int Columns, isreset, Lines;
H A Dtset.c68 int Lines, Columns; /* window size */ variable
163 Lines = tgetnum("li");
169 Lines > 0 && Columns > 0) {
170 win.ws_row = Lines;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp269 unsigned BreakableComment::getLineCount() const { return Lines.size(); }
305 // Lines starting with '@' commonly have special meaning.
306 // Lines starting with '-', '-#', '+' or '*' are bulleted/numbered lists.
346 .split(Lines, UseCRLF ? "\r\n" : "\n");
349 Content.resize(Lines.size());
350 Content[0] = Lines[0];
351 ContentColumn.resize(Lines.size());
354 Tokens.resize(Lines.size());
355 for (size_t i = 1; i < Lines.size(); ++i)
367 if (Lines
[all...]
H A DAffectedRangeManager.h32 // Returns \c true if at least one line in \p Lines or one of their
34 bool computeAffectedLines(SmallVectorImpl<AnnotatedLine *> &Lines);
56 SmallVectorImpl<AnnotatedLine *> &Lines);
H A DAffectedRangeManager.cpp23 SmallVectorImpl<AnnotatedLine *> &Lines) {
24 SmallVectorImpl<AnnotatedLine *>::iterator I = Lines.begin();
25 SmallVectorImpl<AnnotatedLine *>::iterator E = Lines.end();
51 if (nonPPLineAffected(Line, PreviousLine, Lines))
103 SmallVectorImpl<AnnotatedLine *> &Lines) {
144 Lines[Line->MatchingOpeningBlockLineIndex]->Affected;
22 computeAffectedLines( SmallVectorImpl<AnnotatedLine *> &Lines) argument
101 nonPPLineAffected( AnnotatedLine *Line, const AnnotatedLine *PreviousLine, SmallVectorImpl<AnnotatedLine *> &Lines) argument
H A DUnwrappedLineFormatter.h40 unsigned format(const SmallVectorImpl<AnnotatedLine *> &Lines,
50 const SmallVectorImpl<AnnotatedLine *> &Lines,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugLinesSubsection.cpp54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {}
73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {}
86 B.Lines.push_back(LNE);
94 assert(B.Lines.size() == B.Columns.size());
115 assert(B.Lines.size() == B.Columns.size() || B.Columns.empty());
117 BlockHeader.NumLines = B.Lines.size();
126 if (auto EC = Writer.writeArray(makeArrayRef(B.Lines)))
141 Size += B.Lines.size() * sizeof(LineNumberEntry);
H A DDebugInlineeLinesSubsection.cpp49 Lines.getExtractor().HasExtraFiles = hasExtraFiles();
50 if (auto EC = Reader.readArray(Lines, Reader.bytesRemaining()))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h77 bool valid() const { return Lines.valid(); }
80 Iterator begin() const { return Lines.begin(); }
81 Iterator end() const { return Lines.end(); }
85 LinesArray Lines; member in class:llvm::codeview::final
H A DDebugLinesSubsection.h48 // LineNumberEntry Lines[NumLines];
88 return S->kind() == DebugSubsectionKind::Lines;
111 std::vector<LineNumberEntry> Lines; member in struct:llvm::codeview::final::Block
120 return S->kind() == DebugSubsectionKind::Lines;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolData.cpp35 if (auto Lines = getLineNumbers()) {
36 if (auto FirstLine = Lines->getNext())
H A DPDBSymbolFunc.cpp105 if (auto Lines = getLineNumbers()) {
106 if (auto FirstLine = Lines->getNext()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp121 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {}
130 const DebugLinesSubsectionRef &Lines);
132 SourceLineInfo Lines; member in struct:__anon1948::YAMLLinesSubsection
146 const DebugInlineeLinesSubsectionRef &Lines);
279 IO.mapRequired("Lines", Obj.Lines);
325 IO.mapTag("!Lines", true);
326 IO.mapRequired("CodeSize", Lines.CodeSize);
328 IO.mapRequired("Flags", Lines.Flags);
329 IO.mapRequired("RelocOffset", Lines
580 fromCodeViewSubsection( const DebugStringTableSubsectionRef &Strings, const DebugChecksumsSubsectionRef &Checksums, const DebugLinesSubsectionRef &Lines) argument
618 fromCodeViewSubsection( const DebugStringTableSubsectionRef &Strings, const DebugChecksumsSubsectionRef &Checksums, const DebugInlineeLinesSubsectionRef &Lines) argument
798 visitLines( DebugLinesSubsectionRef &Lines, const StringsAndChecksumsRef &State) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DHost.cpp155 SmallVector<StringRef, 32> Lines; local
156 ProcCpuinfoContent.split(Lines, "\n");
161 for (unsigned I = 0, E = Lines.size(); I != E; ++I) {
162 if (Lines[I].startswith("CPU implementer"))
163 Implementer = Lines[I].substr(15).ltrim("\t :");
164 if (Lines[I].startswith("Hardware"))
165 Hardware = Lines[I].substr(8).ltrim("\t :");
176 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
177 if (Lines[I].startswith("CPU part"))
181 return StringSwitch<const char *>(Lines[
288 SmallVector<StringRef, 32> Lines; local
[all...]
H A DSignals.cpp179 SmallVector<StringRef, 32> Lines; local
180 Output.split(Lines, "\n");
181 auto CurLine = Lines.begin();
197 if (CurLine == Lines.end())
205 if (CurLine == Lines.end())
H A DSpecialCaseList.cpp130 SmallVector<StringRef, 16> Lines; local
131 MB->getBuffer().split(Lines, '\n');
136 for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyCompilandDumper.h22 enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2, Lines = 0x4 }; enumerator in enum:llvm::pdb::CompilandDumper::Flags
H A DPrettyCompilandDumper.cpp56 if (opts & Flags::Lines) {
70 auto Lines = Session.findLineNumbers(Symbol, *File); local
71 if (!Lines)
75 while (auto Line = Lines->getNext()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp115 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); local
117 size_t num_entries = Lines.size();
122 for (auto& It : Lines) {
126 const_cast<char *>(Lines.front().second.FileName.c_str());
/freebsd-11-stable/lib/libc/net/
H A Dnsparser.y68 | Lines
71 Lines
73 | Lines Entry
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DDistro.cpp42 SmallVector<StringRef, 16> Lines; local
43 Data.split(Lines, "\n");
45 for (StringRef Line : Lines)
134 SmallVector<StringRef, 8> Lines; local
135 Data.split(Lines, "\n");
136 for (const StringRef& Line : Lines) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp81 void NotifyDebug(uint64_t CodeAddr, DILineInfoTable Lines);
280 DILineInfoTable Lines = Context->getLineInfoForAddressRange( local
283 NotifyDebug(*AddrOrErr, Lines);
434 DILineInfoTable Lines) {
438 if (Lines.empty())
446 rec.NrEntry = Lines.size();
449 DILineInfoTable::iterator Begin = Lines.begin();
450 DILineInfoTable::iterator End = Lines.end();
433 NotifyDebug(uint64_t CodeAddr, DILineInfoTable Lines) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp161 DILineInfoTable Lines = local
163 DILineInfoTable::iterator Begin = Lines.begin();
164 DILineInfoTable::iterator End = Lines.end();
186 SourceFileName = Lines.front().second.FileName;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DLineTable.cpp133 if (Lines.size() == 1) {
139 for (const auto &line_entry : Lines) {
193 LineEntry Prev(BaseAddr, 1, Lines.front().Line);
201 for (const auto &Curr : Lines) {
255 LT.Lines.push_back(Row);

Completed in 165 milliseconds

123