/external/e2fsprogs/tests/e_brel_bma/ |
script | 2 echo "skipped"
|
/external/e2fsprogs/tests/e_irel_ima/ |
script | 2 echo "skipped"
|
/external/e2fsprogs/tests/f_extents/ |
script | 2 echo "skipped"
|
/external/e2fsprogs/tests/f_h_badnode/ |
script | 5 echo "skipped"
|
/external/e2fsprogs/tests/f_h_badroot/ |
script | 5 echo "skipped"
|
/external/e2fsprogs/tests/f_h_normal/ |
script | 5 echo "skipped"
|
/external/e2fsprogs/tests/f_h_reindex/ |
script | 5 echo "skipped"
|
/external/e2fsprogs/tests/f_h_unsigned/ |
script | 5 echo "skipped"
|
/external/clang/test/Parser/ |
cxx-default-args.cpp | 6 // skipped, avoiding a "expected ';' after class" after 'undecl'.
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
online-whitelist.manifest | 5 # These are prefixes for requests we test, but they are not same origin, so they will be skipped.
|
different-https-origin-resource.html | 25 // The only resource listed in the manifest file is in a different https origin and should be skipped.
|
/external/clang/utils/TestUtils/ |
pch-test.pl | 15 my $skipped = 0; 47 $skipped++; 53 print("$skipped tests skipped ('x')\n")
|
/external/llvm/test/FrontendC/ |
2002-02-13-ReloadProblem.c | 6 * now it is skipped entirely, and since reload doesn't run, it can't cause
|
/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 750 int32_t skipped; local 811 int32_t skipped = 0; local 905 int32_t skipped = 0; local 975 int32_t skipped; local 1031 int32_t skipped; local 1087 int32_t skipped; local 1134 int32_t skipped; local [all...] |
/external/guava/src/com/google/common/io/ |
LimitInputStream.java | 98 long skipped = in.skip(n); local 99 left -= skipped; 100 return 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/icu4c/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");
|
/libcore/luni/src/main/java/java/io/ |
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;
|
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;
|
/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 | 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/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/chromium/chrome/browser/chromeos/login/ |
registration_screen.cc | 31 // Host page navigates to these URLs in case of success/skipped registration. 33 const char kRegistrationSkippedUrl[] = "cros://register/skipped"; 113 VLOG(1) << "Registration form skipped.";
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
webkit_unittest.py | 98 # Skipped file, and that we include the feature and platform checks. 101 '/tmp/Skipped': 'fast/html/keygen.html', 105 skips_file='/tmp/Skipped', filesystem=mock_fs)
|
/frameworks/base/include/media/stagefright/ |
YUVCanvas.h | 61 // For each X increment in the target image, skipX pixels are skipped 64 // are skipped in the source image.
|