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

1 2 3 4 5

  /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/
Tokens.cs 42 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
  /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();
ExceptionExtensions.cs 58 frames = new StackTrace( true ).GetFrames().Skip( 1 ).ToArray();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 38 * All tokens go to the parser (unless skip() is called in that rule)
76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
92 public static readonly T Skip = new T()
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.h 169 virtual bool Skip(int count) = 0;
zero_copy_stream_impl.cc 96 bool FileInputStream::Skip(int count) {
97 return impl_.Skip(count);
152 int FileInputStream::CopyingFileInputStream::Skip(int count) {
167 return CopyingInputStream::Skip(count);
286 bool IstreamInputStream::Skip(int count) {
287 return impl_.Skip(count);
380 bool ConcatenatingInputStream::Skip(int count) {
383 // skipped when Skip() fails.
385 if (streams_[0]->Skip(count)) return true;
388 // to skip
    [all...]
zero_copy_stream_impl.h 93 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);
zero_copy_stream_impl_lite.h 75 bool Skip(int count);
184 virtual int Skip(int count);
212 bool Skip(int count);
gzip_stream.h 87 bool Skip(int count);
zero_copy_stream_impl_lite.cc 87 bool ArrayInputStream::Skip(int count) {
189 int CopyingInputStream::Skip(int count) {
267 bool CopyingInputStreamAdaptor::Skip(int count) {
275 // First skip any bytes left over from a previous BackUp().
277 // We have more data left over than we're trying to skip. Just chop it.
285 int skipped = copying_stream_->Skip(count);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammar.g3 98 WS : (' '|'\t')+ { Skip(); }
ProfileGrammar.g3 98 WS : (' '|'\t')+ { Skip(); }
  /external/opencv/otherlibs/highgui/
bitstrm.h 73 void Skip( int bytes );
132 void Skip( int bytes );
152 void Skip( int bytes );
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 29 (* Skip token for error recovery. *)
lexer.ml 6 (* Skip any whitespace. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 34 (* Skip token for error recovery. *)
lexer.ml 6 (* Skip any whitespace. *)
  /external/v8/src/
dateparser-inl.h 191 if (in_->Skip(':')) return DateToken::Symbol(':');
192 if (in_->Skip('-')) return DateToken::Symbol('-');
193 if (in_->Skip('+')) return DateToken::Symbol('+');
194 if (in_->Skip('.')) return DateToken::Symbol('.');
195 if (in_->Skip(')')) return DateToken::Symbol(')');
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/JavaCompat/
Expr.g3 55 Change all instances of "skip()" with "Skip()".
110 WS : (' '|'\t')+ {Skip();} ;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestExpressionFeatures.g3 151 : (' ' | '\t' | '\n' | '\r') {Skip();}
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 6 (* Skip any whitespace. *)
toplevel.ml 44 (* Skip token for error recovery. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 6 (* Skip any whitespace. *)
toplevel.ml 44 (* Skip token for error recovery. *)

Completed in 3406 milliseconds

1 2 3 4 5