OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:skip
(Results
1 - 25
of
684
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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/boringssl/src/ssl/
d1_srvr.c
136
int new_state, state,
skip
= 0;
local
241
skip
= 1;
267
skip
= 1;
283
skip
= 1;
447
if (!s->s3->tmp.reuse_message && !
skip
) {
455
skip
= 0;
d1_clnt.c
137
int new_state, state,
skip
= 0;
local
267
skip
= 1;
492
if (!s->s3->tmp.reuse_message && !
skip
) {
500
skip
= 0;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
SkippingCipher.java
9
*
Skip
numberOfBytes forwards, or backwards.
11
* @param numberOfBytes the number of bytes to
skip
(positive forward, negative backwards).
15
long
skip
(long numberOfBytes);
method in interface:SkippingCipher
18
* Reset the cipher and then
skip
forward to a given position.
/libcore/luni/src/main/java/java/io/
ObjectInput.java
99
public long
skip
(long byteCount) throws IOException;
method in interface:ObjectInput
FilterInputStream.java
95
* @see #
skip
(long)
150
public long
skip
(long byteCount) throws IOException {
method in class:FilterInputStream
151
return in.
skip
(byteCount);
FilterReader.java
92
* @see #
skip
(long)
154
* {@code read()} and {@code
skip
()} will occur from this new location. If
175
* default implementation is to
skip
characters in the filtered reader.
186
public long
skip
(long charCount) throws IOException {
method in class:FilterReader
188
return in.
skip
(charCount);
InputStream.java
84
* read or
skip
will actually read or
skip
that many bytes: they may read or
skip
fewer.
218
* choose to
skip
fewer bytes than requested. Callers should <i>always</i>
228
public long
skip
(long byteCount) throws IOException {
method in class:InputStream
Reader.java
174
* Invocations of {@code read()} and {@code
skip
()} will occur from this new
203
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
/packages/apps/Gallery2/jni_jpegstream/src/
inputstream_wrapper.cpp
48
int64_t InputStreamWrapper::
skip
(int64_t count) {
function in class:InputStreamWrapper
/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
69
@Override public long
skip
(long n) throws IOException {
method in class:CountingInputStream
70
long result = in.
skip
(n);
MultiInputStream.java
105
@Override public long
skip
(long n) throws IOException {
method in class:MultiInputStream
109
long result = in.
skip
(n);
116
return 1 + in.
skip
(n - 1);
MultiReader.java
64
@Override public long
skip
(long n) throws IOException {
method in class:MultiReader
68
long result = current.
skip
(n);
/external/skia/src/core/
SkBuffer.cpp
22
const void* SkRBuffer::
skip
(size_t size)
function in class:SkRBuffer
45
void* SkWBuffer::
skip
(size_t size)
function in class:SkWBuffer
/external/smali/util/src/main/java/org/jf/util/
RandomAccessFileInputStream.java
68
@Override public long
skip
(long l) throws IOException {
method in class:RandomAccessFileInputStream
/frameworks/av/media/img_utils/src/
Input.cpp
28
ssize_t Input::
skip
(size_t count) {
function in class:android::img_utils::Input
/libcore/luni/src/main/java/java/util/zip/
CheckedInputStream.java
97
*
Skip
up to {@code byteCount} bytes of data on the underlying input
100
* @param byteCount the number of bytes to
skip
.
105
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/UnifiedEmail/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/UnifiedEmail/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.
Completed in 688 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>