Searched defs:find_first_not_of (Results 1 - 7 of 7) sorted by relevance

/external/chromium/base/
H A Dstring_piece.cc116 size_type StringPiece::find_first_not_of(const StringPiece& s, function in class:base::StringPiece
126 return find_first_not_of(s.ptr_[0], pos);
138 size_type StringPiece::find_first_not_of(char c, size_type pos) const { function in class:base::StringPiece
/external/llvm/include/llvm/ADT/
H A DSmallString.h192 /// find_first_not_of - Find the first character in the string that is not
194 size_t find_first_not_of(char C, size_t From = 0) const { function in class:llvm::SmallString
195 return str().find_first_not_of(C, From);
198 /// find_first_not_of - Find the first character in the string that is not
202 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
203 return str().find_first_not_of(Chars, From);
/external/astl/src/
H A Dstring.cpp628 string::size_type string::find_first_not_of(value_type c, size_type pos) const { function in class:std::string
/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_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); }
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;
/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); }

Completed in 442 milliseconds