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

1 2 3 4

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
string_piece.cc 103 size_type StringPiece::find_first_of(const StringPiece& s, function in class:i18n::phonenumbers::StringPiece
110 return find_first_of(s.ptr_[0], pos);
string_piece.h 143 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/llvm/include/llvm/ADT/
SmallString.h 177 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/base/strings/
string_piece.cc 196 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());
string_piece.h 20 // functions (find, find_first_of, etc.) are found to be useful in this context.
94 BASE_EXPORT size_t find_first_of(const StringPiece& self,
97 BASE_EXPORT size_t find_first_of(const StringPiece16& self,
299 // find_first_of: Find the first occurence of one of a set of characters.
300 size_type find_first_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
302 return internal::find_first_of(*this, s, pos);
304 size_type find_first_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
  /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
  /ndk/sources/cxx-stl/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
  /prebuilts/ndk/5/sources/cxx-stl/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
  /prebuilts/ndk/6/sources/cxx-stl/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
  /prebuilts/ndk/7/sources/cxx-stl/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
  /prebuilts/ndk/8/sources/cxx-stl/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
  /prebuilts/ndk/9/sources/cxx-stl/EH/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
  /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/cxx-stl/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); }
  /prebuilts/ndk/5/sources/cxx-stl/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); }
  /prebuilts/ndk/6/sources/cxx-stl/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); }
  /prebuilts/ndk/7/sources/cxx-stl/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); }
  /prebuilts/ndk/8/sources/cxx-stl/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); }
  /prebuilts/ndk/9/sources/cxx-stl/EH/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); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 1719 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.h 1719 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]

Completed in 654 milliseconds

1 2 3 4