Searched defs:lines (Results 1 - 12 of 12) sorted by relevance

/packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
H A DArrayInitializerFormatter.java62 public void outCommentLines(String lines) { argument
64 mOut.print(lines);
H A DMoreKeysResources.java218 private static String addPrefix(final String prefix, final String lines) { argument
220 for (final String line : lines.split("\n")) {
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DIOUtils.java513 * Return an Iterator for the lines in a <code>Reader</code>.
535 * @return an Iterator of the lines in the reader, never null
544 * Return an Iterator for the lines in an <code>InputStream</code>, using
568 * @return an Iterator of the lines in the reader, never null
887 * @param lines the lines to write, null entries produce blank lines
894 public static void writeLines(Collection<Object> lines, String lineEnding, argument
896 if (lines == null) {
902 for (Iterator<Object> it = lines
927 writeLines(Collection<Object> lines, String lineEnding, OutputStream output, String encoding) argument
959 writeLines(Collection<Object> lines, String lineEnding, Writer writer) argument
[all...]
H A DFileUtils.java1181 * Returns an Iterator for the lines in a <code>File</code>.
1207 * @return an Iterator of the lines in the file, never <code>null</code>
1226 * Returns an Iterator for the lines in a <code>File</code> using the default encoding for the VM.
1229 * @return an Iterator of the lines in the file, never <code>null</code>
1303 * @param lines the lines to write, <code>null</code> entries produce blank lines
1308 public static void writeLines(File file, String encoding, Collection<Object> lines) throws IOException { argument
1309 writeLines(file, encoding, lines, null);
1318 * @param lines th
1322 writeLines(File file, Collection<Object> lines) argument
1342 writeLines(File file, String encoding, Collection<Object> lines, String lineEnding) argument
1363 writeLines(File file, Collection<Object> lines, String lineEnding) argument
[all...]
/packages/providers/CalendarProvider/
H A Dmaketests.py43 lines = str.split("\n")
46 for line in lines:
87 lines = stripTimezone(s) variable
88 for s in lines:
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DPyramid.cpp31 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) argument
100 *lines = size = 0;
104 *lines += height + border2;
/packages/apps/Camera2/jni/feature_mos/src/mosaic/
H A DPyramid.cpp31 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) argument
100 *lines = size = 0;
104 *lines += height + border2;
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DPyramid.cpp31 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) argument
100 *lines = size = 0;
104 *lines += height + border2;
/packages/apps/Email/src/com/android/email/mail/store/
H A DPop3Store.java551 * to the specified number of lines. If lines is -1 the entire message
552 * is fetched. This is implemented with RETR for lines = -1 or TOP
554 * emulated with RETR and extra lines are thrown away.
557 * @param lines
560 public void fetchBody(Pop3Message message, int lines, argument
564 if (lines == -1) {
571 String.format(Locale.US, "TOP %d %d", messageId, lines));
618 if (lines == -1) {
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthWeekEventsView.java230 * checking and reallocation. Used for drawing lines.
589 float lines[] = new float[8 * 4];
597 lines[i++] = xOffset;
598 lines[i++] = 0;
599 lines[i++] = xOffset;
600 lines[i++] = mHeight;
604 lines[i++] = 0;
605 lines[i++] = 0;
606 lines[i++] = mWidth;
607 lines[
778 addChipOutline(FloatRef lines, int count, int x, int y) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
H A DStringUtil.java404 * then passed to {@link #fixedWidth(String[], int)} as the {@code lines}
411 List<String> lines = new ArrayList<String>();
414 lines.add(line);
417 String[] lineArray = lines.toArray(new String[0]);
422 * Reformats the given array of lines to a fixed width by inserting
436 * @param lines array of lines to format
439 public static String fixedWidth(String[] lines, int width) { argument
442 for (String line : lines) {
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DStringUtil.java405 * then passed to {@link #fixedWidth(String[], int)} as the {@code lines}
412 List<String> lines = new ArrayList<String>();
415 lines.add(line);
418 String[] lineArray = lines.toArray(new String[0]);
423 * Reformats the given array of lines to a fixed width by inserting
437 * @param lines array of lines to format
440 public static String fixedWidth(String[] lines, int width) { argument
443 for (String line : lines) {

Completed in 2090 milliseconds