Home | History | Annotate | Download | only in text

Lines Matching refs:index

50  * you can use the same <code>ParsePosition</code>, since the index parameter
63 * with each call setting index up for the next one.
65 int index = 0;
70 * is the index of the character at which parsing will begin; on output, it
71 * is the index of the character following the last character parsed.
76 return index;
82 * @param index the current parse position
84 public void setIndex(int index) {
85 this.index = index;
89 * Create a new ParsePosition with the given initial index.
91 * @param index initial index
93 public ParsePosition(int index) {
94 this.index = index;
97 * Set the index at which a parse error occurred. Formatters
101 * @param ei the index at which an error occurred
110 * Retrieve the index at which an error occurred, or -1 if the
111 * error index has not been set.
113 * @return the index at which an error occurred
130 return (index == other.index && errorIndex == other.errorIndex);
138 return (errorIndex << 16) | index;
147 "[index=" + index +