Home | History | Annotate | Download | only in widget

Lines Matching refs:upper

543         // The lower and upper bounds of the preloaded range
1240 private ArrayList<Integer> getVisibleWindow(int lower, int upper, int count) {
1244 if ((lower == 0 && upper == 0) || lower < 0 || upper < 0) {
1248 if (lower <= upper) {
1249 for (int i = lower; i <= upper; i++){
1253 // If the upper bound is less than the lower bound it means that the visible window
1258 for (int i = 0; i <= upper; i++) {