HomeSort by relevance Sort by last modified time
    Searched defs:lines (Results 26 - 50 of 2246) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/lib/DebugInfo/PDB/Raw/
ModStream.cpp 78 ModStream::lines(bool *HadError) const { function in class:ModStream
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpPutRequestTest.java 70 List<String> lines = readLinesFromFile(reader); local
71 assertLinesOfText(expectedInputToServeMethodViaFile, lines);
  /external/perf_data_converter/src/quipper/
perf_stat_parser.cc 29 std::vector<string> lines; local
30 SplitString(data, '\n', &lines);
32 for (size_t i = 0; i < lines.size(); ++i) {
33 TrimWhitespace(&lines[i]);
34 // Look for lines of the form:
39 SplitString(lines[i], ' ', &tokens);
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_doc_comment.cc 59 vector<string> lines = Split(comments, "\n", false /* skip_empty */); local
64 // We squash multiple blank lines down to one, and remove any trailing blank lines. We need
65 // to preserve the blank lines themselves, as this is relevant in the markdown.
67 // (We don't skip "just whitespace" lines, either.)
68 for (std::vector<string>::iterator it = lines.begin(); it != lines.end(); ++it) {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
HelpCommand.java 85 Iterable<String> lines = StringWrapper.wrapStringOnBreaks(registerInfoHelp, local
87 for (String line : lines) {
111 Iterable<String> lines = StringWrapper.wrapStringOnBreaks(registerInfoHelp, local
113 for (String line : lines) {
172 Iterable<String> lines = StringWrapper.wrapStringOnBreaks(registerInfoHelp, local
174 for (String line : lines) {
  /external/syslinux/com32/modules/
vesainfo.c 27 int lines; local
57 lines = 1;
62 if (++lines >= 23) {
64 lines = 0;
  /external/tensorflow/tensorflow/compiler/xla/tests/
test_macros.cc 46 std::vector<string> lines = tensorflow::str_util::Split(contents, '\n'); local
47 for (string& line : lines) {
  /external/testng/src/main/java/org/testng/reporters/jq/
ReporterPanel.java 34 List<String> lines = Reporter.getOutput(tr); local
35 if (! lines.isEmpty()) {
39 for (String output : lines) {
  /frameworks/av/services/camera/libcameraservice/utils/
LatencyHistogram.cpp 58 String8 lines; local
59 lines.appendFormat("%s (%" PRId64 ") samples\n", name, mTotalCount);
66 lines.append(lineBins);
67 lines.append(lineBinCounts);
69 write(fd, lines.string(), lines.size());
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
timings.go 29 size int64 // count or amount of data processed (allocations, data size, lines, funcs, ...)
30 unit string // unit of size measure (count, MB, lines, funcs, ...)
52 // the unit of measurement (e.g., MB, lines, no. of funcs, etc.).
70 var lines lines
129 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
137 lines.add(prefix+label, 1, dt, tot, events)
144 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
148 lines.add(prefix+"unaccounted", 1, unaccounted, tot, nil)
151 lines.add(prefix+"total", 1, tot, tot, nil
165 type lines [][]string type
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
timings.go 29 size int64 // count or amount of data processed (allocations, data size, lines, funcs, ...)
30 unit string // unit of size measure (count, MB, lines, funcs, ...)
52 // the unit of measurement (e.g., MB, lines, no. of funcs, etc.).
70 var lines lines
129 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
137 lines.add(prefix+label, 1, dt, tot, events)
144 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
148 lines.add(prefix+"unaccounted", 1, unaccounted, tot, nil)
151 lines.add(prefix+"total", 1, tot, tot, nil
165 type lines [][]string type
    [all...]
  /system/core/init/test_service/
test_service.cpp 49 std::vector<std::string> lines = android::base::Split(status, "\n"); local
50 for (const auto& line : lines) {
  /system/tools/aidl/tests/
aidl_test_sentinel_searcher.cpp 36 bool ReadLines(const string& input_file_path, vector<string>* lines) {
45 lines->push_back(line);
51 bool HasSentinel(const vector<string>& lines, const string& sentinel) {
52 for (const auto& line : lines) {
85 vector<string> lines; local
92 // Ignore errors when reading lines. The file may not immediately exist
94 lines.clear();
95 ReadLines(input_file_path, &lines);
97 if (HasSentinel(lines, success_sentinel)) {
101 if (HasSentinel(lines, failure_sentinel))
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
DvmLockSampleParser.java 72 List<String> lines = new ArrayList<>(); local
75 lines.add(line);
78 return parse(lines);
87 public DvmLockSampleItem parse(List<String> lines) {
90 for (String line : lines) {
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
MemInfoItemTest.java 40 assertTrue(output.has(MemInfoItem.LINES));
41 assertTrue(output.get(MemInfoItem.LINES) instanceof JSONObject);
45 JSONObject lines = output.getJSONObject(MemInfoItem.LINES); local
47 assertEquals(2, lines.length());
49 assertEquals(123, lines.get("foo"));
50 assertEquals(456, lines.get("bar"));
ProcrankItemTest.java 41 assertTrue(output.has(ProcrankItem.LINES));
42 assertTrue(output.get(ProcrankItem.LINES) instanceof JSONArray);
46 JSONArray lines = output.getJSONArray(ProcrankItem.LINES); local
48 assertEquals(2, lines.length());
49 assertTrue(lines.get(0) instanceof JSONObject);
51 JSONObject line = lines.getJSONObject(0);
SystemPropsItemTest.java 40 assertTrue(output.has(SystemPropsItem.LINES));
41 assertTrue(output.get(SystemPropsItem.LINES) instanceof JSONObject);
45 JSONObject lines = output.getJSONObject(SystemPropsItem.LINES); local
47 assertEquals(2, lines.length());
49 assertEquals("123", lines.get("foo"));
50 assertEquals("456", lines.get("bar"));
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
AnrParserTest.java 35 List<String> lines = Arrays.asList( local
50 AnrItem anr = new AnrParser().parse(lines);
61 assertEquals(ArrayUtil.join("\n", lines), anr.getStack());
68 List<String> lines = Arrays.asList( local
83 AnrItem anr = new AnrParser().parse(lines);
94 assertEquals(ArrayUtil.join("\n", lines), anr.getStack());
101 List<String> lines = Arrays.asList( local
116 AnrItem anr = new AnrParser().parse(lines);
127 assertEquals(ArrayUtil.join("\n", lines), anr.getStack());
134 List<String> lines = Arrays.asList local
    [all...]
MemHealthParserTest.java 31 List<String> lines = Arrays.asList("Foreground", local
50 MemoryHealthItem item = new MemoryHealthParser().parse(lines);
72 List<String> lines = Arrays.asList("Foreground", local
107 MemoryHealthItem item = new MemoryHealthParser().parse(lines);
128 List<String> lines = Arrays.asList("Foreground", local
164 MemoryHealthItem item = new MemoryHealthParser().parse(lines);
NativeCrashParserTest.java 35 List<String> lines = Arrays.asList( local
140 NativeCrashItem nc = new NativeCrashParser().parse(lines);
147 assertEquals(ArrayUtil.join("\n", lines), nc.getStack());
151 * Test that both types of native crash app lines are parsed.
154 List<String> lines = Arrays.asList( local
160 NativeCrashItem nc = new NativeCrashParser().parse(lines);
166 lines = Arrays.asList(
172 nc = new NativeCrashParser().parse(lines);
179 lines = Arrays.asList(
185 nc = new NativeCrashParser().parse(lines);
    [all...]
SmartMonkeyLogParserTest.java 36 List<String> lines = Arrays.asList( local
51 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines);
66 List<String> lines = Arrays.asList( local
81 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines);
101 List<String> lines = Arrays.asList( local
112 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines);
124 List<String> lines = Arrays.asList( local
140 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines);
TracesParserTest.java 35 List<String> lines = Arrays.asList( local
102 TracesItem traces = new TracesParser().parse(lines);
121 List<String> lines = Arrays.asList( local
139 TracesItem traces = new TracesParser().parse(lines);
144 lines = Arrays.asList(
162 traces = new TracesParser().parse(lines);
  /tools/tradefederation/core/src/com/android/tradefed/util/
SimplePerfStatResultParser.java 86 * Utility method to parse multiple lines of simpleperf output
88 * @param output multiple lines of string
104 String[] lines = simpleperfOutput.split("\n"); local
105 for (String line : lines) {
  /development/tools/bugreport/src/com/android/bugreport/bugreport/
BugreportParser.java 23 import com.android.bugreport.util.Lines;
73 * Parse the given lines. Add any information found to mBugreport.
75 public void parse(String section, String command, Lines<? extends Line> lines);
93 public Bugreport parse(Lines<? extends Line> lines) {
101 pos = lines.pos;
102 while (lines.hasNext()) {
103 final Line line = lines.next();
105 lines.rewind()
    [all...]
  /art/test/994-breakpoint-line/src/art/
Test994.java 54 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(multipath_method); local
57 Arrays.sort(lines);
61 for (Breakpoint.LineNumber line : lines) {

Completed in 603 milliseconds

12 3 4 5 6 7 8 91011>>