/libcore/luni/src/main/java/java/io/ |
Reader.java | 194 * @return the number of characters actually skipped. 208 long skipped = 0; local 211 while (skipped < charCount) { 214 return skipped; 216 skipped += read; 218 return skipped; 220 if (charCount - skipped < toRead) { 221 toRead = (int) (charCount - skipped); 224 return skipped;
|
CharArrayReader.java | 254 * @return the number of characters actually skipped. 265 long skipped = 0; 268 skipped = charCount; 270 skipped = this.count - pos; 273 return skipped;
|
DataInputStream.java | 191 * input is reached before {@code count} bytes where skipped. 195 * @return the number of bytes actually skipped. 202 int skipped = 0; local 204 while (skipped < count && (skip = in.skip(count - skipped)) != 0) { 205 skipped += skip; 207 return skipped;
|
/external/chromium_org/android_webview/browser/net/ |
input_stream_reader.cc | 84 int64_t skipped = 0; local 85 if (!stream_->Skip(bytes_to_skip, &skipped)) 88 if (skipped <= 0) 90 DCHECK_LE(skipped, bytes_to_skip); 92 bytes_to_skip -= skipped;
|
/external/clang/utils/TestUtils/ |
pch-test.pl | 15 my $skipped = 0; 47 $skipped++; 53 print("$skipped tests skipped ('x')\n")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ctypes.py | 10 skipped, testcases = ctypes.test.get_tests(ctypes.test, "test_*.py", verbosity=0)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ctypes.py | 10 skipped, testcases = ctypes.test.get_tests(ctypes.test, "test_*.py", verbosity=0)
|
/external/chromium_org/tools/telemetry/telemetry/results/ |
page_run_unittest.py | 29 self.assertFalse(run.skipped) 36 self.assertFalse(run.skipped) 44 self.assertTrue(run.skipped) 51 self.assertTrue(run.skipped) 57 self.assertFalse(run.skipped) 63 self.assertFalse(run.skipped)
|
page_run.py | 36 return not self.skipped and not self.failed 39 def skipped(self): member in class:PageRun 40 """Whether the current run is being skipped. 53 return not self.skipped and any(
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_StringReader.java | 206 * @return the number of characters actually skipped. 216 long skipped = 0; local 219 skipped = count; 221 skipped = this.count - pos; 224 return skipped;
|
/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/icu/icu4c/source/i18n/ |
collationiterator.cpp | 54 // State of combining marks skipped in discontiguous contraction. 83 // Goes backward through the skipped-marks buffer. 84 // Returns the number of code points read beyond the skipped marks 117 // Replaces the characters we consumed with the newly skipped ones. 128 // Combining marks skipped in previous discontiguous-contraction matching. 131 // Combining marks newly skipped in current discontiguous-contraction matching. 138 // When a partial match fails, we back out skipped and partial-matching input characters. 150 skipped(NULL), 166 delete skipped; 174 // Ignore skipped since that should be unused between calls to nextCE() [all...] |
/external/chromium_org/v8/tools/testrunner/local/ |
verbose.py | 37 * %(skipped)4d tests will be skipped 47 skipped = timeout = nocrash = passes = fail_ok = fail = 0 54 skipped += 1 63 "skipped": skipped,
|
/external/chromium_org/base/process/ |
process_iterator_linux.cc | 79 int skipped = 0; local 81 while (skipped < kSkipLimit) { 90 skipped++; 118 if (skipped >= kSkipLimit) {
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
zero_copy_stream_impl_lite.cc | 193 int skipped = 0; local 194 while (skipped < count) { 195 int bytes = Read(junk, min(count - skipped, 199 return skipped; 201 skipped += bytes; 203 return skipped; 287 int skipped = copying_stream_->Skip(count); local 288 position_ += skipped; 289 return skipped == count;
|
/external/chromium_org/third_party/skia/src/utils/win/ |
SkIStream.cpp | 158 size_t skipped = this->fSkStream->skip( local 161 this->fLocation.QuadPart = skipped; 162 if (skipped != liDistanceToMove.QuadPart) { 169 size_t skipped = this->fSkStream->skip( local 172 this->fLocation.QuadPart += skipped; 173 if (skipped != liDistanceToMove.QuadPart) { 186 size_t skipped = this->fSkStream->skip(static_cast<size_t>(skip)); local 187 this->fLocation.QuadPart = skipped; 188 if (skipped != skip) {
|
/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 | 158 size_t skipped = this->fSkStream->skip( local 161 this->fLocation.QuadPart = skipped; 162 if (skipped != liDistanceToMove.QuadPart) { 169 size_t skipped = this->fSkStream->skip( local 172 this->fLocation.QuadPart += skipped; 173 if (skipped != liDistanceToMove.QuadPart) { 186 size_t skipped = this->fSkStream->skip(static_cast<size_t>(skip)); local 187 this->fLocation.QuadPart = skipped; 188 if (skipped != skip) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 6 """Test skipped because it requested a disallowed resource. 54 """Return a list of skipped test modules, and a list of test cases.""" 56 skipped = [] 59 skipped.append(modname) 61 print >> sys.stderr, "Skipped %s: excluded" % modname 66 skipped.append(modname) 68 print >> sys.stderr, "Skipped %s: %s" % (modname, detail) 76 return skipped, tests 116 def run(self, test, skipped): 119 # skipped tests [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_skipping.py | 17 self.assertEqual(result.skipped, [(test, "skip")]) 29 self.assertEqual(result.skipped, [(test, "testing")]) 48 self.assertEqual(len(result.skipped), 1) 53 self.assertEqual(result.skipped, [(test_do_skip, "testing")]) 66 self.assertEqual(result.skipped, [(test, "testing")]) 81 self.assertEqual(result.skipped, [(test, "testing")]) 96 self.assertEqual(result.skipped, [(test, "testing")]) 144 self.assertEqual(result.skipped, [(test, "testing")]) 164 self.assertEqual(result.skipped, [(test, "testing")])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 6 """Test skipped because it requested a disallowed resource. 54 """Return a list of skipped test modules, and a list of test cases.""" 56 skipped = [] 59 skipped.append(modname) 61 print >> sys.stderr, "Skipped %s: excluded" % modname 66 skipped.append(modname) 68 print >> sys.stderr, "Skipped %s: %s" % (modname, detail) 76 return skipped, tests 116 def run(self, test, skipped): 119 # skipped tests [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_skipping.py | 17 self.assertEqual(result.skipped, [(test, "skip")]) 29 self.assertEqual(result.skipped, [(test, "testing")]) 48 self.assertEqual(len(result.skipped), 1) 53 self.assertEqual(result.skipped, [(test_do_skip, "testing")]) 66 self.assertEqual(result.skipped, [(test, "testing")]) 81 self.assertEqual(result.skipped, [(test, "testing")]) 96 self.assertEqual(result.skipped, [(test, "testing")]) 144 self.assertEqual(result.skipped, [(test, "testing")]) 164 self.assertEqual(result.skipped, [(test, "testing")])
|
/external/chromium_org/third_party/icu/source/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...] |
/external/icu/icu4c/source/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...] |