HomeSort by relevance Sort by last modified time
    Searched defs:skip (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /external/regex-re2/benchlog/
mktable 100 sub skip() { subroutine
146 skip();
151 skip();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
LexerExtensions.cs 37 public static void skip( Lexer lexer ) method in class:Antlr.Runtime.JavaExtensions.LexerExtensions
39 lexer.Skip();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
LexerExtensions.cs 37 public static void skip( this Lexer lexer ) method in class:Antlr.Runtime.JavaExtensions.LexerExtensions
39 lexer.Skip();
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPInputStream.java 77 public long skip(long n) { method in class:SFTPInputStream
SFTPOutputStream.java 58 public long skip(long n) { method in class:SFTPOutputStream
  /external/skia/src/core/
SkBuffer.cpp 22 const void* SkRBuffer::skip(size_t size) function in class:SkRBuffer
37 void* SkWBuffer::skip(size_t size) function in class:SkWBuffer
  /libcore/luni/src/main/java/java/io/
ObjectInput.java 110 public long skip(long byteCount) throws IOException; method in interface:ObjectInput
FilterInputStream.java 95 * @see #skip(long)
170 public long skip(long byteCount) throws IOException { method in class:FilterInputStream
171 return in.skip(byteCount);
FilterReader.java 92 * @see #skip(long)
163 * {@code read()} and {@code skip()} will occur from this new location. If
184 * default implementation is to skip characters in the filtered reader.
195 public long skip(long charCount) throws IOException { method in class:FilterReader
197 return in.skip(charCount);
InputStream.java 84 * read or skip will actually read or skip that many bytes: they may read or skip fewer.
225 * <p>Note the "at most" in the description of this method: this method may choose to skip
231 * @param byteCount the number of bytes to skip.
236 public long skip(long byteCount) throws IOException { method in class:InputStream
Reader.java 187 * Invocations of {@code read()} and {@code skip()} will occur from this new
216 public long skip(long charCount) throws IOException { method in class:Reader
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 34 public abstract void skip(int byteCount); method in class:BufferIterator
NioBufferIterator.java 44 public void skip(int byteCount) { method in class:NioBufferIterator
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 99 /** Instruct the lexer to skip creating a token for current lexer rule
105 public function skip():void { function
  /external/guava/guava/src/com/google/common/io/
CountingInputStream.java 67 @Override public long skip(long n) throws IOException { method in class:CountingInputStream
68 long result = in.skip(n);
LimitInputStream.java 98 @Override public long skip(long n) throws IOException { method in class:LimitInputStream
100 long skipped = in.skip(n);
MultiInputStream.java 102 @Override public long skip(long n) throws IOException { method in class:MultiInputStream
106 long result = in.skip(n);
113 return 1 + in.skip(n - 1);
MultiReader.java 63 @Override public long skip(long n) throws IOException { method in class:MultiReader
67 long result = current.skip(n);
  /libcore/luni/src/main/java/java/util/zip/
CheckedInputStream.java 106 * Skip up to {@code byteCount} bytes of data on the underlying input
109 * @param byteCount the number of bytes to skip.
114 public long skip(long byteCount) throws IOException { method in class:CheckedInputStream
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLInputStream.java 77 public long skip(long byteCount) throws IOException { method in class:FtpURLInputStream
78 return is.skip(byteCount);
  /packages/apps/Email/src/org/apache/commons/io/input/
CountingInputStream.java 97 * @param length the number of bytes to skip
100 * @see java.io.InputStream#skip(long)
102 public long skip(final long length) throws IOException { method in class:CountingInputStream
103 final long skip = super.skip(length); local
104 this.count += skip;
105 return skip;
  /packages/apps/Email/src/org/apache/james/mime4j/util/
PartialInputStream.java 31 inputStream.skip(offset);
55 public long skip(long n) throws IOException { method in class:PartialInputStream
57 return super.skip(n); //To change body of overridden methods use File | Settings | File Templates.
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 193 * @param n The number of bytes to skip.
197 * @see InputStream#skip(long)
199 public long skip(long n) throws IOException { method in class:ContentLengthInputStream
204 // make sure we don't skip more bytes than are
207 // skip and keep track of the bytes actually skipped
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 84 public final long skip (long n) method in class:ByteArrayIStream
  /external/openssl/crypto/ec/
ec2_oct.c 172 size_t field_len, i, skip; local
236 skip = field_len - BN_num_bytes(x);
237 if (skip > field_len)
242 while (skip > 0)
245 skip--;
247 skip = BN_bn2bin(x, buf + i);
248 i += skip;
257 skip = field_len - BN_num_bytes(y);
258 if (skip > field_len)
263 while (skip > 0
    [all...]

Completed in 1112 milliseconds

1 2 3 4 5 6 7 8 910