Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:stop

52          *  start/stop are not affected by changing this.
64 int stop;
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop )
81 this.stop = stop;
103 stop = ( (CommonToken)oldToken ).stop;
117 if (start <= stop && stop < input.Count)
118 return input.Substring( start, stop - start + 1 );
127 * that start/stop indexes are not valid. It means that that input
198 return stop;
202 stop = value;
250 return "[@" + TokenIndex + "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";