Home | History | Annotate | Download | only in io

Lines Matching refs:INDEX

93   public static final String INDEX = "index";
393 public ASTEntry get(int index) {
396 if (index >= n) {
397 throw new NoSuchElementException(Integer.toString(index));
399 if (index < 0) {
400 index += n;
401 if (index < 0) {
402 throw new IllegalArgumentException("negative index " + index);
405 while (--n > index) { s = s.pop(); }
563 new String[] {ASTPath.EXPRESSION, ASTPath.INDEX});