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

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
FilterInputStream.java 95 * @see #skip(long)
170 public long skip(long byteCount) throws IOException { method in class:FilterInputStream
171 return in.skip(byteCount);
FilterReader.java 92 * @see #skip(long)
163 * {@code read()} and {@code skip()} will occur from this new location. If
184 * default implementation is to skip characters in the filtered reader.
195 public long skip(long charCount) throws IOException { method in class:FilterReader
197 return in.skip(charCount);
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLInputStream.java 77 public long skip(long byteCount) throws IOException { method in class:FtpURLInputStream
78 return is.skip(byteCount);
  /packages/apps/Email/src/org/apache/commons/io/input/
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);
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);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
LineNumberInputStreamTest.java 76 lnis.skip(4);
114 lnis.skip(4);
123 lnis.skip(100);
141 * @tests java.io.LineNumberInputStream#skip(long)
144 lnis.skip(4);
145 assertEquals("Skip failed to increment lineNumber", 2, lnis
StringReaderTest.java 59 sr.skip(5);
61 sr.skip(5);
127 sr.skip(5);
129 sr.skip(5);
138 * @tests java.io.StringReader#skip(long)
141 // Test for method long java.io.StringReader.skip(long)
143 sr.skip(5);
146 assertTrue("Failed to skip properly", new String(buf, 0, 2)
  /external/guava/guava-tests/test/com/google/common/io/
CountingInputStreamTest.java 53 assertEquals(10, counter.skip(10));
58 assertEquals(20, counter.skip(30));
60 assertEquals(0, counter.skip(20));
84 assertEquals(10, counter.skip(100));
  /external/llvm/include/llvm/Support/
YAMLParser.h 88 void skip();
91 skip();
136 virtual void skip() {} function in class:llvm::yaml::Node
244 virtual void skip() LLVM_OVERRIDE {
245 getKey()->skip();
246 getValue()->skip();
317 void skip(CollectionType &C) { function in namespace:llvm::yaml
319 assert((C.IsAtBeginning || C.IsAtEnd) && "Cannot skip mid parse!");
323 i->skip();
352 template <class T> friend void yaml::skip(T &)
361 yaml::skip(*this); member in class:llvm::yaml::MappingNode::yaml
423 yaml::skip(*this); member in class:llvm::yaml::SequenceNode::yaml
    [all...]
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 102 @Override public long skip(long n) throws IOException { method in class:MultiInputStream
106 long result = in.skip(n);
113 return 1 + in.skip(n - 1);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterInputStreamTest.java 251 assertEquals(4, in.skip(4));
346 * @tests java.util.zip.InflaterInputStream#skip(long)
354 iis.skip(-3);
362 iis.skip(Integer.MIN_VALUE);
370 assertEquals("Incorrect Number Of Bytes Skipped.", 3, iis.skip(3));
375 assertEquals("Incorrect Number Of Bytes Skipped.", 0, iis.skip(0));
379 assertEquals("Incorrect Number Of Bytes Skipped.", 2, iis.skip(4));
385 * @tests java.util.zip.InflaterInputStream#skip(long)
392 // testing for negative input to skip
398 long skip; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VDMXParser.cpp 50 bool skip(size_t numBytes) function in class:Buffer
128 if (!buf.skip(4) || !buf.readU16(&numRatios))
145 if (!buf.skip(1)
173 if (!buf.readU16(&numRecords) || !buf.skip(sizeof(uint16_t)))
195 if (!buf.skip(2 * sizeof(int16_t)))
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 41 skip(mIgnorePattern);
45 // Skip ignore pattern
47 skip(mIgnorePattern);
62 // Skip ignore pattern
64 skip(mIgnorePattern);
79 // Skip ignore pattern
81 skip(mIgnorePattern);
92 public void skip(Pattern pattern) { method in class:PatternScanner
  /external/skia/src/core/
SkOrderedReadBuffer.cpp 102 memcpy(data, fReader.skip(SkAlign4(*length)), *length);
116 memcpy(rect, fReader.skip(sizeof(SkIRect)), sizeof(SkIRect));
120 memcpy(rect, fReader.skip(sizeof(SkRect)), sizeof(SkRect));
133 memcpy(value, fReader.skip(SkAlign4(length)), length);
140 memcpy(colors, fReader.skip(SkAlign4(byteLength)), byteLength);
147 memcpy(values, fReader.skip(SkAlign4(byteLength)), byteLength);
154 memcpy(points, fReader.skip(SkAlign4(byteLength)), byteLength);
161 memcpy(values, fReader.skip(SkAlign4(byteLength)), byteLength);
173 SkMemoryStream stream(const_cast<void*>(this->skip(length)), length, false);
175 // Skip the width and height, which were written in case of failure
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ISO8601Converter.java 103 input.skip();
123 input.skip();
137 input.skip();
161 input.skip();
179 input.skip();
193 input.skip();
204 input.skip();
230 input.skip();
248 input.skip();
256 input.skip();
448 public void skip() method in class:ParseState
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardBuilder.java 304 private void parseKeyboardContent(final XmlPullParser parser, final boolean skip)
312 if (DEBUG) startTag("<%s>%s", TAG_ROW, skip ? " skipped" : "");
313 if (!skip) {
316 parseRowContent(parser, row, skip);
318 parseIncludeKeyboardContent(parser, skip);
320 parseSwitchKeyboardContent(parser, skip);
322 parseKeyStyle(parser, skip);
360 final boolean skip) throws XmlPullParserException, IOException {
366 parseKey(parser, row, skip);
368 parseSpacer(parser, row, skip);
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
BitwiseStreamsTest.java 38 outStream.skip(offset);
43 inStream.skip(offset);
53 outStream.skip(offset);
56 inStream.skip(offset);
67 outStream.skip(offset);
70 inStream.skip(offset);
81 outStream.skip(offset);
87 inStream.skip(offset);
122 outStream.skip(offset);
128 inStream.skip(offset)
    [all...]
  /frameworks/native/opengl/libagl/
mipmap.cpp 131 int skip; local
133 case GGL_PIXEL_FORMAT_RGB_888: skip = 3; break;
134 case GGL_PIXEL_FORMAT_LA_88: skip = 2; break;
135 default: skip = 1; break;
139 bs *= skip;
140 stride *= skip;
144 for (int c=0 ; c<skip ; c++) {
146 uint32_t p10 = src[c+offset+skip];
148 uint32_t p11 = src[c+offset+bs+skip];
151 offset += 2*skip;
    [all...]
  /external/openssl/crypto/ec/
ecp_oct.c 206 size_t field_len, i, skip; local
267 skip = field_len - BN_num_bytes(x);
268 if (skip > field_len)
273 while (skip > 0)
276 skip--;
278 skip = BN_bn2bin(x, buf + i);
279 i += skip;
288 skip = field_len - BN_num_bytes(y);
289 if (skip > field_len)
294 while (skip > 0
    [all...]
  /external/zlib/src/examples/
gzjoin.c 155 /* skip bytes in file */
156 local void bskip(bin *in, unsigned skip)
162 /* easy case -- skip bytes in buffer */
163 if (skip <= in->left) {
164 in->left -= skip;
165 in->next += skip;
169 /* skip what's in buffer, discard buffer contents */
170 skip -= in->left;
174 if (skip > CHUNK) {
177 left = skip & (CHUNK - 1)
    [all...]
  /external/libyuv/files/source/
mjpeg_decoder.cc 287 // Compute amount of lines to skip to implement vertical crop.
288 // TODO(fbarchard): Ensure skip is a multiple of maximum component
290 int skip = (GetHeight() - dst_height) / 2; local
291 if (skip > 0) {
292 // There is no API to skip lines in the output data, so we read them
294 while (skip >= GetImageScanlinesPerImcuRow()) {
299 skip -= GetImageScanlinesPerImcuRow();
301 if (skip > 0) {
302 // Have a partial iMCU row left over to skip. Must read it and then
309 // TODO(fbarchard): Compute skip to avoid thi
377 int skip = (GetHeight() - dst_height) \/ 2; local
    [all...]
  /external/skia/include/core/
SkReader32.h 83 const void* skip(size_t size) { function in class:SkReader32
93 return *(const T*)this->skip(sizeof(T));
112 (void)this->skip(size);
118 (void)this->skip(size);
122 rrect->readFromMemory(this->skip(SkRRect::kSizeInMemory));
129 (void)this->skip(size);
  /external/openssh/regress/
sftp-glob.sh 13 skip=$5
14 if test "x$skip" != "x" ; then
15 verbose "$tid: $errtag (skipped: $skip)"
  /external/qemu/
cutils.c 178 void qemu_iovec_copy(QEMUIOVector *dst, QEMUIOVector *src, uint64_t skip,
190 if (skip >= src->iov[i].iov_len) {
191 /* Skip the whole iov */
192 skip -= src->iov[i].iov_len;
195 /* Skip only part (or nothing) of the iov */
196 iov_base = (uint8_t*) src->iov[i].iov_base + skip;
197 iov_len = src->iov[i].iov_len - skip;
198 skip = 0;
271 size_t skip)
280 if (skip >= qiov->iov[i].iov_len)
    [all...]
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderThread.cpp 100 int skip = readBuf.validData() - stat; local
101 fwrite(readBuf.buf()+skip, 1, readBuf.validData()-skip, dumpFP);

Completed in 2412 milliseconds

1 23 4 5 6 7 8 91011>>