Lines Matching refs:Of
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
18 * 3. The name of the author may not be used to endorse or promote products
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 /** Buffer all input tokens but do on-demand fetching of new tokens from
42 * proper lexing of future tokens. The ST template parser needs this,
45 * as part of an expression but "hi, <it>" as a nested template.
51 * This is not a subclass of UnbufferedTokenStream because I don't want
52 * to confuse small moving window of tokens it uses for the full buffer.
60 * chunks of it later. The buffer in LookaheadStream overlaps sometimes
70 /** The index into the tokens list of the current token (next token
240 throw new IndexOutOfRangeException("token index " + i + " out of range 0.." + (_tokens.Count - 1));
327 /** Given a start and stop index, return a List of all tokens in
366 return GetTokens(start, stop, BitSet.Of(ttype));