Searched refs:textBegin (Results 1 - 6 of 6) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Dschriter.h72 * "textBegin" and ends with the code unit BEFORE the code unit specfied
74 * "textBegin" and "textEnd" don't form a valid range on "text" (i.e.,
75 * textBegin >= textEnd or either is negative or greater than text.size()),
76 * or "textPos" is outside the range defined by "textBegin" and "textEnd",
79 * @param textBegin The begin position of the iteration range
85 int32_t textBegin,
H A Duchriter.h75 * @param textBegin The begin position of the iteration range
81 int32_t textBegin,
H A Dchariter.h643 CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position);
/external/icu/icu4c/source/common/
H A Dchariter.cpp46 CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position) argument
47 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
H A Dschriter.cpp52 int32_t textBegin,
55 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos),
51 StringCharacterIterator(const UnicodeString& textStr, int32_t textBegin, int32_t textEnd, int32_t textPos) argument
H A Duchriter.cpp45 int32_t textBegin,
48 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position),
43 UCharCharacterIterator(const UChar* textPtr, int32_t length, int32_t textBegin, int32_t textEnd, int32_t position) argument

Completed in 41 milliseconds