Lines Matching refs:position
35 int32_t position)
36 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, position),
45 int32_t position)
46 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position),
126 UCharCharacterIterator::setIndex(int32_t position) {
127 if(position < begin) {
129 } else if(position > end) {
132 pos = position;
227 UCharCharacterIterator::setIndex32(int32_t position) {
228 if(position < begin) {
229 position = begin;
230 } else if(position > end) {
231 position = end;
233 if(position < end) {
234 U16_SET_CP_START(text, begin, position);
235 int32_t i = this->pos = position;
240 this->pos = position;