HomeSort by relevance Sort by last modified time
    Searched refs:skip (Results 101 - 125 of 742) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ByteArrayInputStreamTest.java 96 is.skip(3000);
128 is.skip(50);
151 * @tests ByteArrayInputStream#skip(long)
155 is.skip(100);
157 assertTrue("Failed to skip to correct position", new String(buf1, 0,
BufferedInputStreamTest.java 80 is.skip(this.fileString.length() - 2);
199 is.skip(3000);
214 in.skip(6);
221 in.skip(6);
223 in.skip(7);
336 is.skip(3000);
440 buffis.skip(5);
452 buffis.skip(6);
457 * @tests java.io.BufferedInputStream#skip(long)
462 is.skip(1000)
    [all...]
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/regex-re2/benchlog/
mktable 100 sub skip() { subroutine
146 skip();
151 skip();
  /libcore/luni/src/main/java/java/io/
PushbackReader.java 352 public long skip(long charCount) throws IOException { method in class:PushbackReader
370 inSkipped = in.skip(requiredFromIn);
372 inSkipped = in.skip(charCount);
DataInputStream.java 211 * the number of bytes to skip.
220 long skip; local
221 while (skipped < count && (skip = in.skip(count - skipped)) != 0) {
222 skipped += skip;
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
FileInputStream.java 183 public long skip(long byteCount) throws IOException { method in class:FileInputStream
195 return super.skip(byteCount);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
Visualization3RS.java 117 final int skip = (outlen - width) / 2; local
124 mPointData[(i + skip) * 8 + 1] = val;
125 mPointData[(i + skip) * 8 + 5] = -val;
  /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/ppp/pppd/include/
pcap-int.h 63 int skip; member in struct:pcap_md
  /frameworks/base/core/java/android/content/res/
AssetFileDescriptor.java 176 super.skip(fd.getStartOffset());
213 public long skip(long count) throws IOException { method in class:AssetFileDescriptor.AutoCloseInputStream
217 long res = super.skip(count);
222 return super.skip(count);
  /frameworks/base/media/tests/omxjpegdecoder/
StreamSource.cpp 42 mStream->skip(offset);
  /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/test/java/libcore/java/io/
OldInputStreamTest.java 228 // Test 1: Check that skip(long) just returns 0 if called with a
230 assertEquals("Test 1:", is.skip(-42), 0);
239 // number of bytes to skip.
241 is.skip(17), 17);
253 is.skip(ref.length), ref.length - 39);
257 // skip(long) should return 0.
259 assertEquals("Test 5:", is.skip(10), 0);
OldFilterReaderTest.java 72 public long skip(long count) throws IOException { method in class:OldFilterReaderTest.MockReader
158 fr.skip(10);
159 assertTrue("skip(long) has not been called.", called);
OldPushbackReaderTest.java 284 * java.io.PushbackReader#skip(long)
290 tobj.skip(6);
291 tobj.skip(1000000);
292 tobj.skip(1000000);
295 tobj.skip(1);
355 tobj.skip(2);
  /external/skia/src/utils/win/
SkIStream.cpp 155 size_t skipped = this->fSkStream->skip(
166 size_t skipped = this->fSkStream->skip(
179 LONGLONG skip = this->fSkStream->getLength() local
181 size_t skipped = this->fSkStream->skip(static_cast<size_t>(skip));
183 if (skipped != skip) {
  /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;
  /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));
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
import.rb 36 WS : (' '|'\n') { skip() } ;
68 WS : (' '|'\n') {skip} ;
103 WS : (' '|'\n') {skip()} ;
146 WS : (' '|'\n') {skip} ;
192 WS : (' '|'\n') {skip} ;
222 WS : (' '|'\n') {skip} ;
252 WS : (' '|'\n') {skip} ;
277 WS : (' '|'\n') {skip} ;
307 WS : (' '|'\n') {skip} ;
  /external/skia/tests/
PackBitsTest.cpp 115 size_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;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 151 int skip = 2; local
152 int ind = skip; // index into the data array (to check the got data)
154 cis.read(null, 0, skip);
155 int got = skip + cis.read(result, 0, 1); // the number of got bytes
178 * skip(long n) method testing. Tests that the method correctly skips the
188 int skipped = (int) cis.skip(2);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
BearerData.java 453 outStream.skip(3);
    [all...]

Completed in 1336 milliseconds

1 2 3 45 6 7 8 91011>>