Lines Matching refs:index
42 * you can use the same <code>ParsePosition</code>, since the index parameter
55 * Default constructor, the index starts with 0 as default.
60 index(0),
65 * Create a new ParsePosition with the given initial index.
71 index(newIndex),
82 index(copy.index),
127 * is the index of the character at which parsing will begin; on output, it
128 * is the index of the character following the last character parsed.
129 * @return the current index.
136 * @param index the new index.
139 inline void setIndex(int32_t index);
142 * Set the index at which a parse error occurred. Formatters
151 * Retrieve the index at which an error occurred, or -1 if the
152 * error index has not been set.
176 * with each call setting index up for the next one.
178 int32_t index;
181 * The index at which a parse error occurred.
190 index = copy.index;
198 if(index != copy.index || errorIndex != copy.errorIndex)
213 return index;
219 this->index = offset;