/external/clang/test/Preprocessor/ |
disabled-cond-diags2.c | 12 #X // shouldn't produce diagnostics (block #if condition not valid, so skipped)
|
/external/clang/test/Tooling/ |
multi-jobs.cpp | 2 // The following test uses multiple time the same '-no-integrated-as' flag in order to make sure those flags are really skipped, and not just overwritten by luck :
|
/external/clang/utils/TestUtils/ |
pch-test.pl | 15 my $skipped = 0; 47 $skipped++; 53 print("$skipped tests skipped ('x')\n")
|
/external/e2fsprogs/tests/f_desc_size_bad/ |
script | 2 echo "$test_name: $test_description: skipped"
|
/external/e2fsprogs/tests/f_dup_de/ |
script | 15 echo "$test_name: $test_description: skipped"
|
/external/e2fsprogs/tests/f_uninit_last_uninit/ |
script | 25 echo "$test_name: $test_description: skipped"
|
/external/glide/library/src/main/java/com/bumptech/glide/util/ |
ExceptionCatchingInputStream.java | 101 long skipped; local 103 skipped = wrapped.skip(byteCount); 106 skipped = 0; 108 return skipped;
|
/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/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/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")])
|
/developers/build/prebuilts/gradle/Quiz/Wearable/src/main/res/values/ |
strings.xml | 26 <string name="skipped">skipped</string>
|
/developers/samples/android/wearable/wear/Quiz/Wearable/src/main/res/values/ |
strings.xml | 26 <string name="skipped">skipped</string>
|
/development/samples/browseable/Quiz/Wearable/res/values/ |
strings.xml | 26 <string name="skipped">skipped</string>
|
/external/libxml2/test/schemas/ |
import1_0.xsd | 14 <!-- This document will be skipped, since a schema for the namespace 25 "import1_0b.imp" was skipped -->
|
/external/pcre/dist/ |
RunTest.bat | 329 echo Test 4 Skipped due to absence of UTF-%bits% support. 339 echo Test 5 Skipped due to absence of UTF-%bits% support. 349 echo Test 6 Skipped due to absence of Unicode property support. 359 echo Test 7 Skipped due to absence of Unicode property support. 374 echo Test 9 Skipped due to absence of UTF-%bits% support. 383 echo Test 10 Skipped due to absence of Unicode property support. 392 echo Test 11 Skipped because link size is not 2. 396 echo Test 11 Skipped due to absence of Unicode property support. 405 echo Test 12 Skipped due to absence of JIT support. 413 echo Test 13 Skipped due to presence of JIT support [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationIterator.java | 80 // State of combining marks skipped in discontiguous contraction. 108 // Goes backward through the skipped-marks buffer. 109 // Returns the number of code points read beyond the skipped marks 143 // Replaces the characters we consumed with the newly skipped ones. 155 // Combining marks skipped in previous discontiguous-contraction matching. 158 // Combining marks newly skipped in current discontiguous-contraction matching. 165 // When a partial match fails, we back out skipped and partial-matching input characters. 203 // Ignore skipped since that should be unused between calls to nextCE(). 369 if(skipped != null) { skipped.clear(); [all...] |
/external/lldb/test/unittest2/ |
runner.py | 93 self.newTestResult(test,"s","skipped %r" % (reason,)) 173 expectedFails = unexpectedSuccesses = skipped = 0 177 result.skipped)) 178 expectedFails, unexpectedSuccesses, skipped = results 191 if skipped: 192 infos.append("skipped=%d" % skipped)
|
/libcore/luni/src/main/java/java/io/ |
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;
|
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;
|
/prebuilts/python/darwin-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)
|
/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...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/reporting/ |
SensorTestDetails.java | 36 SKIPPED, 62 resultCode = ResultCode.SKIPPED; 85 resultCode = ResultCode.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;
|