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

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/zip/
InflaterInputStream.java 222 is.skip(cnt);
235 * @param byteCount the number of bytes to skip.
240 public long skip(long byteCount) throws IOException { method in class:InflaterInputStream
CheckedInputStream.java 105 * Skip up to n bytes of data on the underlying input stream. Any skipped
109 * the number of bytes to skip.
115 public long skip(long nbytes) throws IOException { method in class:CheckedInputStream
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CheckedInputStreamTest.java 93 * @tests java.util.zip.CheckedInputStream#skip(long)
96 // testing that the return by skip is valid
100 assertEquals("the value returned by skip(n) is not the same as its parameter",
101 skipValue, checkIn.skip(skipValue));
102 checkIn.skip(skipValue);
111 // testing that the return by skip is valid
128 // testing that the return by skip is valid
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
BearerData.java 391 outStream.skip(3);
    [all...]
  /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/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 84 public final long skip (long n) method in class:ByteArrayIStream
  /external/libvpx/vp8/encoder/
block.h 101 int skip; member in struct:__anon5118
  /external/qemu/distrib/sdl-1.2.12/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.12/src/video/wincommon/
SDL_syswm.c 65 int i, skip;
168 skip = icon_pitch - icon->w;
181 pdata += skip;
182 pwin32 += skip;
  /external/webkit/WebCore/svg/
SVGParserUtilities.h 33 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip = true);
  /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 125 public void skip(int bits) { method in class:BitwiseOutputStream
  /frameworks/base/core/jni/
android_os_Debug.cpp 95 bool skip, done = false; local
113 skip = false;
120 if (len > 18 && line[17] == '-') skip = true;
170 if (!skip) {
  /libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 217 * the number of bytes to skip.
221 public synchronized long skip(long n) {
LineNumberInputStream.java 234 * the number of bytes to skip.
243 public long skip(long count) throws IOException { method in class:LineNumberInputStream
LineNumberReader.java 252 * the number of characters to skip.
263 public long skip(long count) throws IOException { method in class:LineNumberReader
Reader.java 195 * Invocations of {@code read()} and {@code skip()} will occur from this new
216 * the maximum number of characters to skip.
226 public long skip(long count) throws IOException { method in class:Reader
StringBufferInputStream.java 147 * the number of characters to skip.
151 public synchronized long skip(long n) {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLInputStream.java 49 public long skip(long n) throws IOException { method in class:SSLInputStream
  /libcore/luni/src/test/java/libcore/java/util/zip/
GzipTest.java 43 /** http://b/3042574 GzipInputStream.skip() causing CRC failures */
52 count = in.skip(Long.MAX_VALUE);
  /libcore/luni/src/test/java/tests/api/java/io/
InputStreamTest.java 324 * @tests java.io.InputStream#skip(long)
329 notes = "Verifies skip(long).",
330 method = "skip",
335 notes = "Verifies ObjectInput.skip(long) since " +
337 "of skip(long) from InputStream.",
339 method = "skip",
350 // Test 1: Check that skip(long) just returns 0 if called with a
352 assertEquals("Test 1:", is.skip(-42), 0);
361 // number of bytes to skip.
363 is.skip(17), 17)
    [all...]
LineNumberReaderTest.java 101 lnr.skip(80);
327 * @tests java.io.LineNumberReader#skip(long)
331 method = "skip",
337 long skipped = lnr.skip(80);
341 assertTrue("Test 2: Failed to skip to correct position.",
345 lnr.skip(-1);
353 lnr.skip(1);
  /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);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 213 for (int skip = 0; skip < codesSize; skip++) {
216 MAX_WORD_LENGTH, MAX_WORDS, MAX_ALTERNATIVES, skip,
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
output.h 500 unnamed_section_callback GTY ((skip)) callback;
501 const void *GTY ((skip)) data;
525 noswitch_section_callback GTY ((skip)) callback;
531 struct section_common GTY ((skip)) common;

Completed in 156 milliseconds

1 2 34 5 6 7 8 91011>>