Searched refs:amount (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DCharStream.java75 * Backs up the input stream by amount steps. Lexer calls this method if it
79 * @param amount steps to back up
81 void backup(int amount); argument
H A DFastCharStream.java87 public final void backup(int amount) { argument
88 bufferPosition -= amount;
H A DSimpleCharStream.java245 public void backup(int amount) { argument
247 inBuf += amount;
248 if ((bufpos -= amount) < 0)

Completed in 11 milliseconds