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

/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dschriter.h70 * "textBegin" and ends with the code unit BEFORE the code unit specfied
72 * "textBegin" and "textEnd" don't form a valid range on "text" (i.e.,
73 * textBegin >= textEnd or either is negative or greater than text.size()),
74 * or "textPos" is outside the range defined by "textBegin" and "textEnd",
77 * @param textBegin The begin position of the iteration range
83 int32_t textBegin,
H A Duchriter.h73 * @param textBegin The begin position of the iteration range
79 int32_t textBegin,
H A Dchariter.h641 CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position);
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dchariter.cpp44 CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position) argument
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
H A Dschriter.cpp50 int32_t textBegin,
53 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos),
49 StringCharacterIterator(const UnicodeString& textStr, int32_t textBegin, int32_t textEnd, int32_t textPos) argument
H A Duchriter.cpp43 int32_t textBegin,
46 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position),
41 UCharCharacterIterator(const UChar* textPtr, int32_t length, int32_t textBegin, int32_t textEnd, int32_t position) argument

Completed in 77 milliseconds