Home | History | Annotate | Download | only in text

Lines Matching defs:rep

34      * @param rep Replaceable to iterate over. 
37 this.rep=null;
45 * @param rep Iteration text.
47 public void setText(Replaceable rep) {
48 this.rep=rep;
49 limit=contextLimit=rep.length();
82 if(0<=lim && lim<=rep.length()) {
85 limit=rep.length();
98 } else if(contextStart<=rep.length()) {
101 this.contextStart=rep.length();
105 } else if(contextLimit<=rep.length()) {
108 this.contextLimit=rep.length();
123 c=rep.char32At(cpLimit);
140 rep.replace(cpStart, cpLimit, text);
178 c=rep.char32At(index);
186 c=rep.char32At(index-1);
194 protected Replaceable rep;