Searched defs:skip (Results 51 - 54 of 54) sorted by relevance

123

/libcore/ojluni/src/main/java/java/util/
H A DScanner.java103 * {@link #hasNextInt}) first skip any input that matches the delimiter
109 * <p> The {@link #findInLine}, {@link #findWithinHorizon}, and {@link #skip}
918 if (!skipped) { // Enforcing only one skip of leading delims
927 // The delims were whole and the matcher should skip them
1302 * {@link #findWithinHorizon}, and {@link #skip} methods will make a
1544 * the line to skip if no line separators are present.
1709 * This method will skip input if an anchored match of the specified
1721 * <p>Note that it is possible to skip something without risking a
1723 * match nothing, e.g., <code>sc.skip("[ \t]*")</code>.
1725 * @param pattern a string specifying the pattern to skip ove
1730 public Scanner skip(Pattern pattern) { method in class:Scanner
1763 public Scanner skip(String pattern) { method in class:Scanner
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DObjectInputStream.java1822 * method of obj; otherwise, attempts to skip over externalizable data.
1871 * Reads (or attempts to skip, if obj is null or is tagged with a
2337 public long skip(long n) throws IOException { method in class:ObjectInputStream.PeekInputStream
2347 return skipped + skip(n);
2633 public long skip(long len) throws IOException { method in class:ObjectInputStream.BlockDataInputStream
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
H A DHttpURLConnection.java1705 * receiving a 407 is normal and we just skip the stale check
2492 // clean up, particularly, skip the content part
2625 // skip HttpOnly cookies
3080 /* skip() calls read() in order to ensure that entire response gets
3081 * cached. same implementation as InputStream.skip */
3087 public long skip (long n) throws IOException { method in class:HttpURLConnection.HttpInputStream
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java589 skip();
592 skip();
596 skip();
607 skip();
623 skip();
630 skip();
640 skip();
681 skip();
732 skip();
735 skip();
1593 private void skip() throws IOException, XmlPullParserException { method in class:KXmlParser
[all...]

Completed in 2097 milliseconds

123