Lines Matching full:channel
42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel)
67 this._channel = channel;
70 public int Channel
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
150 while (_tokens[i].Channel != _channel)
152 // also stops at EOF (it's on channel)
161 while (i >= 0 && ((IToken)_tokens[i]).Channel != _channel)