Searched defs:line (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/sun/net/ftp/
H A DFtpDirParser.java40 * Takes one line from a directory listing and returns an FtpDirEntry instance
43 * @param line a <code>String</code>, a line sent by the FTP server as a
48 public FtpDirEntry parseLine(String line); argument
/libcore/ojluni/src/main/java/javax/crypto/
H A DCryptoPolicyParser.java53 ParsingException(int line, String msg) { argument
57 ParsingException(int line, String expect, String actual) { argument
/libcore/ojluni/src/main/java/java/util/
H A DServiceLoader.java72 * provider classes, one per line. Space and tab characters surrounding each
76 * each line all characters following the first comment character are ignored.
127 * <p> This file contains the single line:
243 private static void fail(Class<?> service, URL u, int line, String msg) argument
246 fail(service, u + ":" + line + ": " + msg);
249 // Parse a single line from the given configuration file, adding the name
250 // on the line to the names list.
457 * <blockquote style="font-size: smaller; line-height: 1.2"><span
/libcore/ojluni/src/main/java/java/util/jar/
H A DManifest.java170 * Adds line breaks to enforce a maximum 72 bytes per line.
172 static void make72Safe(StringBuffer line) { argument
173 int length = line.length();
177 line.insert(index, "\r\n ");
212 throw new IOException("manifest line too long");
234 // continuation line
366 * Reads 'len' bytes from the input stream, or until an end-of-line
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java584 * Gets the current line number within the XML file.
586 private int line() { method in class:ExpatParser
587 return line(this.pointer);
590 private static native int line(long pointer); method in class:ExpatParser
687 return line();
697 + ", line: " + getLineNumber()
730 * Includes line and column in the message.
744 String message, int line, int column) {
745 return "At line " + line
743 makeMessage( String message, int line, int column) argument
[all...]
/libcore/ojluni/src/main/java/java/time/chrono/
H A DHijrahChronology.java1025 * @param line the value of a year property
1030 private int[] parseMonths(String line) { argument
1032 String[] numbers = line.split("\\s");
1034 throw new IllegalArgumentException("wrong number of months on line: " + Arrays.toString(numbers) + "; count: " + numbers.length);
/libcore/ojluni/src/main/java/sun/net/ftp/impl/
H A DFtpClient.java207 public FtpDirEntry parseLine(String line) { argument
221 m = patterns[j].matcher(line);
285 file.setType(dir ? FtpDirEntry.Type.DIR : (line.charAt(0) == 'l' ? FtpDirEntry.Type.LINK : FtpDirEntry.Type.FILE));
296 public FtpDirEntry parseLine(String line) { argument
298 int i = line.lastIndexOf(";");
300 name = line.substring(i + 1).trim();
301 line = line.substring(0, i);
303 name = line.trim();
304 line
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 247 milliseconds