HomeSort by: relevance | last modified time | path
    Searched defs:Lines (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumLineNumbers.h 33 std::vector<NativeLineNumber> Lines;
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Distro.cpp 31 SmallVector<StringRef, 16> Lines;
32 File.get()->getBuffer().split(Lines, "\n");
36 for (StringRef Line : Lines)
57 SmallVector<StringRef, 16> Lines;
58 File.get()->getBuffer().split(Lines, "\n");
61 for (StringRef Line : Lines)
171 SmallVector<StringRef, 8> Lines;
172 Data.split(Lines, "\n");
173 for (const StringRef &Line : Lines) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LineTable.h 53 /// 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.
167 bool empty() const { return Lines.empty(); }
168 void clear() { Lines.clear(); }
174 if (Lines.empty())
176 return Lines.front();
183 if (Lines.empty()
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyCompilandDumper.h 22 enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2, Lines = 0x4 };
PrettyCompilandDumper.cpp 56 if (opts & Flags::Lines) {
70 auto Lines = Session.findLineNumbers(Symbol, *File);
71 if (!Lines)
75 while (auto Line = Lines->getNext()) {
llvm-pdbutil.h 41 Lines,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
Delta.cpp 54 /// Counts the amount of lines for a given file
56 int Lines = 0;
61 ++Lines;
63 return Lines;
173 errs() << " **** SUCCESS | lines: " << getLines(CurrentFilepath) << "\n";
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 115 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
117 size_t num_entries = Lines.size();
122 for (auto& It : Lines) {
126 const_cast<char *>(Lines.front().second.FileName.c_str());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/
llvm-cfi-verify.cpp 47 "specifies the number of lines of context to include, where zero "
53 "This specifies the number of lines of context for non-BAD "
55 "unspecified, it prints this number of contextual lines for BAD "
71 SmallVector<StringRef, 100> Lines;
72 File->getBuffer().split(Lines, '\n');
76 std::min<size_t>(Lines.size() + 1, LineInfo.Line + Context + 1);
83 outs() << i << ": " << Lines[i - 1] << "\n";
  /src/games/phantasia/
phantglobs.c 31 int Lines; /* line on screen counter for fight routines */
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 77 bool valid() const { return Lines.valid(); }
80 Iterator begin() const { return Lines.begin(); }
81 Iterator end() const { return Lines.end(); }
85 LinesArray Lines;
DebugLinesSubsection.h 44 support::ulittle32_t NumLines; // Number of lines
48 // LineNumberEntry Lines[NumLines];
88 return S->kind() == DebugSubsectionKind::Lines;
111 std::vector<LineNumberEntry> Lines;
120 return S->kind() == DebugSubsectionKind::Lines;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Signals.cpp 189 SmallVector<StringRef, 32> Lines;
190 Output.split(Lines, "\n");
191 auto CurLine = Lines.begin();
204 // Read pairs of lines (function name and file/line info) until we
207 if (CurLine == Lines.end())
215 if (CurLine == Lines.end())
SpecialCaseList.cpp 130 SmallVector<StringRef, 16> Lines;
131 MB->getBuffer().split(Lines, '\n');
136 for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
138 // Ignore empty lines and lines starting with "#"
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
BlockExtractor.cpp 128 SmallVector<StringRef, 16> Lines;
129 Buf->getBuffer().split(Lines, '\n', /*MaxSplit=*/-1,
131 for (const auto &Line : Lines) {
138 report_fatal_error("Invalid line format, expecting lines like: 'funcname bb1[;bb2..]'");
  /src/external/apache2/llvm/dist/clang/lib/Format/
BreakableToken.h 12 /// token type-specific logic to break long lines in tokens and reflow content
40 /// Generally, a breakable token consists of logical lines, addressed by a line
96 /// Returns the number of lines in this token in the original code.
141 // (Next lines do not start with `///` since otherwise -Wdocumentation picks
314 // Contains the original text of the lines of the block comment.
319 SmallVector<StringRef, 16> Lines;
321 // Contains the text of the lines excluding all leading and trailing
322 // whitespace between the lines. Note that the decoration (if present) is also
326 // Tokens[i] contains a reference to the token containing Lines[i] if the
333 // where all lines have a "*" prefix, or the leading "// " or "//" in case o
    [all...]
UnwrappedLineParser.h 35 /// within an unwrapped line does not affect any other unwrapped lines.
51 /// If this \c UnwrappedLine closes a block in a sequence of lines,
172 // Adds the comment preceding the next token to unwrapped lines.
198 // Comments are sorted into unwrapped lines by whether they are in the same
206 // The parsed lines. Only added to through \c CurrentLines.
207 SmallVector<UnwrappedLine, 8> Lines;
209 // Preprocessor directives are parsed out-of-order from other unwrapped lines.
214 // New unwrapped lines are added via CurrentLines.
215 // Usually points to \c &Lines. While parsing a preprocessor directive when
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
AtomicChange.cpp 98 llvm::SmallVector<llvm::StringRef, 8> Lines;
99 Code.substr(StartPos, EndPos - StartPos).split(Lines, '\n');
100 for (llvm::StringRef Line : Lines)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 76 std::vector<SourceLineEntry> Lines;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 38 if (Lines <= 0)
73 const int Lines;
79 StringRef FileName, int64_t Line, int Lines,
81 : Line(Line), Lines(Lines),
82 FirstLine(std::max(static_cast<int64_t>(1), Line - Lines / 2)),
83 LastLine(FirstLine + Lines - 1),
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Analysis.cpp 104 SmallVector<std::string, 3> Lines;
110 writeEscaped<Tag>(OS, join(Lines, Separator));
119 Lines.emplace_back(StringRef(InstPrinterStr).trim());
121 writeEscaped<Tag>(OS, join(Lines, Separator));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
SourcePrinter.cpp 97 // put live variable lines. Pick a less overloaded word.
288 // printed, then continue their live range lines.
348 // Chomp the file to get lines
351 std::vector<StringRef> &Lines = LineCache[LineInfo.FileName];
355 Lines.emplace_back(Start, I - Start - (BufferStart < I && I[-1] == '\r'));
359 Lines.emplace_back(Start, BufferEnd - Start);
460 "debug info line number {0} exceeds the number of lines in {1}",
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
SymbolCache.cpp 451 // If there is an error or there are no lines, just return the
462 if (SS.kind() != DebugSubsectionKind::Lines)
465 DebugLinesSubsectionRef Lines;
467 if (auto EC = Lines.initialize(Reader)) {
472 uint32_t RelocSegment = Lines.header()->RelocSegment;
473 uint32_t RelocOffset = Lines.header()->RelocOffset;
474 for (const LineColumnEntry &Group : Lines) {
490 (Lines.hasColumnInfo()) ? Group.Columns.front().StartColumn : 0;
499 if (Lines.hasColumnInfo() && ColIt != ColsEnd) {
507 uint64_t EndAddr = StartAddr + Lines.header()->CodeSize
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 290 DILineInfoTable Lines =
292 DILineInfoTable::iterator Begin = Lines.begin();
293 DILineInfoTable::iterator End = Lines.end();
315 SourceFileName = Lines.front().second.FileName;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 121 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {}
130 const DebugLinesSubsectionRef &Lines);
132 SourceLineInfo Lines;
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.RelocOffset)
    [all...]

Completed in 28 milliseconds

1 2