Home | History | Annotate | Download | only in break

Lines Matching refs:end

32                     int32_t start, int32_t end )
38 printf(" %ld %ld\t", (long)start, (long)end);
41 printUnicodeString(UnicodeString(s, start, end-start));
43 printUnicodeString(UnicodeString(s, end));
53 for (int32_t end = boundary.next();
54 end != BreakIterator::DONE;
55 start = end, end = boundary.next())
57 printTextRange( boundary, start, end );
64 int32_t end = boundary.last();
67 end = start, start = boundary.previous())
69 printTextRange( boundary, start, end );
77 int32_t end = boundary.next();
78 printTextRange( boundary, start, end );
84 int32_t end = boundary.last();
86 printTextRange( boundary, start, end );
92 int32_t end = boundary.following(pos);
94 printTextRange( boundary, start, end );