Lines Matching defs:lb
121 int lb = 0;
134 lb = digit;
145 lb = 10 * lb + digit;
150 accumulate (theRanges, lb, lb);
165 accumulate(theRanges, lb, lb);
190 accumulate(theRanges, lb, ub);
201 accumulate(theRanges, lb, ub);
212 lb = digit;
227 accumulate(theRanges, lb, lb);
231 accumulate(theRanges, lb, ub);
243 * Accumulate the given range (lb .. ub) into the canonical array form
246 private static void accumulate(Vector ranges, int lb,int ub) {
248 if (lb <= ub) {
250 ranges.add(new int[] {lb, ub});
332 int lb, ub;
334 lb = ub = members[i][0];
336 lb = members[i][0];
343 if (lb <= ub && lb < 0) {
348 accumulate(ranges, lb, ub);