HomeSort by relevance Sort by last modified time
    Searched defs:CharIndex (Results 1 - 3 of 3) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Lexer.cs 66 return input.Substring(state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex);
200 IToken t = new CommonToken(input, state.type, state.channel, state.tokenStartCharIndex, CharIndex - 1);
259 public virtual int CharIndex {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Lexer.cs 74 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
242 IToken t = new CommonToken( input, state.type, state.channel, state.tokenStartCharIndex, CharIndex - 1 );
312 public virtual int CharIndex
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 70 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
258 //IToken t = new CommonToken( input, state.type, state.channel, state.tokenStartCharIndex, CharIndex - 1 );
329 public int CharIndex

Completed in 196 milliseconds