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

1 2 3 4 5 6 7 8 910

  /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...]
  /external/clang/lib/Format/
BreakableToken.cpp 259 TokenText.substr(2, TokenText.size() - 4).split(Lines, "\n");
262 LeadingWhitespace.resize(Lines.size());
263 StartOfLineColumn.resize(Lines.size());
265 for (size_t i = 1; i < Lines.size(); ++i)
269 if (Lines.size() == 1 && !FirstInLine) {
272 // lines with the first one.
277 for (size_t i = 1, e = Lines.size(); i < e && !Decoration.empty(); ++i) {
279 if (i + 1 == e && Lines[i].empty())
281 if (!Lines[i].empty() && i + 1 != e && Decoration.startswith(Lines[i])
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
Misc.h 21 Advance/Retreat lines.
36 Advance/Retreat lines and set CurrentLine in BufferImage to it.
51 Free all the lines in HBufferImage.
53 Lines
59 @param[in] Lines The lines.
66 IN HEFI_EDITOR_LINE *Lines
  /development/tools/bugreport/src/com/android/bugreport/monkey/
MonkeyLogParser.java 23 import com.android.bugreport.util.Lines;
48 public void parse(Bugreport bugreport, Lines<? extends Line> in) throws IOException {
49 // Get the lines
50 final Lines<Line> lines = extractAnrLines(in); local
51 if (!lines.hasNext()) {
55 final Line line = lines.next();
62 final ArrayList<Anr> anrs = anrParser.parse(lines, true);
71 * Pull out the ANR lines from a monkey log.
73 private static Lines<Line> extractAnrLines(Lines<? extends Line> lines) throws IOException
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/bugreport/
MetadataParser.java 20 import com.android.bugreport.util.Lines;
59 public void parseHeader(Lines<? extends Line> lines) {
63 while (lines.hasNext()) {
64 final Line line = lines.next();
83 public void parseFooter(Lines<? extends Line> lines, int durationMs) {
  /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;
  /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;
  /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;
  /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;
  /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;
  /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-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;
  /prebuilts/clang/host/linux-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;
  /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;
  /development/tools/bugreport/src/com/android/bugreport/
Main.java 25 import com.android.bugreport.util.Lines;
78 bugreport = parser.parse(Lines.readLines(options.bugreport));
90 parser.parse(bugreport, Lines.readLines(options.monkey));
103 bugreport.logcat = parser.parse(Lines.readLines(options.logcat));
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68hc11/
malis-include.s 13 ;; Lines starting with '#' represent instructions that fail in GAS.
  /external/swiftshader/third_party/LLVM/lib/VMCore/
GCOV.cpp 175 DeleteContainerSeconds(Lines);
179 GCOVLines *&LinesForFile = Lines[Filename];
188 for (StringMap<GCOVLines *>::iterator I = Lines.begin(),
189 E = Lines.end(); I != E; ++I)
203 if (!Lines.empty()) {
205 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(),
206 LE = Lines.end(); LI != LE; ++LI) {
221 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(),
222 E = Lines.end(); I != E; ++I)
228 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin()
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/cpuinfo/
CpuUsageParser.java 21 import com.android.bugreport.util.Lines;
43 public CpuUsageSnapshot parse(Lines<? extends Line> lines) {
49 while (lines.hasNext()) {
50 final Line line = lines.next();
  /development/tools/bugreport/src/com/android/bugreport/stacks/
VmTracesParser.java 23 import com.android.bugreport.util.Lines;
52 public VmTraces parse(Lines<? extends Line> lines) {
56 while (lines.hasNext()) {
57 final Line line = lines.next();
60 lines.rewind();
65 while (lines.hasNext()) {
66 final Line line = lines.next();
70 lines.rewind();
72 final ProcessSnapshot snapshot = parser.parse(lines);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
EdkIIWorkspace.py 256 Lines = []
257 Lines = F.readlines()
260 Lines = []
267 for Line in Lines:
276 Lines.pop(Index)
278 Lines.insert(Index, Line)
286 Lines.append(Line)
291 F.writelines(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())
  /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())

Completed in 1162 milliseconds

1 2 3 4 5 6 7 8 910