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

1 2 3 4 5 67 8 91011>>

  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 193 * @param n The number of bytes to skip.
197 * @see InputStream#skip(long)
199 public long skip(long n) throws IOException { method in class:ContentLengthInputStream
204 // make sure we don't skip more bytes than are
207 // skip and keep track of the bytes actually skipped
  /external/compiler-rt/BlocksRuntime/tests/
testfilerunner.h 75 - (bool) compileUnlessExists:(bool)skip;
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 84 public final long skip (long n) method in class:ByteArrayIStream
  /external/openssh/
auth1.c 298 goto skip;
302 goto skip;
307 goto skip;
363 skip:
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbmatrox.c 129 int skip; local
169 /* Set up the blit source row start, end, and skip (in pixels) */
177 skip = -pitch;
179 skip = pitch;
209 mga_out32(MGAREG_AR5, skip);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_syswm.c 65 int i, skip;
168 skip = icon_pitch - icon->w;
181 pdata += skip;
182 pwin32 += skip;
  /external/skia/src/utils/mac/
SkStream_mac.cpp 26 return ((SkStream*)info)->skip((size_t) bytes);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
FileUtils.java 110 long amt = in.skip(at);
  /external/webkit/Source/WebCore/svg/
SVGParserUtilities.cpp 46 template <typename FloatType> static bool genericParseNumber(const UChar*& ptr, const UChar* end, FloatType& number, bool skip)
139 if (skip)
145 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip)
147 return genericParseNumber(ptr, end, number, skip);
SVGParserUtilities.h 35 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip = true);
  /frameworks/base/core/java/android/content/pm/
LimitedLengthInputStream.java 53 skip(offset);
  /frameworks/base/core/java/com/android/internal/util/
BitwiseInputStream.java 110 public void skip(int bits) throws AccessException { method in class:BitwiseInputStream
112 throw new AccessException("illegal skip " +
BitwiseOutputStream.java 126 public void skip(int bits) { method in class:BitwiseOutputStream
  /libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 204 public synchronized long skip(long byteCount) {
LineNumberInputStream.java 230 * the number of bytes to skip.
239 public long skip(long byteCount) throws IOException { method in class:LineNumberInputStream
LineNumberReader.java 261 public long skip(long charCount) throws IOException { method in class:LineNumberReader
Reader.java 187 * Invocations of {@code read()} and {@code skip()} will occur from this new
216 public long skip(long charCount) throws IOException { method in class:Reader
StringBufferInputStream.java 136 public synchronized long skip(long charCount) {
StringReader.java 193 * Invocations of {@code read()} and {@code skip()} will occur from this new
212 * Reader#skip(long) overridden method}, this method may skip negative skip
218 * the maximum number of characters to skip. Positive values skip
219 * forward; negative values skip backward.
231 public long skip(long charCount) throws IOException { method in class:StringReader
  /libcore/luni/src/main/java/java/util/zip/
ZipFile.java 277 // Skip the name and this "extra" data or whatever it is:
278 rafStream.skip(entry.nameLength + localExtraLenOrWhatever);
361 it.skip(4); // Ignore centralDirSize.
427 @Override public long skip(long byteCount) throws IOException {
441 skip(cnt);
  /libcore/luni/src/main/java/libcore/io/
HeapBufferIterator.java 46 public void skip(int byteCount) { method in class:HeapBufferIterator
NioBufferIterator.java 44 public void skip(int byteCount) { method in class:NioBufferIterator
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPInputStreamTest.java 45 /** http://b/3042574 GzipInputStream.skip() causing CRC failures */
54 count = in.skip(Long.MAX_VALUE);
  /packages/apps/Email/src/org/apache/commons/io/input/
CharSequenceReader.java 127 * Skip the specified number of characters.
129 * @param n The number of characters to skip
132 public long skip(long n) { method in class:CharSequenceReader
135 "Number of characters to skip is less than zero: " + n);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-ref.h 75 VEC(ipa_ref_ptr,heap) * GTY((skip)) refering;

Completed in 1634 milliseconds

1 2 3 4 5 67 8 91011>>