Home | History | Annotate | Download | only in common

Lines Matching refs:textPtr

26 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr,
28 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0),
29 text(textPtr)
33 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr,
36 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, position),
37 text(textPtr)
41 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr,
46 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position),
47 text(textPtr)