Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dstring_view144 … constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
145 constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
146 …constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const noexcept; /…
147 …constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const noexcept; // noex…
579 // find_last_not_of
581 size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
583 …_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): receive…
589 size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
596 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
598 … _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nullptr");
[all …]
H A Dstring301 size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept;
303 …size_type find_last_not_of(const T& t, size_type pos = npos) const noexcept; // C++17, noexcept as…
304 size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
305 size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept;
306 size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept;
1344 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1353 find_last_not_of(const _Tp& __t, size_type __pos = npos) const _NOEXCEPT;
1354 … size_type find_last_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1356 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1358 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/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.h2763 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2765 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
2777 find_last_not_of(const _Tp& __svt, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2781 return this->find_last_not_of(__sv.data(), __pos, __sv.size()); in _GLIBCXX_VISIBILITY()
2798 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
2812 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2816 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2830 find_last_not_of(_CharT __c, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
5673 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
5675 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/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
/netbsd-src/external/gpl3/gcc/dist/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
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringRef.h449 size_t find_last_not_of(char C, size_t From = npos) const;
456 size_t find_last_not_of(StringRef Chars, size_t From = npos) const;
834 return drop_back(Length - std::min(Length, find_last_not_of(Char) + 1)); in rtrim()
841 return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1));
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstring_view.tcc197 find_last_not_of(const _CharT* __str, size_type __pos, in find_last_not_of() function in std::basic_string_view
219 find_last_not_of(_CharT __c, size_type __pos) const noexcept in find_last_not_of() function in std::basic_string_view
H A Dcow_string.h2662 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2664 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
2679 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
2693 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2697 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2711 find_last_not_of(_CharT __c, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2724 find_last_not_of(const _Tp& __svt, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2728 return this->find_last_not_of(__sv.data(), __pos, __sv.size()); in _GLIBCXX_VISIBILITY()
H A Dbasic_string.h3046 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
3048 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
3061 find_last_not_of(const _Tp& __svt, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
3065 return this->find_last_not_of(__sv.data(), __pos, __sv.size()); in _GLIBCXX_VISIBILITY()
3083 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
3098 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
3102 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
3117 find_last_not_of(_CharT __c, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/
H A Dstring_view400 find_last_not_of(basic_string_view __str,
402 { return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
405 find_last_not_of(_CharT __c, size_type __pos = npos) const noexcept;
408 find_last_not_of(const _CharT* __str,
412 find_last_not_of(const _CharT* __str,
415 return this->find_last_not_of(__str, __pos,
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/
H A Dstring_view399 find_last_not_of(basic_string_view __str,
401 { return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
404 find_last_not_of(_CharT __c, size_type __pos = npos) const noexcept;
407 find_last_not_of(const _CharT* __str,
411 find_last_not_of(const _CharT* __str,
414 return this->find_last_not_of(__str, __pos,
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dstring_view484 find_last_not_of(basic_string_view __str,
486 { return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
489 find_last_not_of(_CharT __c, size_type __pos = npos) const noexcept;
492 find_last_not_of(const _CharT* __str,
496 find_last_not_of(const _CharT* __str,
499 return this->find_last_not_of(__str, __pos,
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dstring_view439 find_last_not_of(basic_string_view __str,
441 { return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
444 find_last_not_of(_CharT __c, size_type __pos = npos) const noexcept;
447 find_last_not_of(const _CharT* __str,
451 find_last_not_of(const _CharT* __str,
454 return this->find_last_not_of(__str, __pos,
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/
H A Dstring988 find_last_not_of(const basic_string& __str,
991 { return _Base::find_last_not_of(__str, __pos); }
994 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
997 return _Base::find_last_not_of(__s, __pos, __n);
1001 find_last_not_of(const _CharT* __s, size_type __pos = _Base::npos) const
1004 return _Base::find_last_not_of(__s, __pos);
1008 find_last_not_of(_CharT __c, size_type __pos = _Base::npos) const
1010 { return _Base::find_last_not_of(__c, __pos); }
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
H A Dstring979 find_last_not_of(const basic_string& __str,
982 { return _Base::find_last_not_of(__str, __pos); }
985 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
988 return _Base::find_last_not_of(__s, __pos, __n);
992 find_last_not_of(const _CharT* __s, size_type __pos = _Base::npos) const
995 return _Base::find_last_not_of(__s, __pos);
999 find_last_not_of(_CharT __c, size_type __pos = _Base::npos) const
1001 { return _Base::find_last_not_of(__c, __pos); }
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DBreakableToken.cpp115 Text.find_last_not_of(Blanks, SpaceOffset); in getCommentSplit()
142 Text.find_last_not_of(Blanks, SpaceOffset) == StringRef::npos) { in getCommentSplit()
516 Lines[LineIndex - 1].find_last_not_of(Blanks, EndOfPreviousLine); in adjustWhitespace()
845 size_t EndOfLine = Content[i].find_last_not_of(Blanks); in BreakableLineCommentSection()
/netbsd-src/external/bsd/atf/dist/tools/
H A Dtext.cpp108 std::string::size_type pos2 = str.find_last_not_of(" \t"); in trim()
/netbsd-src/external/bsd/atf/dist/atf-c++/detail/
H A Dtext.cpp113 std::string::size_type pos2 = str.find_last_not_of(" \t"); in trim()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringRef.cpp285 StringRef::size_type StringRef::find_last_not_of(char C, size_t From) const { in find_last_not_of() function in StringRef
296 StringRef::size_type StringRef::find_last_not_of(StringRef Chars, in find_last_not_of() function in StringRef
H A DScaledNumber.cpp192 size_t NonZero = Float.find_last_not_of('0'); in stripTrailingZeros()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dvstring.h1989 find_last_not_of(const __versa_string& __str, in _GLIBCXX_VISIBILITY()
1991 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
2006 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
2020 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2023 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2037 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
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dvstring.h1990 find_last_not_of(const __versa_string& __str, in _GLIBCXX_VISIBILITY()
1992 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_VISIBILITY()
2007 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_VISIBILITY()
2021 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_VISIBILITY()
2024 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2038 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

12