Home | History | Annotate | Download | only in unicode

Lines Matching refs:indexOf

912   inline int32_t indexOf(const UnicodeString& text) const;
923 inline int32_t indexOf(const UnicodeString& text,
937 inline int32_t indexOf(const UnicodeString& text,
957 inline int32_t indexOf(const UnicodeString& srcText,
974 inline int32_t indexOf(const UChar *srcChars,
990 inline int32_t indexOf(const UChar *srcChars,
1011 int32_t indexOf(const UChar *srcChars,
1024 inline int32_t indexOf(UChar c) const;
1034 inline int32_t indexOf(UChar32 c) const;
1044 inline int32_t indexOf(UChar c,
1056 inline int32_t indexOf(UChar32 c,
1069 inline int32_t indexOf(UChar c,
1084 inline int32_t indexOf(UChar32 c,
3879 UnicodeString::indexOf(const UnicodeString& srcText,
3888 return indexOf(srcText.getArrayStart(), srcStart, srcLength, start, _length);
3895 UnicodeString::indexOf(const UnicodeString& text) const
3896 { return indexOf(text, 0, text.length(), 0, length()); }
3899 UnicodeString::indexOf(const UnicodeString& text,
3902 return indexOf(text, 0, text.length(), start, length() - start);
3906 UnicodeString::indexOf(const UnicodeString& text,
3909 { return indexOf(text, 0, text.length(), start, _length); }
3912 UnicodeString::indexOf(const UChar *srcChars,
3916 return indexOf(srcChars, 0, srcLength, start, length() - start);
3920 UnicodeString::indexOf(const UChar *srcChars,
3924 { return indexOf(srcChars, 0, srcLength, start, _length); }
3927 UnicodeString::indexOf(UChar c,
3933 UnicodeString::indexOf(UChar32 c,
3939 UnicodeString::indexOf(UChar c) const
3943 UnicodeString::indexOf(UChar32 c) const
3944 { return indexOf(c, 0, length()); }
3947 UnicodeString::indexOf(UChar c,
3954 UnicodeString::indexOf(UChar32 c,
3957 return indexOf(c, start, length() - start);