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

/packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/
H A DArrayInitializerFormatter.java62 public void outCommentLines(String lines) { argument
64 mOut.print(lines);
H A DMoreKeysResources.java212 private static String addPrefix(final String prefix, final String lines) { argument
214 for (final String line : lines.split("\n")) {
/packages/apps/Email/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.java1177 * Returns an Iterator for the lines in a <code>File</code>.
1203 * @return an Iterator of the lines in the file, never <code>null</code>
1222 * Returns an Iterator for the lines in a <code>File</code> using the default encoding for the VM.
1225 * @return an Iterator of the lines in the file, never <code>null</code>
1299 * @param lines the lines to write, <code>null</code> entries produce blank lines
1304 public static void writeLines(File file, String encoding, Collection<Object> lines) throws IOException { argument
1305 writeLines(file, encoding, lines, null);
1314 * @param lines th
1318 writeLines(File file, Collection<Object> lines) argument
1338 writeLines(File file, String encoding, Collection<Object> lines, String lineEnding) argument
1359 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/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.java771 * to the specified number of lines. If lines is -1 the entire message
772 * is fetched. This is implemented with RETR for lines = -1 or TOP
774 * emulated with RETR and extra lines are thrown away.
781 * @param lines
783 private void fetchBody(Pop3Message message, int lines) argument
787 if (lines == -1) {
793 response = executeSimpleCommand(String.format("TOP %d %d", messageId, lines));
813 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...]

Completed in 169 milliseconds