HomeSort by relevance Sort by last modified time
    Searched defs:find_first_of (Results 1 - 13 of 13) sorted by null

  /external/chromium/base/
string_piece.cc 102 size_type StringPiece::find_first_of(const StringPiece& s, function in class:base::StringPiece
109 return find_first_of(s.ptr_[0], pos);
string_piece.h 145 size_type find_first_of(const StringPiece& s, size_type pos = 0) const;
146 size_type find_first_of(char c, size_type pos = 0) const { function in class:base::StringPiece
  /external/stlport/stlport/stl/
_algo.h 136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, function
145 find_first_of(_InputIter __first1, _InputIter __last1, function
_string.c 482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_string_sum.h 199 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
_string.h 976 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
979 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
984 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
    [all...]
  /ndk/sources/android/stlport/stlport/stl/
_algo.h 136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, function
145 find_first_of(_InputIter __first1, _InputIter __last1, function
_string.c 482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_string_sum.h 199 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
_string.h 976 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
979 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
984 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
    [all...]
  /external/astl/src/
string.cpp 604 string::size_type string::find_first_of(value_type c, size_type pos) const { function in class:std::string
  /external/stlport/stlport/stl/debug/
_string.h 726 // 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); }
  /ndk/sources/android/stlport/stlport/stl/debug/
_string.h 726 // 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 647 milliseconds