/libcore/luni/src/test/java/tests/api/java/io/ |
FilterWriterTest.java | 69 public long skip(long count) throws IOException { method in class:FilterWriterTest.MockWriter
|
/libcore/sqlite-jdbc/src/main/java/SQLite/ |
Blob.java | 73 * Skip over blob data. 76 public long skip(long n) throws IOException { method in class:BlobR
|
/ndk/sources/cxx-stl/stlport/src/ |
sparc_atomic.s | 3 .skip 16
|
sparc_atomic64.s | 3 .skip 16
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
varray.h | 88 PTR GTY ((length ("%0.num_elements"), skip (""), 100 struct reg_info_def *GTY ((length ("%0.num_elements"), skip, 102 struct basic_block_def *GTY ((length ("%0.num_elements"), skip, 108 tree *GTY ((length ("%0.num_elements"), skip (""),
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
varray.h | 88 PTR GTY ((length ("%0.num_elements"), skip (""), 100 struct reg_info_def *GTY ((length ("%0.num_elements"), skip, 102 struct basic_block_def *GTY ((length ("%0.num_elements"), skip, 108 tree *GTY ((length ("%0.num_elements"), skip (""),
|
/dalvik/dexlist/ |
DexList.c | 60 str++; /* Skip the 'L'. */ 136 goto skip; 144 skip:
|
/dalvik/vm/mterp/x86/ |
OP_IPUT_OBJECT.S | 65 je 1f # skip card mark if null store
|
OP_SPUT_OBJECT.S | 27 je 1f # skip card mark if null
|
/dalvik/vm/mterp/x86-atom/ |
OP_APUT_OBJECT.S | 47 je .L${opcode}_skip_check # reference is null so skip type check
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessageLite.java | 263 public long skip(final long n) throws IOException { method in class:AbstractMessageLite.Builder.LimitedInputStream 264 final long result = super.skip(Math.min(n, limit));
|
/frameworks/base/test-runner/src/android/test/ |
AndroidTestRunner.java | 137 void setSkipExecution(boolean skip) { 138 mSkipExecution = skip;
|
/libcore/luni/src/main/java/java/io/ |
BufferedInputStream.java | 383 * the number of bytes to skip. {@code skip} does nothing and 390 public synchronized long skip(long amount) throws IOException { method in class:BufferedInputStream 421 // Couldn't get all the bytes, skip what we read 427 return read + localIn.skip(amount - read);
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipFile.java | 273 // Skip the name and this "extra" data or whatever it is: 274 rafstrm.skip(entry.nameLen + localExtraLenOrWhatever); 438 public long skip(long n) throws IOException {
|
/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/ |
JarURLConnectionImpl.java | 413 public long skip(long nbytes) throws IOException { method in class:JarURLConnectionImpl.JarURLConnectionInputStream 414 return inputStream.skip(nbytes);
|
/external/openssl/crypto/ec/ |
ecp_smpl.c | 773 size_t field_len, i, skip; local 834 skip = field_len - BN_num_bytes(x); 835 if (skip > field_len) 840 while (skip > 0) 843 skip--; 845 skip = BN_bn2bin(x, buf + i); 846 i += skip; 855 skip = field_len - BN_num_bytes(y); 856 if (skip > field_len) 861 while (skip > 0 [all...] |
/external/chromium/net/tools/flip_server/ |
balsa_headers.cc | 250 start->skip = true; 385 i->skip = true; 396 if (line.skip) { 439 if (line.skip) { 500 if (header_lines_[i].skip) { 511 line.skip = true; 529 if (!line.skip) {
|
/external/tremolo/Tremolo/ |
bitwiseARM.s | 133 @ We had overrun when we started, so we need to skip -r10 bits. 151 ADDS r14,r14,r10 @ r14= length in bits-bits to skip 154 RSB r10,r10,#0 @ r10= bits to skip 196 ADDS r10,r10,r2 @ r10= bits left in word after skip 373 @ We had overrun when we started, so we need to skip -r10 bits. 391 ADDS r14,r14,r10 @ r14= length in bits-bits to skip 394 RSB r10,r10,#0 @ r10= bits to skip
|
/dalvik/dx/src/com/android/dx/ssa/ |
SCCP.java | 261 boolean skip=false; 278 skip = true; 309 return skip ? null : CstInteger.make(vR);
|
/external/chromium/third_party/zlib/contrib/minizip/ |
miniunz.c | 292 int skip=0; local 332 skip = 1; 338 if ((skip==0) && (err==UNZ_OK))
|
/external/zlib/contrib/minizip/ |
miniunz.c | 350 int skip=0; local 390 skip = 1; 396 if ((skip==0) && (err==UNZ_OK))
|
/external/zlib/ |
gzlib.c | 303 offset += state->skip; 321 /* calculate skip amount, rewinding if needed for back seek when reading */ 328 if (gzrewind(file) == -1) /* rewind, then skip to offset */ 332 /* if reading, skip what's in output buffer (one less gzgetc() check) */ 342 /* request skip (if not zero) */ 345 state->skip = offset; 376 return state->pos + (state->seek ? state->skip : 0);
|
gzread.c | 160 /* skip rest of header */ 329 /* Skip len uncompressed bytes of output. Return -1 on error, 0 on success. */ 336 /* skip over len bytes or reach end-of-file, whichever comes first */ 338 /* skip over whatever is in output buffer */ 352 /* need more data to skip -- load up output buffer */ 392 /* process a skip request */ 395 if (gz_skip(state, state->skip) == -1) 469 /* try output buffer (no need to check for skip request) */ 497 /* process a skip request */ 500 if (gz_skip(state, state->skip) == -1 [all...] |
/external/libpng/ |
pngrutil.c | 148 /* Optionally skip data and then check the CRC. Depending on whether we 154 png_opt_crc_finish(png_structp png_ptr, png_uint_32 skip, int check_crc) 159 for (i = (png_size_t)skip; i > istop; i -= istop) 192 /* Optionally skip data and then check the CRC. Depending on whether we 198 png_crc_finish(png_structp png_ptr, png_uint_32 skip) 200 return png_opt_crc_finish(png_ptr, skip, 1); 1066 png_uint_32 skip = 0; local 1095 skip = length - (png_uint_32)65535L; 1105 if (png_crc_finish(png_ptr, skip)) 1189 png_uint_32 skip = 0; local 2015 png_uint_32 skip = 0; local 2384 png_uint_32 skip = 0; local [all...] |
/cts/tests/tests/content/src/android/content/res/cts/ |
AssetFileDescriptor_AutoCloseInputStreamTest.java | 109 method = "skip", 140 assertEquals(5, inputStream.skip(5));
|