HomeSort by relevance Sort by last modified time
    Searched refs:skipped (Results 1 - 25 of 203) sorted by null

1 2 3 4 5 6 7 8 9

  /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/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/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;
  /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;
  /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/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/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/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/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.cc 203 int skipped = 0; local
204 while (skipped < count) {
205 int bytes = Read(junk, min(count - skipped,
209 return skipped;
211 skipped += bytes;
213 return skipped;
297 int skipped = copying_stream_->Skip(count); local
298 position_ += skipped;
299 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/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...]
  /art/build/
Android.common_test.mk 111 ( [ -f $(ART_HOST_TEST_DIR)/skipped/$(1) ] || \
137 ([ -d $(ART_HOST_TEST_DIR)/skipped/ ] \
138 && (echo -e "\e[93mSKIPPED TESTS\e[0m" && ls -1 $(ART_HOST_TEST_DIR)/skipped/) \
139 || (echo -e "\e[92mNO TESTS SKIPPED\e[0m")) && \
153 || ((mkdir -p $(ART_HOST_TEST_DIR)/skipped/ && touch $(ART_HOST_TEST_DIR)/skipped/$(1) \
  /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;
  /external/lldb/test/unittest2/test/
test_skipping.py 17 self.assertEqual(result.skipped, [(test, "skip")])
29 self.assertEqual(result.skipped, [(test, "testing")])
51 self.assertEqual(len(result.skipped), 1)
56 self.assertEqual(result.skipped, [(test_do_skip, "testing")])
71 self.assertEqual(result.skipped, [(test, "testing")])
119 self.assertEqual(result.skipped, [(test, "testing")])
139 self.assertEqual(result.skipped, [(test, "testing")])
  /external/chromium-trace/trace-viewer/tracing/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/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 134 int64_t skipped = stream_->Skip(n); local
135 position_ += skipped;
136 return skipped;
  /external/valgrind/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...]

Completed in 1254 milliseconds

1 2 3 4 5 6 7 8 9