/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
ProxyReader.java | 79 * Invokes the delegate's <code>skip(long)</code> method. 80 * @param ln the number of bytes to skip 84 public long skip(long ln) throws IOException { method in class:ProxyReader 85 return in.skip(ln);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
CloseShieldInputStream.java | 97 * @see java.io.FilterInputStream#skip(long) 99 public long skip(long n) throws IOException { method in class:CloseShieldInputStream 101 return is.skip(n);
|
/packages/services/Telephony/src/org/apache/james/mime4j/ |
CloseShieldInputStream.java | 97 * @see java.io.FilterInputStream#skip(long) 99 public long skip(long n) throws IOException { method in class:CloseShieldInputStream 101 return is.skip(n);
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
Lexer.pm | 92 # Instruct the lexer to skip creating a token for current lexer rule 97 sub skip { subroutine
|
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/ |
CipherInputStreamTest.java | 142 int skip = 2; local 143 int ind = skip; // index into the data array (to check the got data) 145 cis.read(null, 0, skip); 146 int got = skip + cis.read(result, 0, 1); // the number of got bytes 169 * skip(long n) method testing. Tests that the method correctly skips the 179 int skipped = (int) cis.skip(2);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_StringReader.java | 183 * location. Invocations of <code>read()/skip()</code> will occur from 205 * @param count The number of characters to skip. 210 public long skip(long count) throws IOException { method in class:Support_StringReader
|
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLBIOSource.java | 97 public long skip(long byteCount) throws IOException { method in class:OpenSSLBIOSource.ByteBufferInputStream
|
/external/javasqlite/src/main/java/SQLite/ |
Blob.java | 77 * Skip over blob data. 80 public long skip(long n) throws IOException { method in class:BlobR
|
/external/libopus/celt/ |
opus_custom_demo.c | 60 opus_int32 skip; local 120 opus_custom_decoder_ctl(dec, OPUS_GET_LOOKAHEAD(&skip)); 185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout); 186 skip = 0;
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.h | 45 * Early exit. Useful to skip to the end of a function or block when 52 /** Block to skip to */ 70 struct lp_build_skip_context skip; member in struct:lp_build_mask_context
|
/external/proguard/src/proguard/io/ |
ManifestRewriter.java | 98 // Skip any corresponding, redundant \n or \r. 136 public long skip(long n) throws IOException method in class:ManifestRewriter.SplitLineReader
|
/external/skia/tests/ |
PackBitsTest.cpp | 115 uint32_t skip = gRand.nextU() % size; local 117 if (skip + write > size) { 118 write = size - skip; 120 SkPackBits::Unpack8(src, skip, write, dst); 121 bool match = memcmp(src, src2 + skip, write) == 0;
|
/external/toybox/lib/ |
getmountlist.c | 109 int len, skip; local 114 skip = strncmp(typelist, "no", 2); 118 if (!skip) { 122 skip = 1; 126 skip = 0; 131 return !skip;
|
/external/v8/test/cctest/ |
test-macro-assembler-mips64.cc | 185 Label to_jump, skip; local 188 __ Branch(&skip); 194 __ bind(&skip); 196 int check_size = masm->InstructionsGeneratedSince(&skip);
|
/external/zlib/src/contrib/puff/ |
pufftest.c | 14 of input to skip before inflating (e.g. to skip a zlib or gzip header), and 91 unsigned skip = 0; local 105 skip = (unsigned)atoi(arg + 1); 128 if (skip >= len) { 129 fprintf(stderr, "skip request of %d leaves no input\n", skip); 134 /* test inflate data with offset skip */ 135 len -= skip; 137 ret = puff(NIL, &destlen, source + skip, &sourcelen) [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
AH263Assembler.cpp | 135 size_t skip = V + PLEN + (P ? 0 : 2); local 137 buffer->setRange(buffer->offset() + skip, buffer->size() - skip);
|
/frameworks/base/core/java/android/util/ |
Base64InputStream.java | 96 public long skip(long n) throws IOException { method in class:Base64InputStream
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/ |
PatternScanner.java | 41 skip(mIgnorePattern); 45 // Skip ignore pattern 47 skip(mIgnorePattern); 62 // Skip ignore pattern 64 skip(mIgnorePattern); 79 // Skip ignore pattern 81 skip(mIgnorePattern); 92 public void skip(Pattern pattern) { method in class:PatternScanner
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
CountedDataInputStream.java | 65 public long skip(long length) throws IOException { method in class:CountedDataInputStream 66 long skip = in.skip(length); local 67 mCount += skip; 68 return skip; 72 if (skip(length) != length) throw new EOFException();
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/ |
BridgeBufferIterator.java | 43 public void skip(int byteCount) { method in class:BridgeBufferIterator
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/ |
viddec_mp4_videoobjectplane.c | 107 uint32_t code, skip; local 111 skip=3; 113 getbits = viddec_pm_peek_bits(parent, &code, skip); 118 viddec_pm_skip_bits(parent, skip); 122 skip=1; 126 skip++; 128 *dmv_length = 5 + skip; 132 skip=(code <= 1) ? 2 : 3; 135 viddec_pm_skip_bits(parent, skip);
|
/libcore/luni/src/main/java/java/io/ |
FileInputStream.java | 181 public long skip(long byteCount) throws IOException { method in class:FileInputStream 193 return super.skip(byteCount);
|
PushbackInputStream.java | 208 public long skip(long byteCount) throws IOException { method in class:PushbackInputStream 221 numSkipped += in.skip(byteCount - numSkipped);
|
PushbackReader.java | 341 public long skip(long charCount) throws IOException { method in class:PushbackReader 359 inSkipped = in.skip(requiredFromIn); 361 inSkipped = in.skip(charCount);
|
StringReader.java | 183 * Invocations of {@code read()} and {@code skip()} will occur from this new 202 * Reader#skip(long) overridden method}, this method may skip negative skip 208 * the maximum number of characters to skip. Positive values skip 209 * forward; negative values skip backward. 221 public long skip(long charCount) throws IOException { method in class:StringReader
|