Home | History | Annotate | Download | only in message

Lines Matching defs:lowerBound

47     private final int lowerBound;
51 public ParserCursor(int lowerBound, int upperBound) {
53 if (lowerBound < 0) {
56 if (lowerBound > upperBound) {
59 this.lowerBound = lowerBound;
61 this.pos = lowerBound;
65 return this.lowerBound;
77 if (pos < this.lowerBound) {
93 buffer.append(Integer.toString(this.lowerBound));