HomeSort by relevance Sort by last modified time
    Searched refs:skip (Results 276 - 300 of 3135) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/test/java/libcore/java/io/
OldCharArrayReaderTest.java 98 cr.skip(5L);
197 cr.skip(1000);
221 cr.skip(5L);
240 skipped = cr.skip(5L);
241 assertEquals("Test 1: Failed to skip correct number of chars;",
243 assertEquals("Test 2: Skip skipped wrong chars;",
248 cr.skip(1);
OldBufferedReaderTest.java 87 br.skip(500);
89 br.skip(250);
100 br.skip(500);
114 in.skip(6);
126 in.skip(6);
128 in.skip(7);
268 br.skip(-1);
274 br.skip(500);
277 assertTrue("Test 2: Failed to set skip properly.",
284 br.skip(1)
    [all...]
OldPushbackInputStreamTest.java 171 tobj.skip(6);
173 tobj.skip(1000000);
174 tobj.skip(1000000);
177 tobj.skip(1);
183 // Test for method long java.io.PushbackInputStream.skip(long)
186 pis.skip(50);
191 pis.skip(25);
311 tobj.skip(2);
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 24 // If the skip function returns true, no copy is required.
28 Copy(copy func(AST) AST, skip func(AST) bool) AST
120 func (n *Name) Copy(fn func(AST) AST, skip func(AST) bool) AST {
121 if skip(n) {
168 func (t *Typed) Copy(fn func(AST) AST, skip func(AST) bool) AST {
169 if skip(t) {
172 name := t.Name.Copy(fn, skip)
173 typ := t.Type.Copy(fn, skip)
226 func (q *Qualified) Copy(fn func(AST) AST, skip func(AST) bool) AST {
227 if skip(q)
    [all...]
c++filt.go 115 skip := 0
117 skip++
119 if *stripUnderscore && name[skip] == '_' {
120 skip++
122 result := demangle.Filter(name[skip:], options()...)
123 if result == name[skip:] {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 24 // If the skip function returns true, no copy is required.
28 Copy(copy func(AST) AST, skip func(AST) bool) AST
120 func (n *Name) Copy(fn func(AST) AST, skip func(AST) bool) AST {
121 if skip(n) {
168 func (t *Typed) Copy(fn func(AST) AST, skip func(AST) bool) AST {
169 if skip(t) {
172 name := t.Name.Copy(fn, skip)
173 typ := t.Type.Copy(fn, skip)
226 func (q *Qualified) Copy(fn func(AST) AST, skip func(AST) bool) AST {
227 if skip(q)
    [all...]
c++filt.go 115 skip := 0
117 skip++
119 if *stripUnderscore && name[skip] == '_' {
120 skip++
122 result := demangle.Filter(name[skip:], options()...)
123 if result == name[skip:] {
  /external/autotest/contrib/
summarize_loadtest.py 21 # Default keys to skip displaying.
53 parser.add_argument('--skip', type=str, action='store',
54 help='Comma-separated list of keys to skip displaying.',
67 def summarize_entries(entries, skip=set()):
80 if key not in skip})
82 if key not in skip})
176 skip = options.skip.split(',') if options.skip else set()
177 summaries = [summarize_entries(group, skip) for group in groups
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_strings.py 82 @unittest.skip('test disabled')
109 @unittest.skip('test disabled')
127 @unittest.skip('test disabled')
137 @unittest.skip('test disabled')
146 @unittest.skip('test disabled')
158 @unittest.skip('test disabled')
185 @unittest.skip('test disabled')
  /external/python/cpython3/Lib/ctypes/test/
test_strings.py 82 @unittest.skip('test disabled')
109 @unittest.skip('test disabled')
127 @unittest.skip('test disabled')
137 @unittest.skip('test disabled')
146 @unittest.skip('test disabled')
158 @unittest.skip('test disabled')
185 @unittest.skip('test disabled')
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_videoobjectplane.c 107 uint32_t code, skip; local
111 skip=3;
113 getbits = viddec_pm_peek_bits(parent, &code, skip);
118 viddec_pm_skip_bits(parent, skip);
122 skip=1;
126 skip++;
128 *dmv_length = 5 + skip;
132 skip=(code <= 1) ? 2 : 3;
135 viddec_pm_skip_bits(parent, skip);
  /external/skia/src/core/
SkBuffer.h 65 const void* skip(size_t bytes);
67 return static_cast<const T*>(this->skip(SkSafeMath::Mul(count, sizeof(T))));
105 void* skip(size_t size); // return start of skipped data
  /external/toybox/toys/posix/
uniq.c 37 static char *skip(char *str) function
41 // Skip fields first
47 // Skip chars
82 t1 = skip(thisline);
83 t2 = skip(prevline);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ByteArrayInputStreamTest.java 96 is.skip(3000);
128 is.skip(50);
151 * ByteArrayInputStream#skip(long)
155 is.skip(100);
157 assertTrue("Failed to skip to correct position", new String(buf1, 0,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
CheckedInputStreamTest.java 78 * java.util.zip.CheckedInputStream#skip(long)
81 // testing that the return by skip is valid
85 assertEquals("the value returned by skip(n) is not the same as its parameter",
86 skipValue, checkIn.skip(skipValue));
87 checkIn.skip(skipValue);
92 assertEquals(0, checkIn.skip(0));
97 // testing that the return by skip is valid
114 // testing that the return by skip is valid
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/offdevice_intermediate_dict/
offdevice_intermediate_dict.cpp 49 return addWordInner(codePoints.skip(i), wordProperty,
78 ptNodeCodePoints.skip(i), *ptNode));
82 return addWordInner(codePoints.skip(i), wordProperty, childrenPtNodeArray);
  /test/vts-testcase/kernel/syscall/
VtsKernelSyscallExistenceTest.py 58 asserts.skip("32-bit not supported")
68 asserts.skip("32-bit not supported")
78 asserts.skip("32-bit not supported")
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68hc11/
adj-jump.s 9 .skip 20
71 .skip 32
73 .skip 10
  /toolchain/binutils/binutils-2.27/gas/testsuite/lib/
gas-defs.exp 309 # If testing specific files and this isn't one of them, skip it.
398 # skip: GLOBS...
399 # not-skip: GLOBS...
472 set opts(skip) {}
473 set opts(not-skip) {}
569 # You can have both skip/not-skip and target/not-target, but you can't
570 # have both skip and not-skip, or target and not-target, in the same file.
571 if { $opts(skip) != "" } then
    [all...]
  /art/test/134-reg-promotion/smali/
Test.smali 52 if-nez v3, :skip
54 :skip
  /art/test/712-varhandle-invocations/src/
VarHandleUnitTestCollector.java 32 public void skip() { method in class:VarHandleUnitTestCollector
34 out.println("SKIP");
  /development/tools/winscope/src/
transform.js 65 skip: handle_children(children, false /* transform */),
88 let {skip, formatter} = options;
93 if (skip && skip.includes(obj)) {
94 // skip
  /external/compiler-rt/lib/tsan/dd/
dd_rtl.cc 22 static u32 CurrentStackTrace(Thread *thr, uptr skip) {
27 if (stack.size <= skip)
29 return StackDepotPut(StackTrace(stack.trace + skip, stack.size - skip));
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLBIOSink.java 48 long skip(long byteCount) { method in class:OpenSSLBIOSink
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderFast.java 73 skip(len - 1);
93 skip(mainLen - 1);
116 skip(bestRepLen - 1);
148 skip(mainLen - 2);

Completed in 356 milliseconds

<<11121314151617181920>>