HomeSort by relevance Sort by last modified time
    Searched refs:skip (Results 151 - 175 of 1091) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/test/java/libcore/java/io/
OldLineNumberInputStreamTest.java 113 lnis.skip(4);
121 lnis.skip(100);
150 long skipped = lnis.skip(4);
153 assertEquals("Test 2: Skip failed to increment line number;",
158 lnis.skip(4);
OldLineNumberReaderTest.java 34 lnr.skip(80);
164 long skipped = lnr.skip(80);
168 assertTrue("Test 2: Failed to skip to correct position.",
172 lnr.skip(-1);
180 lnr.skip(1);
FileInputStreamTest.java 75 fis.skip(SKIP_SIZE);
126 fis2.skip(1);
151 fis1.skip(1);
182 fis.skip(1);
188 fis.skip(0);
OldCharArrayReaderTest.java 98 cr.skip(5L);
197 cr.skip(1000);
221 cr.skip(5L);
240 skipped = cr.skip(5L);
241 assertEquals("Test 1: Failed to skip correct number of chars;",
243 assertEquals("Test 2: Skip skipped wrong chars;",
248 cr.skip(1);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_msi.py 13 @unittest.skip("Require bdist_msi")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
__init__.py 49 'defaultTestLoader', 'SkipTest', 'skip', 'skipIf', 'skipUnless',
59 from .case import (TestCase, FunctionTestCase, SkipTest, skip, skipIf, namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_msi.py 13 @unittest.skip("Require bdist_msi")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
__init__.py 49 'defaultTestLoader', 'SkipTest', 'skip', 'skipIf', 'skipUnless',
59 from .case import (TestCase, FunctionTestCase, SkipTest, skip, skipIf, namespace
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterInputStreamTest.java 246 * @tests DeflaterInputStream#skip()
252 dis.skip(1);
256 dis.skip(1);
261 dis.skip(56);
265 dis.skip(-1);
271 // can still skip
272 dis.skip(1);
275 dis.skip(1);
281 dis.skip(-1);
289 assertEquals(23, dis.skip(Long.MAX_VALUE))
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
xe08_decode.t 20 SKIP: {
21 skip "can't use JSON::XS.", 6, unless( JSON->backend->is_xs );
  /external/chromium_org/third_party/skia/src/core/
SkOrderedReadBuffer.cpp 111 memcpy(data, fReader.skip(SkAlign4(*length)), *length);
125 memcpy(rect, fReader.skip(sizeof(SkIRect)), sizeof(SkIRect));
129 memcpy(rect, fReader.skip(sizeof(SkRect)), sizeof(SkRect));
143 (void)fReader.skip(sizeof(uint32_t)); // Skip array count
145 memcpy(value, fReader.skip(SkAlign4(byteLength)), byteLength);
149 fReader.skip(fReader.available());
208 const void* data = this->skip(length);
313 // we must skip the remaining data
314 fReader.skip(sizeRecorded)
    [all...]
SkFontStream.cpp 43 static bool skip(SkStream* stream, size_t amount) { function
44 return stream->skip(amount) == amount;
86 if (!skip(stream, offset)) {
123 if (!skip(stream, offsetToDir)) {
196 // skip the stream to the part of the table we want to copy from
199 if (!skip(stream, bytesToSkip)) {
  /external/dhcpcd/
dhcpcd-run-hooks.in 227 for skip in $skip_hooks; do
229 */"$skip") continue 2;;
230 */[0-9][0-9]"-$skip") continue 2;;
231 */[0-9][0-9]"-$skip.sh") continue 2;;
  /external/guava/guava/src/com/google/common/io/
CountingInputStream.java 67 @Override public long skip(long n) throws IOException { method in class:CountingInputStream
68 long result = in.skip(n);
LimitInputStream.java 98 @Override public long skip(long n) throws IOException { method in class:LimitInputStream
100 long skipped = in.skip(n);
MultiReader.java 63 @Override public long skip(long n) throws IOException { method in class:MultiReader
67 long result = current.skip(n);
  /external/skia/src/core/
SkOrderedReadBuffer.cpp 111 memcpy(data, fReader.skip(SkAlign4(*length)), *length);
125 memcpy(rect, fReader.skip(sizeof(SkIRect)), sizeof(SkIRect));
129 memcpy(rect, fReader.skip(sizeof(SkRect)), sizeof(SkRect));
143 (void)fReader.skip(sizeof(uint32_t)); // Skip array count
145 memcpy(value, fReader.skip(SkAlign4(byteLength)), byteLength);
149 fReader.skip(fReader.available());
208 const void* data = this->skip(length);
313 // we must skip the remaining data
314 fReader.skip(sizeRecorded)
    [all...]
SkFontStream.cpp 43 static bool skip(SkStream* stream, size_t amount) { function
44 return stream->skip(amount) == amount;
86 if (!skip(stream, offset)) {
123 if (!skip(stream, offsetToDir)) {
196 // skip the stream to the part of the table we want to copy from
199 if (!skip(stream, bytesToSkip)) {
  /external/smack/src/org/jivesoftware/smack/util/
ObservableReader.java 70 public long skip(long n) throws IOException { method in class:ObservableReader
71 return wrappedReader.skip(n);
  /external/wpa_supplicant_8/src/crypto/
rc4.c 16 int rc4_skip(const u8 *key, size_t keylen, size_t skip,
36 /* Skip the start of the stream */
38 for (k = 0; k < skip; k++) {
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_hook.cpp 118 // Cannot skip negative or 0 bytes.
129 int64_t skip = num_bytes - src->mgr.bytes_in_buffer; local
132 int64_t actual = src->inStream->skip(skip);
136 skip -= actual;
137 while (skip > 0) {
138 actual = src->inStream->skip(skip);
142 skip -= actual;
  /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/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
PositionInputStream.java 69 public long skip(long n) throws IOException { method in class:PositionInputStream
70 final long c = inputStream.skip(n);
  /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/chromium_org/third_party/opus/src/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;

Completed in 2107 milliseconds

1 2 3 4 5 67 8 91011>>