HomeSort by relevance Sort by last modified time
    Searched defs:skip (Results 76 - 100 of 684) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 170 public long skip(long byteCount) throws IOException { method in class:CipherInputStream
  /libcore/luni/src/main/java/libcore/io/
HeapBufferIterator.java 46 public void skip(int byteCount) { method in class:HeapBufferIterator
  /libcore/support/src/test/java/tests/support/
Support_StringReader.java 197 * location. Invocations of <code>read()/skip()</code> will occur from
221 * The number of characters to skip.
228 public long skip(long count) throws IOException { method in class:Support_StringReader
  /packages/apps/Camera2/src/com/android/camera/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();
  /packages/apps/Gallery2/gallerycommon/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();
  /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/Launcher3/WallpaperPicker/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();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
NullInputStream.java 261 * Skip a specified number of bytes.
263 * @param numberOfBytes The number of bytes to skip.
271 public long skip(long numberOfBytes) throws IOException { method in class:NullInputStream
273 throw new IOException("Skip after end of file");
NullReader.java 245 * Skip a specified number of characters.
247 * @param numberOfChars The number of characters to skip.
255 public long skip(long numberOfChars) throws IOException { method in class:NullReader
257 throw new IOException("Skip after end of file");
  /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);
  /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/unittest/
__init__.py 49 'defaultTestLoader', 'SkipTest', 'skip', 'skipIf', 'skipUnless',
59 from .case import (TestCase, FunctionTestCase, SkipTest, skip, skipIf, namespace
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 179 public void skip(int nBytes) { method in class:DexBuffer
  /development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 62 skip(parser);
102 skip(parser);
153 private void skip(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:StackOverflowXmlParser
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
SICBlockCipher.java 278 public long skip(long numberOfBytes) method in class:SICBlockCipher
291 return skip(position);
  /external/dnsmasq/src/
dbus.c 116 int skip = 0; local
139 skip = 1;
164 skip = 0;
181 if (!skip)
  /external/f2fs-tools/fsck/
dump.c 144 u32 skip = 0; local
149 skip = idx = ADDRS_PER_BLOCK;
153 skip = idx * ADDRS_PER_BLOCK;
156 skip = 0;
162 *ofs += skip;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
RecyclableBufferedInputStream.java 361 * the number of bytes to skip. {@link #skip} does nothing and
368 public synchronized long skip(long byteCount) throws IOException { method in class:RecyclableBufferedInputStream
397 // Couldn't get all the bytes, skip what we read.
402 return read + localIn.skip(byteCount - read);
  /external/glide/library/src/main/java/com/bumptech/glide/util/
ExceptionCatchingInputStream.java 10 * An {@link java.io.InputStream} that catches {@link java.io.IOException}s during read and skip calls and stores them
100 public long skip(long byteCount) throws IOException { method in class:ExceptionCatchingInputStream
103 skipped = wrapped.skip(byteCount);
  /external/libvpx/libvpx/vp9/encoder/
vp9_context_tree.h 35 int skip; member in struct:__anon13871
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
InterceptFieldTransformer.java 121 Label skip = e.make_label(); local
122 e.ifnull(skip);
137 e.mark(skip);
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSource.java 95 void skip(long byteCount) throws IOException; method in interface:BufferedSource
  /external/ppp/pppd/include/
pcap-int.h 63 int skip; member in struct:pcap_md
  /external/selinux/sepolgen/src/sepolgen/
lex.py 55 def skip(self,n): member in class:LexToken
56 self.lexer.skip(n)
238 # skip() - Skip ahead n characters
240 def skip(self,n): member in class:Lexer
    [all...]
  /external/skia/src/core/
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)) {

Completed in 306 milliseconds

1 2 34 5 6 7 8 91011>>