Searched refs:skip (Results 1 - 25 of 43) sorted by relevance

12

/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
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 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 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
H A DSwappedDataInputStream.java239 * Invokes the delegate's <code>skip(int)</code> method.
240 * @param count the number of bytes to skip
248 return (int)in.skip( count );
/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/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/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/Gallery2/jni_jpegstream/src/
H A Dinputstream_wrapper.h28 virtual int64_t skip(int64_t count);
31 // Call this in JNI_OnLoad to cache read/skip method IDs
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 Dinputstream_wrapper.cpp48 int64_t InputStreamWrapper::skip(int64_t count) { function in class:InputStreamWrapper
/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/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/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/inputmethods/LatinIME/native/dicttoolkit/src/offdevice_intermediate_dict/
H A Doffdevice_intermediate_dict.cpp49 return addWordInner(codePoints.skip(i), wordProperty,
78 ptNodeCodePoints.skip(i), *ptNode));
82 return addWordInner(codePoints.skip(i), wordProperty, childrenPtNodeArray);
/packages/inputmethods/LatinIME/native/jni/tests/utils/
H A Dint_array_view_test.cpp93 EXPECT_TRUE(intArrayView.skip(intVector.size()).empty());
94 EXPECT_TRUE(intArrayView.skip(intVector.size() + 1).empty());
95 EXPECT_EQ(intArrayView.size(), intArrayView.skip(0).size());
99 IntArrayView subView = intArrayView.skip(SKIP_COUNT);
134 EXPECT_EQ(10, intArrayView.skip(6).firstOrDefault(10));
144 EXPECT_EQ(10, intArrayView.skip(6).lastOrDefault(10));
/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/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/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
H A Ddynamic_pt_updating_helper.cpp57 wordCodePoints.skip(matchedCodePointCount));
67 wordCodePoints.skip(readingHelper->getTotalCodePointCount(ptNodeParams)));
80 wordCodePoints.skip(readingHelper->getPrevTotalCodePointCount()), unigramProperty,
246 reallocatingPtNodeParams->getCodePointArrayView().skip(overlappingCodePointCount),
255 newPtNodeCodePoints.skip(overlappingCodePointCount),
/packages/apps/TV/src/com/android/tv/onboarding/
H A DNewSourcesFragment.java58 initializeButton(view.findViewById(R.id.skip), ACTION_SKIP);
/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);

Completed in 631 milliseconds

12