Home | History | Annotate | Download | only in text

Lines Matching defs:contextStart

38         limit=cpStart=cpLimit=index=contextStart=contextLimit=0;
50 cpStart=cpLimit=index=contextStart=0;
92 * @param contextStart Start of context for next().
95 public void setContextLimits(int contextStart, int contextLimit) {
96 if(contextStart<0) {
97 this.contextStart=0;
98 } else if(contextStart<=rep.length()) {
99 this.contextStart=contextStart;
101 this.contextStart=rep.length();
103 if(contextLimit<this.contextStart) {
104 this.contextLimit=this.contextStart;
185 } else if(dir<0 && index>contextStart) {
195 protected int index, limit, cpStart, cpLimit, contextStart, contextLimit;