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

1 2 3 4 5 6 7 8 91011>>

  /external/regex-re2/benchlog/
mktable 100 sub skip() { subroutine
146 skip();
151 skip();
  /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/skia/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/src/crypto/aes/
asm_s390x.s 45 CMPBLE R4, R5, skip
47 skip: label
  /prebuilts/go/linux-x86/src/crypto/aes/
asm_s390x.s 45 CMPBLE R4, R5, skip
47 skip: label
  /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.
  /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);
MultiReader.java 64 @Override public long skip(long n) throws IOException { method in class:MultiReader
68 long result = current.skip(n);
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
AbstractJacocoMojo.java 52 @Parameter(property = "jacoco.skip", defaultValue = "false")
53 private boolean skip; field in class:AbstractJacocoMojo
57 if (skip) {
59 "Skipping JaCoCo execution because property jacoco.skip is set.");
  /external/python/cpython2/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 */

Completed in 4884 milliseconds

1 2 3 4 5 6 7 8 91011>>