Searched refs:Skip (Results 1 - 25 of 243) sorted by path

12345678910

/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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLegacyCommonTokenStream.cs69 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */
366 return new List<IToken>(tokens.Skip(start).Take(count));
H A DLexer.cs128 } else if (state.token == Tokens.Skip) {
150 public virtual void Skip() { method in class:Antlr.Runtime.Lexer
151 state.token = Tokens.Skip;
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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DExceptionExtensions.cs58 frames = new StackTrace( true ).GetFrames().Skip( 1 ).ToArray();
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 );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammar.g398 WS : (' '|'\t')+ { Skip(); }
H A DDebugGrammarLexer.cs442 Skip();
H A DProfileGrammar.g398 WS : (' '|'\t')+ { Skip(); }
H A DProfileGrammarLexer.cs442 Skip();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/JavaCompat/
H A DExpr.g355 Change all instances of "skip()" with "Skip()".
110 WS : (' '|'\t')+ {Skip();} ;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs187 public virtual void Skip() method in class:Antlr.Runtime.SlimLexer
190 //state.token = Tokens.Skip;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestExpressionFeatures.g3151 : (' ' | '\t' | '\n' | '\r') {Skip();}
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLegacyCommonTokenStream.cs68 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */
416 return new List<IToken>(tokens.Skip(start).Take(count));
H A DLexer.cs152 else if ( state.token == Tokens.Skip )
184 public virtual void Skip() method in class:Antlr.Runtime.Lexer
186 state.token = Tokens.Skip;
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/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas1069 procedure Skip;
2311 /// <summary>Skip tokens on any channel but this one; this is how we skip whitespace... </summary>
2459 procedure Skip;
5600 procedure TLexer.Skip;
/external/bison/etc/
H A Dbench.pl.in271 /* Skip white space. */
/external/bison/tests/
H A Dtestsuite10720 /* Skip white space. */
15699 # Skip if platform doesn't support file name. For example, Cygwin
16021 # Skip if platform doesn't support file name. For example, Cygwin
16343 # Skip if platform doesn't support file name. For example, Cygwin
16665 # Skip if platform doesn't support file name. For example, Cygwin
16987 # Skip if platform doesn't support file name. For example, Cygwin
17309 # Skip if platform doesn't support file name. For example, Cygwin
17631 # Skip if platform doesn't support file name. For example, Cygwin
17953 # Skip if platform doesn't support file name. For example, Cygwin
18275 # Skip i
[all...]
/external/chromium_org/android_webview/browser/
H A Dinput_stream.h35 virtual bool Skip(int64_t n, int64_t* bytes_skipped) = 0;
/external/chromium_org/android_webview/browser/net/
H A Dandroid_stream_reader_url_request_job_unittest.cc59 virtual bool Skip(int64_t n, int64_t* bytes_skipped) OVERRIDE {
H A Dinput_stream_reader.cc78 // Skip to the start of the requested data. This has to be done in a loop
85 if (!stream_->Skip(bytes_to_skip, &skipped))
H A Dinput_stream_reader_unittest.cc36 MOCK_METHOD2(Skip, bool(int64_t n, int64_t* bytes_skipped));
76 EXPECT_CALL(input_stream_, Skip(bytesToSkip, NotNull()))
90 EXPECT_CALL(input_stream_, Skip(bytesToSkip, NotNull()))
106 EXPECT_CALL(input_stream_, Skip(_, _))
110 EXPECT_CALL(input_stream_, Skip(bytesToSkip, NotNull()))
114 EXPECT_CALL(input_stream_, Skip(3, NotNull()))
118 EXPECT_CALL(input_stream_, Skip(2, NotNull()))
/external/chromium_org/android_webview/native/
H A Dinput_stream_impl.cc68 bool InputStreamImpl::Skip(int64_t n, int64_t* bytes_skipped) { function in class:android_webview::InputStreamImpl

Completed in 502 milliseconds

12345678910