Home | History | Annotate | Download | only in unicode

Lines Matching refs:index

39  * you can use the same <code>ParsePosition</code>, since the index parameter
52 * Default constructor, the index starts with 0 as default.
57 index(0),
62 * Create a new ParsePosition with the given initial index.
68 index(newIndex),
79 index(copy.index),
124 * is the index of the character at which parsing will begin; on output, it
125 * is the index of the character following the last character parsed.
126 * @return the current index.
133 * @param index the new index.
136 void setIndex(int32_t index);
139 * Set the index at which a parse error occurred. Formatters
148 * Retrieve the index at which an error occurred, or -1 if the
149 * error index has not been set.
173 * with each call setting index up for the next one.
175 int32_t index;
178 * The index at which a parse error occurred.
187 index = copy.index;
195 if(index != copy.index || errorIndex != copy.errorIndex)
210 return index;
216 this->index = offset;