Searched defs:find_first_not_of (Results 1 - 8 of 8) sorted by last modified time

/external/stlport/stlport/stl/
H A D_string.c513 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(const _CharT* __s, size_type __pos, function in class:_Alloc
528 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(_CharT __c, size_type __pos) const { function in class:_Alloc
H A D_string.h999 public: // find_first_not_of
1000 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
1001 { return find_first_not_of(__s._M_Start(), __pos, __s.size()); }
1003 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
1004 { _STLP_FIX_LITERAL_BUG(__s) return find_first_not_of(__s, __pos, _Traits::length(__s)); }
1006 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const;
1008 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const;
H A D_string_sum.h217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum
218 { return _M_get_storage().find_first_not_of(__s, __pos); }
219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum
220 { return _M_get_storage().find_first_not_of(__s, __pos); }
221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); }
223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum
224 { return _M_get_storage().find_first_not_of(__c, __pos); }
/external/stlport/stlport/stl/debug/
H A D_string.h758 // find_first_not_of
759 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
760 { return _M_non_dbg_impl.find_first_not_of(__s._M_non_dbg_impl, __pos); }
761 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string
764 return _M_non_dbg_impl.find_first_not_of(__s, __pos);
766 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
769 return _M_non_dbg_impl.find_first_not_of(__s, __pos, __n);
771 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
772 { return _M_non_dbg_impl.find_first_not_of(__c, __pos); }
/external/llvm/include/llvm/ADT/
H A DSmallString.h191 size_t find_first_not_of(char C, size_t From = 0) const { function in class:llvm::SmallString
192 return str().find_first_not_of(C, From);
199 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
200 return str().find_first_not_of(Chars, From);
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.cc122 size_type StringPiece::find_first_not_of(const StringPiece& s, function in class:i18n::phonenumbers::StringPiece
132 return find_first_not_of(s.ptr_[0], pos);
144 size_type StringPiece::find_first_not_of(char c, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
/external/chromium_org/base/strings/
H A Dstring_piece.cc228 size_t find_first_not_of(const StringPiece& self, function in namespace:base::internal
239 return find_first_not_of(self, s.data()[0], pos);
252 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self, function in namespace:base::internal
287 size_t find_first_not_of(const StringPiece& self, function in namespace:base::internal
293 size_t find_first_not_of(const StringPiece16& self, function in namespace:base::internal
H A Dstring_piece.h106 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
109 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
112 BASE_EXPORT size_t find_first_not_of(const StringPiece& self,
115 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
313 // find_first_not_of: Find the first occurence not of a set of characters.
314 size_type find_first_not_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
316 return internal::find_first_not_of(*this, s, pos);
318 size_type find_first_not_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
319 return internal::find_first_not_of(*this, c, pos);

Completed in 205 milliseconds