HomeSort by relevance Sort by last modified time
    Searched defs:skip (Results 1 - 25 of 1537) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
LexerExtensions.cs 37 public static void skip( Lexer lexer ) method in class:Antlr.Runtime.JavaExtensions.LexerExtensions
39 lexer.Skip();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
LexerExtensions.cs 37 public static void skip( this Lexer lexer ) method in class:Antlr.Runtime.JavaExtensions.LexerExtensions
39 lexer.Skip();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
SkippingCipher.java 9 * Skip numberOfBytes forwards, or backwards.
11 * @param numberOfBytes the number of bytes to skip (positive forward, negative backwards).
15 long skip(long numberOfBytes); method in interface:SkippingCipher
18 * Reset the cipher and then skip forward to a given position.
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.h 26 int8_t *skip; member in struct:encode_b_args
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
chunk.py 42 Extra methods are: skip() (called by close, skips to the end of the chunk),
88 self.skip()
143 def skip(self): member in class:Chunk
144 """Skip the rest of the chunk.
  /external/autotest/tko/parsers/test/
unittest_hotfix.py 1 """Monkey patch lame-o vanilla unittest with test skip feature.
93 def skip(self, msg=None): member in class:TestCase
94 """Skip the test, with the given message."""
99 """Skip the test if the expression is true."""
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableInputStream.java 32 * {@link java.io.InputStream#skip(long) InputStream.skip}.
41 public long skip(long n) throws IOException { method in class:SeekableInputStream
  /external/python/cpython2/Lib/
chunk.py 42 Extra methods are: skip() (called by close, skips to the end of the chunk),
89 self.skip()
145 def skip(self): member in class:Chunk
146 """Skip the rest of the chunk.
  /external/python/cpython3/Lib/
chunk.py 42 Extra methods are: skip() (called by close, skips to the end of the chunk),
89 self.skip()
145 def skip(self): member in class:Chunk
146 """Skip the rest of the chunk.
  /external/python/cpython3/Tools/scripts/
parse_html5_entities.py 85 skip = False variable
89 skip = True variable
91 if skip:
92 # skip the old items until the }
94 skip = False variable
  /external/skia/src/core/
SkBuffer.cpp 14 const void* SkRBuffer::skip(size_t size) { function in class:SkRBuffer
25 if (const void* src = this->skip(size)) {
46 void* SkWBuffer::skip(size_t size) { function in class:SkWBuffer
  /external/skqp/src/core/
SkBuffer.cpp 41 void* SkWBuffer::skip(size_t size) { function in class:SkWBuffer
  /libcore/ojluni/src/main/java/java/io/
ObjectInput.java 90 public long skip(long n) throws IOException; method in interface:ObjectInput
  /packages/apps/Gallery2/jni_jpegstream/src/
inputstream_wrapper.cpp 48 int64_t InputStreamWrapper::skip(int64_t count) { function in class:InputStreamWrapper
  /prebuilts/gdb/darwin-x86/lib/python2.7/
chunk.py 42 Extra methods are: skip() (called by close, skips to the end of the chunk),
88 self.skip()
143 def skip(self): member in class:Chunk
144 """Skip the rest of the chunk.
  /prebuilts/gdb/linux-x86/lib/python2.7/
chunk.py 42 Extra methods are: skip() (called by close, skips to the end of the chunk),
88 self.skip()
143 def skip(self): member in class:Chunk
144 """Skip the rest of the chunk.
  /prebuilts/go/darwin-x86/test/
inline_caller.go 22 skip int
36 x.pc, x.file, x.line, x.ok = runtime.Caller(skip) // line 36
41 skip = skp
45 panic(fmt.Sprintf("skip=%d runtime.Caller failed", skp))
71 panic(fmt.Sprintf("skip=%d expected line %d, got line %d", i, expected[i].line, frame.line))
74 panic(fmt.Sprintf("skip=%d expected function %s, got %s", i, expected[i].funcName, fn.Name()))
21 skip int var
  /prebuilts/go/linux-x86/test/
inline_caller.go 22 skip int
36 x.pc, x.file, x.line, x.ok = runtime.Caller(skip) // line 36
41 skip = skp
45 panic(fmt.Sprintf("skip=%d runtime.Caller failed", skp))
71 panic(fmt.Sprintf("skip=%d expected line %d, got line %d", i, expected[i].line, frame.line))
74 panic(fmt.Sprintf("skip=%d expected function %s, got %s", i, expected[i].funcName, fn.Name()))
21 skip int var
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
chunk.py 42 Extra methods are: skip() (called by close, skips to the end of the chunk),
88 self.skip()
143 def skip(self): member in class:Chunk
144 """Skip the rest of the chunk.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
chunk.py 42 Extra methods are: skip() (called by close, skips to the end of the chunk),
88 self.skip()
143 def skip(self): member in class:Chunk
144 """Skip the rest of the chunk.
  /art/test/712-varhandle-invocations/src/
VarHandleUnitTestCollector.java 32 public void skip() { method in class:VarHandleUnitTestCollector
34 out.println("SKIP");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
fastsearch.h 42 Py_ssize_t skip, count = 0; local
76 skip = mlast - 1;
87 skip = mlast - i - 1;
93 /* note: using mlast in the skip path slows things down on x86 */
113 i = i + skip;
115 /* skip: check if next character is part of pattern */
130 skip = i - 1;
146 i = i - skip;
148 /* skip: check if previous character is part of pattern */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
fastsearch.h 42 Py_ssize_t skip, count = 0; local
76 skip = mlast - 1;
87 skip = mlast - i - 1;
93 /* note: using mlast in the skip path slows things down on x86 */
113 i = i + skip;
115 /* skip: check if next character is part of pattern */
130 skip = i - 1;
146 i = i - skip;
148 /* skip: check if previous character is part of pattern */
  /external/guava/guava/src/com/google/common/io/
CountingInputStream.java 69 @Override public long skip(long n) throws IOException { method in class:CountingInputStream
70 long result = in.skip(n);
MultiInputStream.java 105 @Override public long skip(long n) throws IOException { method in class:MultiInputStream
109 long result = in.skip(n);
116 return 1 + in.skip(n - 1);

Completed in 1666 milliseconds

1 2 3 4 5 6 7 8 91011>>