HomeSort by relevance Sort by last modified time
    Searched defs:Lines (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/llvm/tools/llvm-pdbdump/
CompilandDumper.h 23 enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2, Lines = 0x4 };
CompilandDumper.cpp 56 if (opts & Flags::Lines) {
64 auto Lines = Session.findLineNumbers(Symbol, *File);
66 while (auto Line = Lines->getNext()) {
  /development/tools/bugreport/src/com/android/bugreport/util/
Lines.java 28 * A stream of parsed lines. Can be rewound, and sub-regions cloned for
31 public class Lines<T extends Line> {
42 * Read the whole file into a Lines object.
44 public static Lines<Line> readLines(File file) throws IOException {
48 return Lines.readLines(reader);
57 * Read the whole file into a Lines object.
59 public static Lines<Line> readLines(BufferedReader in) throws IOException {
69 return new Lines<Line>(list);
73 * Construct with a list of lines.
75 public Lines(ArrayList<? extends Line> list)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
DscFile.h 58 SECTION_LINE *Lines;
  /external/llvm/lib/Support/
Signals.cpp 145 SmallVector<StringRef, 32> Lines;
146 Output.split(Lines, "\n");
147 auto CurLine = Lines.begin();
154 // Read pairs of lines (function name and file/line info) until we
157 if (CurLine == Lines.end())
165 if (CurLine == Lines.end())
SpecialCaseList.cpp 89 SmallVector<StringRef, 16> Lines;
90 SplitString(MB->getBuffer(), Lines, "\n\r");
92 for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
93 // Ignore empty lines and lines starting with "#"
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Signals.cpp 145 SmallVector<StringRef, 32> Lines;
146 Output.split(Lines, "\n");
147 auto CurLine = Lines.begin();
154 // Read pairs of lines (function name and file/line info) until we
157 if (CurLine == Lines.end())
165 if (CurLine == Lines.end())
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
DebugLinesSubsection.h 45 support::ulittle32_t NumLines; // Number of lines
49 // LineNumberEntry Lines[NumLines];
89 return S->kind() == DebugSubsectionKind::Lines;
112 std::vector<LineNumberEntry> Lines;
121 return S->kind() == DebugSubsectionKind::Lines;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
DebugLinesSubsection.h 45 support::ulittle32_t NumLines; // Number of lines
49 // LineNumberEntry Lines[NumLines];
89 return S->kind() == DebugSubsectionKind::Lines;
112 std::vector<LineNumberEntry> Lines;
121 return S->kind() == DebugSubsectionKind::Lines;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
DebugLinesSubsection.h 45 support::ulittle32_t NumLines; // Number of lines
49 // LineNumberEntry Lines[NumLines];
89 return S->kind() == DebugSubsectionKind::Lines;
112 std::vector<LineNumberEntry> Lines;
121 return S->kind() == DebugSubsectionKind::Lines;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;
  /external/clang/lib/Format/
BreakableToken.h 13 /// break long lines in tokens.
41 /// \brief Returns the number of lines in this token in the original code.
183 // Rearranges the whitespace between Lines[LineIndex-1] and Lines[LineIndex],
184 // so that all whitespace between the lines is accounted to Lines[LineIndex]
186 // - Lines[LineIndex] points to the text after that whitespace
187 // - Lines[LineIndex-1] shrinks by its trailing whitespace
189 // between the end of the text of Lines[LineIndex-1] and Lines[LineIndex
    [all...]
UnwrappedLineParser.h 35 /// within an unwrapped line does not affect any other unwrapped lines.
136 // Comments are sorted into unwrapped lines by whether they are in the same
144 // The parsed lines. Only added to through \c CurrentLines.
145 SmallVector<UnwrappedLine, 8> Lines;
147 // Preprocessor directives are parsed out-of-order from other unwrapped lines.
152 // New unwrapped lines are added via CurrentLines.
153 // Usually points to \c &Lines. While parsing a preprocessor directive when
  /external/deqp/framework/referencerenderer/
rrPrimitiveAssembler.hpp 202 struct Lines
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 66 Iterator begin() const { return Lines.begin(); }
67 Iterator end() const { return Lines.end(); }
71 VarStreamArray<InlineeSourceLine> Lines;
DebugLinesSubsection.h 39 support::ulittle32_t NumLines; // Number of lines
43 // LineNumberEntry Lines[NumLines];
82 return S->kind() == DebugSubsectionKind::Lines;
105 std::vector<LineNumberEntry> Lines;
114 return S->kind() == DebugSubsectionKind::Lines;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 66 Iterator begin() const { return Lines.begin(); }
67 Iterator end() const { return Lines.end(); }
71 VarStreamArray<InlineeSourceLine> Lines;
DebugLinesSubsection.h 39 support::ulittle32_t NumLines; // Number of lines
43 // LineNumberEntry Lines[NumLines];
82 return S->kind() == DebugSubsectionKind::Lines;
105 std::vector<LineNumberEntry> Lines;
114 return S->kind() == DebugSubsectionKind::Lines;

Completed in 1304 milliseconds

1 2 3 4 5