Home | History | Annotate | Download | only in text

Lines Matching refs:it

64     TextBreakIterator* it = wordBreakIterator(chars, len);
67 position = it->following(position);
74 position = it->following(position);
79 position = it->preceding(position);
86 position = it->preceding(position);
95 TextBreakIterator* it = wordBreakIterator(chars, len);
96 *end = it->following(position);
98 *end = it->last();
99 *start = it->previous();
104 TextBreakIterator* it = wordBreakIterator(chars, len);
105 int end = it->following(position);
106 return end < 0 ? it->last() : end;