Home | History | Annotate | Download | only in jline

Lines Matching defs:currentIndex

22     private int currentIndex = 0;
80 currentIndex = 0;
99 currentIndex = history.size();
129 if (lastEntry >= 0 && lastEntry != currentIndex) {
130 currentIndex = history.size() - 1;
142 currentIndex = history.size();
178 return this.currentIndex;
185 if (currentIndex >= history.size()) {
189 return (String) history.get(currentIndex);
198 if (currentIndex <= 0) {
202 currentIndex--;
213 if (currentIndex >= history.size()) {
217 currentIndex++;
244 if (history.size() > 0 && currentIndex != 0) {
245 currentIndex = 0;
297 currentIndex = index;