HomeSort by relevance Sort by last modified time
    Searched defs:lines (Results 126 - 150 of 1895) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/jline/src/src/main/java/jline/
History.java 59 List lines = new ArrayList(); local
63 lines.add(line);
66 for (Iterator i = lines.iterator(); i.hasNext();) {
  /external/mesa3d/src/gallium/auxiliary/indices/
u_indices_gen.py 35 'lines',
176 def lines(intype, outtype, inpv, outpv): function
177 preamble(intype, outtype, inpv, outpv, prim='lines')
259 lines(intype, outtype, inpv, outpv)
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpPostRequestTest.java 96 List<String> lines = readLinesFromFile(reader); local
99 }, lines);
  /external/skia/src/core/
SkEdgeBuilder.cpp 274 SkPoint lines[SkLineClipper::kMaxPoints]; local
275 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, canCullToTheRight);
279 ((SkAnalyticEdge*)edge)->setLine(lines[i], lines[i + 1]) :
280 ((SkEdge*)edge)->setLine(lines[i], lines[i + 1], shiftUp);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
Base64Coder.java 73 * Encodes a byte array into Base 64 format and breaks the output into lines
79 * @return A String containing the Base64 encoded data, broken into lines.
87 * lines.
99 * The line separator to be used to separate the output lines.
100 * @return A String containing the Base64 encoded data, broken into lines.
107 int lines = (iLen + blockLen - 1) / blockLen; local
108 int bufLen = ((iLen + 2) / 3) * 4 + lines * lineSeparator.length();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue99/
YamlBase64Test.java 47 String[] lines = text.split("\n"); local
49 for (int i = 1; i < lines.length; i++) {// skip first line
50 all = all + lines[i].trim();
  /external/toybox/toys/posix/
tail.c 1 /* tail.c - copy last lines from input to stdout.
17 Copy last lines from files to stdout. If no files listed, copy from
20 -n output the last NUMBER lines (default 10), +X counts from start.
37 long lines;
75 // Note: bytes and lines are negative here.
76 static int try_lseek(int fd, long bytes, long lines)
92 // Read from end to find enough lines, then output them.
95 while (lines && pos) {
116 else if (list->data[offset] == '\n' && !++lines) {
137 long bytes = TT.bytes, lines = TT.lines local
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3InputStream.cpp 207 String8 lines; local
208 lines.appendFormat(" Stream[%d]: Input\n", mId);
209 write(fd, lines.string(), lines.size());
  /frameworks/base/tools/bit/
aapt.cpp 177 vector<string> lines; local
178 split_lines(&lines, output);
179 for (size_t i=0; i<lines.size(); i++) {
180 const string& line = lines[i];
  /packages/apps/Calendar/src/com/android/calendar/
ColorChipView.java 116 float[] lines = new float[16]; local
118 lines [ptr++] = 0;
119 lines [ptr++] = top;
120 lines [ptr++] = right;
121 lines [ptr++] = top;
122 lines [ptr++] = 0;
123 lines [ptr++] = bottom - halfBorderWidth;
124 lines [ptr++] = right;
125 lines [ptr++] = bottom - halfBorderWidth;
126 lines [ptr++] = left
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/transport/
DiscourseLogger.java 25 * A class to keep last N of lines sent to the server and responses received from the server.
108 String[] lines = getLines(); local
109 if (lines.length == 0) {
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.cpp 31 int lines, size = calcStorage(width, height, border2, levels, &lines); local
34 + sizeof(short *) * lines +
40 ImageTypeShort position = (ImageTypeShort) &y[lines];
96 unsigned int PyramidShort::calcStorage(real width, real height, real border2, int levels, int *lines)
100 *lines = size = 0;
104 *lines += height + border2;
  /packages/providers/CalendarProvider/
maketests.py 43 lines = str.split("\n")
46 for line in lines:
87 lines = stripTimezone(s) variable
88 for s in lines:
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
WearLauncherStrategy.java 186 String[] lines = baos.toString().split(System.lineSeparator()); local
187 for (String line : lines) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Text_Suite.py 44 lines = line variable
  /prebuilts/go/darwin-x86/src/go/scanner/
scanner_test.go 345 var lines = []string{ var
470 for _, line := range lines {
  /prebuilts/go/linux-x86/src/go/scanner/
scanner_test.go 345 var lines = []string{ var
470 for _, line := range lines {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Text_Suite.py 44 lines = line variable
  /system/extras/simpleperf/
cmd_report_test.cpp 56 lines.clear();
60 lines.push_back(s);
63 ASSERT_GE(lines.size(), 2u);
68 std::vector<std::string> lines; member in class:ReportCommandTest
88 while (line_index < lines.size() &&
89 lines[line_index].find("Pid") == std::string::npos) {
92 ASSERT_LT(line_index + 2, lines.size());
99 while (line_index < lines.size() &&
100 lines[line_index].find("Overhead") == std::string::npos) {
103 ASSERT_LT(line_index + 1, lines.size())
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
MemoryHealthParser.java 66 public MemoryHealthItem parse(List<String> lines) {
70 for (String line : lines) {
108 List<String> lines = new ArrayList<String>(); local
111 lines.add(line);
114 return parse(lines);
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
DmesgParserTest.java 41 private static final String[] LINES = new String[] {
76 String[] lines = new String[] {""}; local
78 new ByteArrayInputStream(String.join("\n", lines).getBytes())))) {
92 DmesgItem actualDmesgItem = dmesgParser.parse(Arrays.asList(LINES));
111 new ByteArrayInputStream(String.join("\n", LINES).getBytes())))) {
128 for (String line : LINES) {
142 for (String line : LINES) {
159 for (String line : LINES) {
172 String[] lines = new String[] { local
180 for (String line : lines) {
    [all...]
EventsLogParserTest.java 50 List<String> lines = Arrays.asList(""); local
52 parseTransitionDelayInfo(readInputBuffer(getTempFile(lines)));
60 List<String> lines = Arrays local
68 parseTransitionDelayInfo(readInputBuffer(getTempFile(lines)));
77 List<String> lines = Arrays local
83 parseTransitionDelayInfo(readInputBuffer(getTempFile(lines)));
99 List<String> lines = Arrays local
105 parseTransitionDelayInfo(readInputBuffer(getTempFile(lines)));
119 List<String> lines = Arrays local
127 parseTransitionDelayInfo(readInputBuffer(getTempFile(lines)));
140 List<String> lines = Arrays local
163 List<String> lines = Arrays local
180 List<String> lines = Arrays local
198 List<String> lines = Arrays local
214 List<String> lines = Arrays local
231 List<String> lines = Arrays local
    [all...]
MonkeyLogParserTest.java 43 List<String> lines = Arrays.asList( local
76 MonkeyLogItem monkeyLog = new MonkeyLogParser().parse(lines);
108 List<String> lines = Arrays.asList( local
182 MonkeyLogItem monkeyLog = new MonkeyLogParser().parse(lines);
215 List<String> lines = Arrays.asList( local
255 MonkeyLogItem monkeyLog = new MonkeyLogParser().parse(lines);
283 * Test that a monkey can be parsed if there is a Java crash even if monkey lines are mixed in
287 List<String> lines = Arrays.asList( local
327 MonkeyLogItem monkeyLog = new MonkeyLogParser().parse(lines);
359 List<String> lines = Arrays.asList local
452 List<String> lines = Arrays.asList( local
548 List<String> lines = Arrays.asList( local
611 List<String> lines = Arrays.asList( local
656 List<String> lines = Arrays.asList( local
764 List<String> lines = Arrays.asList( local
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/browser/tests/
RandomUrlListPusher.java 92 throw new IOException("not enough lines in the file");
117 * Counts number of lines inside the text file as given in path
119 * @return number of lines
124 int lines = 0; local
126 lines++;
129 return lines;
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
BandwidthUtils.java 72 String[] lines = tmp.split("\n"); local
73 for (String line : lines) {
115 String[] lines = tmp.split("\n"); local
116 for (String line : lines) {

Completed in 1795 milliseconds

1 2 3 4 56 7 8 91011>>