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

1 2 3

  /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()) {
llvm-pdbdump.cpp 123 cl::opt<bool> Lines("lines", cl::desc("Line tables"), cl::cat(TypeCategory),
443 if (opts::pretty::Lines)
444 options = options | CompilandDumper::Flags::Lines;
503 if (opts::pretty::Lines) {
551 if (opts::pretty::Lines)
560 opts::pretty::Lines = true;
  /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 "#"
Host.cpp 1047 SmallVector<StringRef, 32> Lines;
1048 Str.split(Lines, "\n");
1052 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
1053 if (Lines[I].startswith("CPU implementer"))
1054 Implementer = Lines[I].substr(15).ltrim("\t :");
1058 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
1059 if (Lines[I].startswith("CPU part"))
1063 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
1079 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
1080 if (Lines[I].startswith("CPU part")
    [all...]
  /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())
raw_ostream.cpp 375 size_t Lines = Size / FB.NumPerLine;
376 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine;
  /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
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
TextEditorTypes.h 73 LIST_ENTRY *ListHead; // list head of lines
74 EFI_EDITOR_LINE *Lines; // lines of current file
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
HexEditorTypes.h 94 LIST_ENTRY *ListHead; // list head of lines
95 HEFI_EDITOR_LINE *Lines; // lines of current file
96 UINTN NumLines; // number of lines
  /external/clang/unittests/AST/
CommentParser.cpp 488 struct Lines {};
504 << "VerbatimBlockComment has " << VBC->getNumLines() << " lines(s), "
516 Lines,
525 << "VerbatimBlockComment has " << VBC->getNumLines() << " lines(s), "
531 << "VerbatimBlockComment has lines[0] \"" << ActualLine0.str() << "\", "
543 Lines,
553 << "VerbatimBlockComment has " << VBC->getNumLines() << " lines(s), "
559 << "VerbatimBlockComment has lines[0] \"" << ActualLine0.str() << "\", "
565 << "VerbatimBlockComment has lines[1] \"" << ActualLine1.str() << "\", "
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 148 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
149 DILineInfoTable::iterator Begin = Lines.begin();
150 DILineInfoTable::iterator End = Lines.end();
172 SourceFileName = Lines.front().second.FileName;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
GCOV.h 198 StringMap<GCOVLines *> Lines;
204 ~GCOVLines() { Lines.clear(); }
205 void add(uint32_t N) { Lines.push_back(N); }
210 SmallVector<uint32_t, 4> Lines;
  /external/clang/lib/AST/
CommentParser.cpp 668 SmallVector<VerbatimBlockLineComment *, 8> Lines;
684 Lines.push_back(Line);
691 S.copyArray(llvm::makeArrayRef(Lines)));
696 S.copyArray(llvm::makeArrayRef(Lines)));
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 494 DILineInfoTable Lines;
497 return Lines;
507 Lines.push_back(std::make_pair(Address, Result));
508 return Lines;
516 return Lines;
527 Lines.push_back(std::make_pair(Row.Address, Result));
530 return Lines;
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 383 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
384 for (auto &D : Lines) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 161 // list of line numbers and a single filename, representing lines that belong
166 Lines.push_back(Line);
171 return lengthOfGCOVString(Filename) + 2 + Lines.size();
177 for (int i = 0, e = Lines.size(); i != e; ++i)
178 write(Lines[i]);
188 SmallVector<uint32_t, 32> Lines;
192 // function, number of lines belonging to each block, and a set of edges to
197 GCOVLines *&Lines = LinesByFile[Filename];
198 if (!Lines) {
199 Lines = new GCOVLines(Filename, os)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
scesvc.h 53 PSCESVC_CONFIGURATION_LINE Lines;
77 PSCESVC_ANALYSIS_LINE Lines;
  /external/llvm/include/llvm/Support/
GCOV.h 316 DstEdges(), Lines() {}
319 void addLine(uint32_t N) { Lines.push_back(N); }
320 uint32_t getLastLine() const { return Lines.back(); }
361 SmallVector<uint32_t, 16> Lines;
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 216 // list of line numbers and a single filename, representing lines that belong
222 Lines.push_back(Line);
227 return lengthOfGCOVString(Filename) + 2 + Lines.size();
233 for (int i = 0, e = Lines.size(); i != e; ++i)
234 write(Lines[i]);
244 SmallVector<uint32_t, 32> Lines;
249 // function, number of lines belonging to each block, and a set of edges to
254 GCOVLines *&Lines = LinesByFile[Filename];
255 if (!Lines) {
256 Lines = new GCOVLines(Filename, os)
    [all...]

Completed in 3168 milliseconds

1 2 3