Searched defs:skip (Results 1 - 24 of 24) sorted by relevance

/packages/apps/Gallery2/jni_jpegstream/src/
H A Dinputstream_wrapper.cpp48 int64_t InputStreamWrapper::skip(int64_t count) { function in class:InputStreamWrapper
H A Djpeg_hook.cpp118 // 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;
H A Djpegstream.cpp288 int32_t skip = 0; local
289 // Read with null buffer to skip
290 skip = r_ptr->read(NULL, 0, bytes);
291 return skip;
366 jmethodID cachedSkipFun = env->GetMethodID(inCls, "skip", "(J)J");
368 LOGE("Unable to find skip function in class 'InputStream'");
/packages/inputmethods/LatinIME/native/jni/src/utils/
H A Dbyte_array_view.h45 AK_FORCE_INLINE const ReadOnlyByteArrayView skip(const size_t n) const { function in class:latinime::ReadOnlyByteArrayView
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DCharSequenceReader.java129 * @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);
H A DCountingInputStream.java97 * @param length the number of bytes to skip
100 * @see java.io.InputStream#skip(long)
102 public long skip(final long length) throws IOException { method in class:CountingInputStream
103 final long skip = super.skip(length);
104 this.count += skip;
105 return skip;
H A DProxyInputStream.java79 * Invokes the delegate's <code>skip(long)</code> method.
80 * @param ln the number of bytes to skip
84 public long skip(long ln) throws IOException { method in class:ProxyInputStream
85 return in.skip(ln);
H A DProxyReader.java79 * Invokes the delegate's <code>skip(long)</code> method.
80 * @param ln the number of bytes to skip
84 public long skip(long ln) throws IOException { method in class:ProxyReader
85 return in.skip(ln);
H A DNullInputStream.java263 * @param numberOfBytes The number of bytes to skip.
271 public long skip(long numberOfBytes) throws IOException { method in class:NullInputStream
H A DNullReader.java247 * @param numberOfChars The number of characters to skip.
255 public long skip(long numberOfChars) throws IOException { method in class:NullReader
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
H A DCloseShieldInputStream.java97 * @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/
H A DPartialInputStream.java31 inputStream.skip(offset);
55 public long skip(long n) throws IOException { method in class:PartialInputStream
57 return super.skip(n); //To change body of overridden methods use File | Settings | File Templates.
H A DPositionInputStream.java69 public long skip(long n) throws IOException { method in class:PositionInputStream
70 final long c = inputStream.skip(n);
/packages/services/Telephony/src/org/apache/james/mime4j/
H A DCloseShieldInputStream.java97 * @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/Camera2/src/com/android/camera/exif/
H A DCountedDataInputStream.java65 public long skip(long length) throws IOException { method in class:CountedDataInputStream
66 long skip = in.skip(length);
67 mCount += skip;
68 return skip;
72 if (skip(length) != length) throw new EOFException();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DCountedDataInputStream.java65 public long skip(long length) throws IOException { method in class:CountedDataInputStream
66 long skip = in.skip(length);
67 mCount += skip;
68 return skip;
72 if (skip(length) != length) throw new EOFException();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
H A DJPEGInputStream.java137 public long skip(long byteCount) throws IOException { method in class:JPEGInputStream
141 // Shorten skip to a reasonable amount
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DCountedDataInputStream.java65 public long skip(long length) throws IOException { method in class:CountedDataInputStream
66 long skip = in.skip(length);
67 mCount += skip;
68 return skip;
72 if (skip(length) != length) {
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
H A DCachedInputStream.java215 public long skip(long byteCount) throws IOException { method in class:CachedInputStream
220 return in.skip(byteCount);
247 totalSkip += in.skip(byteCount);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardBuilder.java298 private void parseKeyboardContent(final XmlPullParser parser, final boolean skip) argument
306 if (DEBUG) startTag("<%s>%s", TAG_ROW, skip ? " skipped" : "");
307 if (!skip) {
310 parseRowContent(parser, row, skip);
312 if (DEBUG) startTag("<%s>%s", TAG_GRID_ROWS, skip ? " skipped" : "");
313 parseGridRows(parser, skip);
315 parseIncludeKeyboardContent(parser, skip);
317 parseSwitchKeyboardContent(parser, skip);
319 parseKeyStyle(parser, skip);
356 final boolean skip) throw
355 parseRowContent(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
391 parseGridRows(final XmlPullParser parser, final boolean skip) argument
470 parseKey(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
494 parseSpacer(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
511 parseIncludeKeyboardContent(final XmlPullParser parser, final boolean skip) argument
516 parseIncludeRowContent(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
521 parseIncludeInternal(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
567 parseMerge(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
588 parseSwitchKeyboardContent(final XmlPullParser parser, final boolean skip) argument
593 parseSwitchRowContent(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
598 parseSwitchInternal(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
624 parseCase(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
792 parseDefault(final XmlPullParser parser, final KeyboardRow row, final boolean skip) argument
803 parseKeyStyle(final XmlPullParser parser, final boolean skip) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
H A DSapMessage.java362 skip(is, 2); // Skip the 2 padding bytes
435 * @param count the number of bytes to skip
438 private static void skip(InputStream is, int count) throws IOException { method in class:SapMessage
440 is.read(); // Do not use the InputStream.skip as it fails for some stream types
475 skip(is, paramLength + skipLen);
480 skip(is, 4 - PARAM_MAX_MSG_SIZE_LENGTH);
486 skip(is, skipLen);
491 skip(is, skipLen);
497 skip(is, paramLength + skipLen);
501 skip(i
[all...]
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/TV/usbtuner/libs/
H A Dexoplayer_1.5.6.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer/ ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 787 milliseconds