Searched refs:Skip (Results 1 - 25 of 156) sorted by relevance

1234567

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokens.cs42 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in class:Antlr.Runtime.Tokens
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DLexerExtensions.cs39 lexer.Skip();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DLexerExtensions.cs39 lexer.Skip();
H A DSubList.cs46 .Skip( _startIndex )
163 .Skip( _startIndex )
267 return _source.Cast<object>().Skip( _startIndex ).Take( Count ).Contains( value );
334 return _source.Skip( _startIndex ).Take( Count ).GetEnumerator();
353 return _source.Skip( _startIndex ).Take( Count ).Contains( item );
H A DExceptionExtensions.cs58 frames = new StackTrace( true ).GetFrames().Skip( 1 ).ToArray();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in class:Antlr.Runtime.Tokens
92 public static readonly T Skip = new T() field in class:Antlr.Runtime.T
/external/sfntly/cpp/src/test/
H A Dmemory_io_test.cc63 EXPECT_EQ(is.Skip(30), 30); // position 50
68 EXPECT_EQ(is.Skip(-20), -20); // position 40
73 EXPECT_EQ(is.Skip(-60), -50); // Out of bound, position 0
74 EXPECT_EQ(is.Skip(kTestBufferLen + 10), (int32_t)kTestBufferLen);
H A Dfile_io_test.cc57 is.Skip(89);
62 // Skip test
63 is.Skip(-89);
67 is.Skip(100);
70 is.Skip(-400);
118 is.Skip(89);
125 font_is2.Skip(-200);
137 font_is.Skip(TTF_OFFSET[SAMPLE_TTF_FEAT]);
/external/lzma/CS/7zip/Compress/LZ/
H A DIMatchFinder.cs22 void Skip(UInt32 num); method in interface:SevenZip.Compression.LZ.IMatchFinder
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc97 bool FileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream
98 return impl_.Skip(count);
153 int FileInputStream::CopyingFileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream::CopyingFileInputStream
168 return CopyingInputStream::Skip(count);
287 bool IstreamInputStream::Skip(int count) { function in class:google::protobuf::io::IstreamInputStream
288 return impl_.Skip(count);
381 bool ConcatenatingInputStream::Skip(int count) { function in class:google::protobuf::io::ConcatenatingInputStream
384 // skipped when Skip() fails.
386 if (streams_[0]->Skip(count)) return true;
447 bool LimitingInputStream::Skip(in function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl.h93 bool Skip(int count);
108 int Skip(int count);
227 bool Skip(int count);
238 // (We use the default implementation of Skip().)
314 bool Skip(int count);
340 bool Skip(int count);
H A Dzero_copy_stream_impl_lite.h76 bool Skip(int count);
185 virtual int Skip(int count);
213 bool Skip(int count);
H A Dzero_copy_stream.h169 virtual bool Skip(int count) = 0;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammar.g398 WS : (' '|'\t')+ { Skip(); }
H A DProfileGrammar.g398 WS : (' '|'\t')+ { Skip(); }
/external/chromium-trace/catapult/third_party/typ/typ/tests/
H A Djson_results_test.py79 json_results.ResultType.Skip,
/external/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.h40 virtual int64_t Skip(int64_t n);
H A Dinput_stream.h38 virtual int64_t Skip(int64_t n) = 0;
H A Dmemory_input_stream.h40 virtual int64_t Skip(int64_t n);
/external/opencv/otherlibs/highgui/
H A Dbitstrm.h73 void Skip( int bytes );
132 void Skip( int bytes );
152 void Skip( int bytes );
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml29 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml34 (* Skip token for error recovery. *)
/external/opencv3/3rdparty/libwebp/demux/
H A Ddemux.c136 static WEBP_INLINE void Skip(MemBuffer* const mem, size_t size) { function
151 Skip(mem, 1);
158 Skip(mem, 2);
165 Skip(mem, 3);
172 Skip(mem, 4);
233 Skip(mem, payload_available);
264 Skip(mem, payload_available);
418 Skip(mem, RIFF_HEADER_SIZE);
474 Skip(mem, TAG_SIZE); // VP8X
483 Skip(me
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_input_stream.cc132 int64_t FontInputStream::Skip(int64_t n) { function in class:sfntly::FontInputStream
134 int64_t skipped = stream_->Skip(n);
/external/webp/src/demux/
H A Ddemux.c134 static WEBP_INLINE void Skip(MemBuffer* const mem, size_t size) { function
149 Skip(mem, 1);
156 Skip(mem, 2);
163 Skip(mem, 3);
170 Skip(mem, 4);
239 Skip(mem, payload_available);
265 Skip(mem, payload_available);
386 Skip(mem, RIFF_HEADER_SIZE);
475 Skip(mem, chunk_size_padded - ANIM_CHUNK_SIZE);
478 goto Skip;
[all...]

Completed in 674 milliseconds

1234567