Home
last modified time | relevance | path

Searched refs:find_last_not_of (Results 1 – 14 of 14) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dstring_view.tcc185 find_last_not_of(const _CharT* __str, size_type __pos, in find_last_not_of() function in std::basic_string_view
207 find_last_not_of(_CharT __c, size_type __pos) const noexcept in find_last_not_of() function in std::basic_string_view
H A Dbasic_string.h2741 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2743 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
2755 find_last_not_of(const _Tp& __svt, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2759 return this->find_last_not_of(__sv.data(), __pos, __sv.size()); in _GLIBCXX_VISIBILITY()
2776 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
2790 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2794 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2808 find_last_not_of(_CharT __c, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
5582 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
5584 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dbasic_string.tcc1343 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() function in std::basic_string
1365 find_last_not_of(_CharT __c, size_type __pos) const _GLIBCXX_NOEXCEPT in find_last_not_of() function in std::basic_string
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/experimental/bits/
H A Dstring_view.tcc186 find_last_not_of(const _CharT* __str, size_type __pos, size_type __n) const in find_last_not_of() function in std::experimental::fundamentals_v1::basic_string_view
207 find_last_not_of(_CharT __c, size_type __pos) const noexcept in find_last_not_of() function in std::experimental::fundamentals_v1::basic_string_view
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/debug/
H A Dstring850 find_last_not_of(const basic_string& __str,
853 { return _Base::find_last_not_of(__str, __pos); }
856 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
859 return _Base::find_last_not_of(__s, __pos, __n);
863 find_last_not_of(const _CharT* __s, size_type __pos = _Base::npos) const
866 return _Base::find_last_not_of(__s, __pos);
870 find_last_not_of(_CharT __c, size_type __pos = _Base::npos) const
872 { return _Base::find_last_not_of(__c, __pos); }
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Dstring_view369 find_last_not_of(basic_string_view __str,
371 { return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
374 find_last_not_of(_CharT __c, size_type __pos = npos) const noexcept;
377 find_last_not_of(const _CharT* __str,
381 find_last_not_of(const _CharT* __str,
384 return this->find_last_not_of(__str, __pos,
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/experimental/
H A Dstring_view401 find_last_not_of(basic_string_view __str,
403 { return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
406 find_last_not_of(_CharT __c, size_type __pos = npos) const noexcept;
409 find_last_not_of(const _CharT* __str,
413 find_last_not_of(const _CharT* __str,
416 return this->find_last_not_of(__str, __pos,
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/debug/
H A Dstring893 find_last_not_of(const basic_string& __str,
896 { return _Base::find_last_not_of(__str, __pos); }
899 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
902 return _Base::find_last_not_of(__s, __pos, __n);
906 find_last_not_of(const _CharT* __s, size_type __pos = _Base::npos) const
909 return _Base::find_last_not_of(__s, __pos);
913 find_last_not_of(_CharT __c, size_type __pos = _Base::npos) const
915 { return _Base::find_last_not_of(__c, __pos); }
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/
H A Dvstring.h1845 find_last_not_of(const __versa_string& __str, in _GLIBCXX_VISIBILITY()
1847 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
1862 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
1876 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
1879 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
1893 find_last_not_of(_CharT __c, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
H A Dvstring.tcc417 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() function in __gnu_cxx::__versa_string
439 find_last_not_of(_CharT __c, size_type __pos) const _GLIBCXX_NOEXCEPT in find_last_not_of() function in __gnu_cxx::__versa_string
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dbasic_string.h2139 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2141 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
2156 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
2170 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2173 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2187 find_last_not_of(_CharT __c, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
H A Dbasic_string.tcc877 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() function in std::basic_string
898 find_last_not_of(_CharT __c, size_type __pos) const _GLIBCXX_NOEXCEPT in find_last_not_of() function in std::basic_string
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/
H A Dvstring.h1988 find_last_not_of(const __versa_string& __str, in _GLIBCXX_VISIBILITY()
1990 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
2005 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
2019 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2022 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2036 find_last_not_of(_CharT __c, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
H A Dvstring.tcc417 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() function in __gnu_cxx::__versa_string
439 find_last_not_of(_CharT __c, size_type __pos) const _GLIBCXX_NOEXCEPT in find_last_not_of() function in __gnu_cxx::__versa_string