Lines Matching refs:Index
55 /** <summary>0..n-1 index into string of next char</summary> */
61 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
71 * A null is kept @ index 0. Create upon first call to mark().
119 * Return the current input symbol index 0..n where n indicates the
120 * last symbol has been read. The index is the index of char to
124 public virtual int Index
281 * consume() ahead until p==index; can't just set p=index as we must
285 public virtual void Seek( int index )
287 if ( index <= p )
289 p = index; // just jump; don't update stream state (line, ...)
292 // seek forward, consume until p hits index
293 while ( p < index )