Searched defs:find_first_of (Results 1 - 10 of 10) sorted by last modified time

/external/stlport/stlport/stl/
H A D_algo.h136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, function
145 find_first_of(_InputIter __first1, _InputIter __last1, function
H A D_string.c482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, function in class:_Alloc
H A D_string.h975 public: // find_first_of
976 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
977 { return find_first_of(__s._M_Start(), __pos, __s.size()); }
979 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
980 { _STLP_FIX_LITERAL_BUG(__s) return find_first_of(__s, __pos, _Traits::length(__s)); }
982 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const;
984 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
H A D_string_sum.h199 size_type find_first_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum
200 { return _M_get_storage().find_first_of(__s, __pos); }
201 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum
202 { return _M_get_storage().find_first_of(__s, __pos); }
203 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
204 { return _M_get_storage().find_first_of(__s, __pos, __n); }
205 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum
/external/stlport/stlport/stl/debug/
H A D_string.h726 // find_first_of
727 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
728 { return _M_non_dbg_impl.find_first_of(__s._M_non_dbg_impl, __pos); }
729 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string
732 return _M_non_dbg_impl.find_first_of(__s, __pos);
734 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
737 return _M_non_dbg_impl.find_first_of(__s, __pos, __n);
739 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
740 { return _M_non_dbg_impl.find_first_of(__c, __pos); }
/external/llvm/include/llvm/ADT/
H A DSmallString.h177 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString
178 return str().find_first_of(C, From);
185 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
186 return str().find_first_of(Chars, From);
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.cc103 size_type StringPiece::find_first_of(const StringPiece& s, function in class:i18n::phonenumbers::StringPiece
110 return find_first_of(s.ptr_[0], pos);
H A Dstring_piece.h143 size_type find_first_of(const StringPiece& s, size_type pos = 0) const;
144 size_type find_first_of(char c, size_type pos = 0) const { function in class:i18n::phonenumbers::StringPiece
/external/chromium_org/base/strings/
H A Dstring_piece.cc196 size_t find_first_of(const StringPiece& self, function in namespace:base::internal
217 size_t find_first_of(const StringPiece16& self, function in namespace:base::internal
221 std::find_first_of(self.begin() + pos, self.end(), s.begin(), s.end());
H A Dstring_piece.h25 // functions (find, find_first_of, etc.) are found to be useful in this context.
99 BASE_EXPORT size_t find_first_of(const StringPiece& self,
102 BASE_EXPORT size_t find_first_of(const StringPiece16& self,
304 // find_first_of: Find the first occurence of one of a set of characters.
305 size_type find_first_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
307 return internal::find_first_of(*this, s, pos);
309 size_type find_first_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece

Completed in 1243 milliseconds