/libcore/luni/src/main/java/java/io/ |
Reader.java | 207 * @return the number of characters actually skipped. 221 long skipped = 0; local 224 while (skipped < charCount) { 227 return skipped; 229 skipped += read; 231 return skipped; 233 if (charCount - skipped < toRead) { 234 toRead = (int) (charCount - skipped); 237 return skipped;
|
CharArrayReader.java | 265 * @return the number of characters actually skipped. 276 long skipped = 0; 279 skipped = charCount; 281 skipped = this.count - pos; 284 return skipped;
|
DataInputStream.java | 208 * input is reached before {@code count} bytes where skipped. 212 * @return the number of bytes actually skipped. 219 int skipped = 0; local 221 while (skipped < count && (skip = in.skip(count - skipped)) != 0) { 222 skipped += skip; 224 return skipped;
|
/external/clang/utils/TestUtils/ |
pch-test.pl | 15 my $skipped = 0; 47 $skipped++; 53 print("$skipped tests skipped ('x')\n")
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_StringReader.java | 222 * @return the number of characters actually skipped. 234 long skipped = 0; local 237 skipped = count; 239 skipped = this.count - pos; 242 return skipped;
|
/external/clang/test/Preprocessor/ |
traditional-cpp.c | 78 a b c in skipped block 84 /* CHECK-NOT: {{^}}a b c in skipped block{{$}}
|
/libcore/support/src/test/java/tests/support/ |
Support_StringReader.java | 222 * @return the number of characters actually skipped. 234 long skipped = 0; local 237 skipped = count; 239 skipped = this.count - pos; 242 return skipped;
|
/external/guava/guava/src/com/google/common/io/ |
LimitInputStream.java | 100 long skipped = in.skip(n); local 101 left -= skipped; 102 return skipped;
|
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_impl_lite.cc | 191 int skipped = 0; local 192 while (skipped < count) { 193 int bytes = Read(junk, min(count - skipped, 197 return skipped; 199 skipped += bytes; 201 return skipped; 285 int skipped = copying_stream_->Skip(count); local 286 position_ += skipped; 287 return skipped == count;
|
/external/skia/src/utils/win/ |
SkIStream.cpp | 155 size_t skipped = this->fSkStream->skip( local 158 this->fLocation.QuadPart = skipped; 159 if (skipped != liDistanceToMove.QuadPart) { 166 size_t skipped = this->fSkStream->skip( local 169 this->fLocation.QuadPart += skipped; 170 if (skipped != liDistanceToMove.QuadPart) { 181 size_t skipped = this->fSkStream->skip(static_cast<size_t>(skip)); local 182 this->fLocation.QuadPart = skipped; 183 if (skipped != skip) {
|
/external/icu4c/io/ |
uscanf_p.c | 88 UBool fSkipArg; /* TRUE if arg should be skipped */ 425 int32_t skipped; local 430 skipped = u_scanf_skip_leading_ws(input, info->fPadChar); 450 skipped += u_scanf_skip_leading_positive_sign(input, format, &status); 473 return parsePos + skipped; 490 int32_t skipped; local 498 skipped = u_scanf_skip_leading_ws(input, info->fPadChar); 549 skipped += u_scanf_skip_leading_positive_sign(input, format, &status); 572 return parsePos + skipped; 589 int32_t skipped; local 677 int32_t skipped; local 810 int32_t skipped = 0; local 904 int32_t skipped = 0; local 974 int32_t skipped; local 1030 int32_t skipped; local 1086 int32_t skipped; local 1133 int32_t skipped; local [all...] |
/libcore/luni/src/main/java/libcore/io/ |
Streams.java | 155 long skipped = 0; local 156 while (skipped < byteCount) { 157 int toRead = (int) Math.min(byteCount - skipped, buffer.length); 162 skipped += read; 171 return skipped;
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
simplefileflags.py | 169 skipped = num_files - len(result_files) 170 if skipped: 171 print 'Skipping %d file(s).' % skipped
|
/external/valgrind/main/massif/tests/ |
culling1.stderr.exp | 226 Massif: (skipped 1 snapshot) 228 Massif: (skipped 1 snapshot) 230 Massif: (skipped 1 snapshot) 232 Massif: (skipped 1 snapshot) 234 Massif: (skipped 1 snapshot) 236 Massif: (skipped 1 snapshot) 238 Massif: (skipped 1 snapshot) 240 Massif: (skipped 1 snapshot) 242 Massif: (skipped 1 snapshot) 244 Massif: (skipped 1 snapshot [all...] |
/external/regex-re2/re2/testing/ |
tester.cc | 80 bool skipped; // test skipped: wasn't applicable member in struct:re2::TestInstance::Result 286 result->skipped = true; 302 result->skipped = true; 313 result->skipped = true; 324 result->skipped = true; 328 &result->skipped, NULL); 333 result->skipped = true; 338 &result->skipped, NULL); 345 &result->skipped, NULL)) [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
Util.java | 265 long skipped = 0; local 266 while (skipped < byteCount) { 267 int toRead = (int) Math.min(byteCount - skipped, buffer.length); 272 skipped += read; 281 return skipped;
|
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/ |
CipherInputStreamTest.java | 179 int skipped = (int) cis.skip(2); local 180 int ind = skipped; 181 int got = skipped + cis.read(result, 0, 1); // the number of got bytes
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldCharArrayReaderTest.java | 238 long skipped = 0; local 240 skipped = cr.skip(5L); 242 5L, skipped); 243 assertEquals("Test 2: Skip skipped wrong chars;",
|
OldLineNumberInputStreamTest.java | 150 long skipped = lnis.skip(4); local 151 assertEquals("Test 1: Incorrect number of characters skipped;", 152 4, skipped);
|
OldLineNumberReaderTest.java | 164 long skipped = lnr.skip(80); local 165 assertEquals("Test 1: Incorrect number of characters skipped;", 166 80, skipped);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
CharArrayReaderTest.java | 164 long skipped = cr.skip(5L); local 166 assertEquals("Failed to skip correct number of chars", 5L, skipped); 167 assertEquals("Skip skipped wrong chars", 'W', cr.read());
|
/frameworks/base/core/jni/android/graphics/ |
CreateJavaOutputStreamAdaptor.cpp | 80 jlong skipped = env->CallLongMethod(fJavaInputStream, local 88 if (skipped < 0) { 89 skipped = 0; 92 return (size_t)skipped;
|
/external/smack/src/org/xbill/DNS/ |
Tokenizer.java | 205 int skipped = 0; local 211 return skipped; 214 skipped++; 252 int skipped = skipWhitespace(); local 253 if (skipped > 0 && wantWhitespace)
|
/frameworks/base/core/java/android/widget/ |
TableLayout.java | 582 int skipped = 0; local 606 skipped++; 619 if (skipped > 0 && skipped < count) { 621 extraSpace = skipped * extraSpace / (count - skipped);
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/audio/plugins/ |
WAVLoader.java | 166 int skipped = in.skipBytes(len); local 167 if (skipped <= 0) {
|