/packages/apps/Gallery2/jni_jpegstream/src/ |
H A D | inputstream_wrapper.cpp | 48 int64_t InputStreamWrapper::skip(int64_t count) { function in class:InputStreamWrapper
|
H A D | 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;
|
H A D | jpegstream.cpp | 288 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 D | byte_array_view.h | 45 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 D | CharSequenceReader.java | 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);
|
H A D | CountingInputStream.java | 97 * @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 D | ProxyInputStream.java | 79 * 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 D | ProxyReader.java | 79 * 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 D | NullInputStream.java | 263 * @param numberOfBytes The number of bytes to skip. 271 public long skip(long numberOfBytes) throws IOException { method in class:NullInputStream
|
H A D | NullReader.java | 247 * @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 D | 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/ |
H A D | PartialInputStream.java | 31 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 D | PositionInputStream.java | 69 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 D | 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/Camera2/src/com/android/camera/exif/ |
H A D | CountedDataInputStream.java | 65 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 D | CountedDataInputStream.java | 65 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 D | JPEGInputStream.java | 137 public long skip(long byteCount) throws IOException { method in class:JPEGInputStream 141 // Shorten skip to a reasonable amount
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/ |
H A D | CountedDataInputStream.java | 65 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/Messaging/src/com/android/messaging/util/exif/ |
H A D | CountedDataInputStream.java | 65 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 D | CachedInputStream.java | 213 public long skip(long byteCount) throws IOException { method in class:CachedInputStream 218 return in.skip(byteCount); 245 totalSkip += in.skip(byteCount);
|
/packages/apps/Browser/src/com/android/browser/ |
H A D | TitleBar.java | 155 void setSkipTitleBarAnimations(boolean skip) { argument 156 mSkipTitleBarAnimations = skip;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
H A D | KeyboardBuilder.java | 298 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 D | SapMessage.java | 362 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 D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ... |
/packages/apps/Messaging/build/gcheckstyle/ |
H A D | google-style-checker_deploy.jar | META-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ... |