Searched defs:find_first_of (Results 1 - 9 of 9) sorted by relevance

/external/chromium/base/
H A Dstring_piece.cc97 size_type StringPiece::find_first_of(const StringPiece& s, function in class:base::StringPiece
104 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:base::StringPiece
/external/llvm/include/llvm/ADT/
H A DSmallString.h178 /// find_first_of - Find the first character in the string that is \arg C,
180 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString
181 return str().find_first_of(C, From);
184 /// find_first_of - Find the first character in the string that is in \arg
188 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
189 return str().find_first_of(Chars, From);
/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_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
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
/external/astl/src/
H A Dstring.cpp604 string::size_type string::find_first_of(value_type c, size_type pos) const { function in class:std::string
/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); }

Completed in 315 milliseconds