HomeSort by relevance Sort by last modified time
    Searched refs:skip (Results 51 - 75 of 361) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/ppp/pppd/include/
pcap-int.h 63 int skip; member in struct:pcap_md
  /frameworks/base/core/jni/
android_database_SQLiteDebug.cpp 99 int skip; local
110 skip = 0;
119 if (line[18] == '-') skip = 1;
142 if (skip) {
  /frameworks/base/media/tests/omxjpegdecoder/
StreamSource.cpp 42 mStream->skip(offset);
  /libcore/luni/src/main/java/java/io/
DataInputStream.java 471 * the number of bytes to skip.
480 long skip; local
481 while (skipped < count && (skip = in.skip(count - skipped)) != 0) {
482 skipped += skip;
InputStream.java 68 * read or skip will actually read or skip that many bytes: they may read or skip fewer.
228 * <p>Note the "at most" in the description of this method: this method may choose to skip
234 * @param byteCount the number of bytes to skip.
239 public long skip(long byteCount) throws IOException { method in class:InputStream
  /libcore/luni/src/main/java/libcore/base/
Streams.java 30 in.skip(Long.MAX_VALUE);
38 * <p>This method reuses the skip buffer but is careful to never use it at
42 * streams may call other streams in their skip() method, also clobbering the
46 // acquire the shared skip buffer.
65 // release the shared skip buffer.
  /packages/apps/Gallery3D/src/com/cooliris/media/
FloatAnim.java 64 public void skip() { method in class:FloatAnim
  /frameworks/base/core/java/android/content/res/
AssetFileDescriptor.java 193 super.skip(fd.getStartOffset());
244 public long skip(long count) throws IOException { method in class:AssetFileDescriptor.AutoCloseInputStream
248 long res = super.skip(count);
254 return super.skip(count);
339 public long skip(long count) throws IOException { method in class:AssetFileDescriptor.AutoCloseMemoryFileInputStream
340 return mStream.skip(count);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 82 skip = after + 1;
85 count = boundary ? skip : 0;
150 # start counting if starting steady state, skip counting if ending steady
152 count = /started/ ? 0 : skip;
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
BufferedReaderTest.java 108 br.skip(500);
110 br.skip(250);
119 br.skip(500);
134 in.skip(6);
142 in.skip(6);
144 in.skip(7);
506 br.skip(500);
508 br.skip(500);
519 br.skip(500);
558 * @tests java.io.BufferedReader#skip(long
    [all...]
  /external/quake/quake/src/QW/client/
console.c 475 int skip; local
508 skip = 11;
513 skip = 5;
517 if (chat_bufferlen > (int) ((vid.width>>3)-(skip+1)))
518 s += chat_bufferlen - ((vid.width>>3)-(skip+1));
522 Draw_Character ( (x+skip)<<3, v, s[x]);
525 Draw_Character ( (x+skip)<<3, v, 10+((int)(realtime*con_cursorspeed)&1));
  /libcore/luni/src/test/java/tests/api/java/io/
PushbackInputStreamTest.java 241 * @tests java.io.PushbackInputStream#skip(long)
246 method = "skip",
254 tobj.skip(6);
256 tobj.skip(1000000);
257 tobj.skip(1000000);
260 tobj.skip(1);
266 // Test for method long java.io.PushbackInputStream.skip(long)
269 pis.skip(50);
274 pis.skip(25);
421 tobj.skip(2)
    [all...]
CharArrayReaderTest.java 127 cr.skip(5L);
255 cr.skip(1000);
285 cr.skip(5L);
302 * @tests java.io.CharArrayReader#skip(long)
306 method = "skip",
312 skipped = cr.skip(5L);
313 assertEquals("Test 1: Failed to skip correct number of chars;",
315 assertEquals("Test 2: Skip skipped wrong chars;",
320 cr.skip(1);
BufferedInputStreamTest.java 102 is.skip(this.fileString.length() - 2);
240 method = "skip",
257 is.skip(10);
268 is.skip(10);
280 * regarding the invalidation of a set mark by read and skip operations.
283 is.skip(200);
296 is.skip(200);
306 // Test 7: Check that the mark is invalidated by a skip.
308 is.skip(11);
444 is.skip(3000)
    [all...]
  /external/clearsilver/imd/
imdm.py 26 def albumoverview(basedir,sub_dir,count = 4,skip = 0):
37 if len(images) >= (count + skip):
38 return images[skip:]
40 return images[skip:]
117 images = albumoverview(basedir,album,count=(imgcount + 1),skip=0)
  /external/skia/tests/
PackBitsTest.cpp 108 size_t skip = gRand.nextU() % size; local
110 if (skip + write > size) {
111 write = size - skip;
113 SkPackBits::Unpack8(src, skip, write, dst);
114 bool match = memcmp(src, src2 + skip, write) == 0;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 182 int skip = 2; local
183 int ind = skip; // index into the data array (to check the got data)
185 cis.read(null, 0, skip);
186 int got = skip + cis.read(result, 0, 1); // the number of got bytes
209 * skip(long n) method testing. Tests that the method correctly skips the
215 method = "skip",
225 int skipped = (int) cis.skip(2);
  /external/bluetooth/glib/tests/
unicode-normalize.c 117 gboolean skip = FALSE; local
123 skip = TRUE;
126 if (!skip)
  /external/skia/src/ports/
SkFontHost_tables.cpp 57 if (stream->skip(offset) != offset) {
92 if (stream->skip(offsetToDir) != offsetToDir) {
185 // skip the stream to the part of the table we want to copy from
188 if (stream->skip(bytesToSkip) != bytesToSkip) {
  /system/core/toolbox/
cat.c 201 goto skip;
205 goto skip;
214 skip:
  /external/zlib/examples/
zran.c 247 int ret, skip; local
285 /* skip uncompressed bytes until offset reached, then satisfy request */
288 skip = 1; /* while skipping to offset */
291 if (offset == 0 && skip) { /* at offset now */
294 skip = 0; /* only do this once */
296 if (offset > WINSIZE) { /* skip WINSIZE bytes */
301 else if (offset != 0) { /* last skip */
335 } while (skip);
338 ret = skip ? 0 : len - strm.avail_out;
  /external/chromium/net/tools/flip_server/
balsa_headers_token_utils.cc 52 header_line->skip = true; // remove the whole line
54 header_line->skip = true; // remove the whole line
  /external/skia/include/core/
SkBuffer.h 69 const void* skip(size_t size); // return start of skipped data
121 void* skip(size_t size); // return start of skipped data
  /external/skia/src/core/
SkBuffer.cpp 30 const void* SkRBuffer::skip(size_t size) function in class:SkRBuffer
45 void* SkWBuffer::skip(size_t size) function in class:SkWBuffer
  /frameworks/base/tests/CoreTests/android/core/
IOUtil.java 111 a.skip(1);
130 a.skip(1);

Completed in 655 milliseconds

1 23 4 5 6 7 8 91011>>