Lines Matching defs:indexOf

914   inline int32_t indexOf(const UnicodeString& text) const;
925 inline int32_t indexOf(const UnicodeString& text,
939 inline int32_t indexOf(const UnicodeString& text,
959 inline int32_t indexOf(const UnicodeString& srcText,
976 inline int32_t indexOf(const UChar *srcChars,
992 inline int32_t indexOf(const UChar *srcChars,
1013 int32_t indexOf(const UChar *srcChars,
1026 inline int32_t indexOf(UChar c) const;
1036 inline int32_t indexOf(UChar32 c) const;
1046 inline int32_t indexOf(UChar c,
1058 inline int32_t indexOf(UChar32 c,
1071 inline int32_t indexOf(UChar c,
1086 inline int32_t indexOf(UChar32 c,
3891 UnicodeString::indexOf(const UnicodeString& srcText,
3900 return indexOf(srcText.getArrayStart(), srcStart, srcLength, start, _length);
3907 UnicodeString::indexOf(const UnicodeString& text) const
3908 { return indexOf(text, 0, text.length(), 0, length()); }
3911 UnicodeString::indexOf(const UnicodeString& text,
3914 return indexOf(text, 0, text.length(), start, length() - start);
3918 UnicodeString::indexOf(const UnicodeString& text,
3921 { return indexOf(text, 0, text.length(), start, _length); }
3924 UnicodeString::indexOf(const UChar *srcChars,
3928 return indexOf(srcChars, 0, srcLength, start, length() - start);
3932 UnicodeString::indexOf(const UChar *srcChars,
3936 { return indexOf(srcChars, 0, srcLength, start, _length); }
3939 UnicodeString::indexOf(UChar c,
3945 UnicodeString::indexOf(UChar32 c,
3951 UnicodeString::indexOf(UChar c) const
3955 UnicodeString::indexOf(UChar32 c) const
3956 { return indexOf(c, 0, length()); }
3959 UnicodeString::indexOf(UChar c,
3966 UnicodeString::indexOf(UChar32 c,
3969 return indexOf(c, start, length() - start);