HomeSort by relevance Sort by last modified time
    Searched full:skipped (Results 51 - 75 of 2231) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
runner.py 84 self.stream.writeln("skipped {0!r}".format(reason))
166 expectedFails = unexpectedSuccesses = skipped = 0
170 result.skipped))
174 expectedFails, unexpectedSuccesses, skipped = results
186 if skipped:
187 infos.append("skipped=%d" % skipped)
  /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...]
  /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;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/reporting/
SensorTestDetails.java 36 SKIPPED,
62 resultCode = ResultCode.SKIPPED;
85 resultCode = ResultCode.SKIPPED;
  /external/chromium_org/sandbox/win/src/
policy_engine_processor.cc 18 // Decides if an opcode can be skipped (not evaluated) or not. The function
20 // true if the opcode should be skipped or not and also can set keep_skipping
21 // to false to signal that the current instruction should be skipped but not
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 134 int64_t skipped = stream_->Skip(n); local
135 position_ += skipped;
136 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/libogg/doc/libogg/
ogg_sync_pageseek.html 21 <p>This is useful when seeking within a bitstream. ogg_sync_pageseek will synchronize to the next page in the bitstream and return information about how many bytes we advanced or skipped in order to do so.
45 <li>-n means that we skipped n bytes within the bitstream.</li>
47 0 means that the page isn't ready and we need more data, or than an internal error occurred. No bytes have been skipped.</li>
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 134 int64_t skipped = stream_->Skip(n); local
135 position_ += skipped;
136 return 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/chrome/common/extensions/api/identity/
oauth2_manifest_handler.h 25 // Indicates that approval UI can be skipped for a set of whitelisted apps.
  /external/clang/test/Lexer/
pragma-region.c 4 // Editor-only pragma, just skipped by compiler.
  /external/e2fsprogs/tests/f_dup_resize/
script 29 echo "$test_name: $test_description: skipped"
  /external/e2fsprogs/tests/f_extent_oobounds/
script 41 echo "$test_name: $test_description: skipped"
  /external/e2fsprogs/tests/r_1024_small_bg/
script 25 echo "$test_name: $test_description: skipped"
  /external/e2fsprogs/tests/r_ext4_small_bg/
script 25 echo "$test_name: $test_description: skipped"
  /external/mksh/src/
var_spec.h 16 /* NOTE: F0 are skipped for the ITEMS array, only FN generate names */
  /frameworks/testing/support/tests/src/android/support/test/
MyEmptyTest.java 23 * Placeholder test to verify empty TestCase's are skipped
  /external/chromium_org/android_webview/browser/
input_stream.h 24 // Sets |bytes_available| to the number of bytes that can be read (or skipped
32 // |bytes_skipped| to the number of of bytes skipped.
  /external/clang/test/SemaCXX/
conversion-delete-expr.cpp 77 void f5(X1 x) { delete x; } // OK. In selecting a conversion to pointer function, template convesions are skipped.
107 // OK. In selecting a conversion to pointer function, template convesions are skipped.
  /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/third_party/icu/source/tools/genren/
genren.pl 183 &verbose( "$ARGV[0]: Skipped initializer $_\n" );
185 &verbose( "$ARGV[0]: Skipped finilizer $_\n" );
187 print STDERR "$ARGV[0]: Skipped strange mangled function $_\n";
189 print STDERR "$ARGV[0]: Skipped vtable $_\n";
191 print STDERR "$ARGV[0]: Skipped typeinfo $_\n";
193 print STDERR "$ARGV[0]: Skipped ignored function $_\n";
201 &verbose( "Skipped: $_ $1\n");
  /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/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;
  /libcore/luni/src/main/java/libcore/io/
Streams.java 156 long skipped = 0; local
157 while (skipped < byteCount) {
158 int toRead = (int) Math.min(byteCount - skipped, buffer.length);
163 skipped += read;
172 return skipped;

Completed in 1492 milliseconds

1 23 4 5 6 7 8 91011>>