Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dstring_view148 … constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
149 constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
150 …constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const noexcept; /…
151 …constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const noexcept; // noex…
588 // find_last_not_of
590 size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
592 …_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): receive…
598 size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
605 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
607 … _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nullptr");
[all …]
Dstring303 size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept;
305 …size_type find_last_not_of(const T& t, size_type pos = npos) const noexcept; // C++17, noexcept as…
306 size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
307 size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept;
308 size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept;
1355 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1364 find_last_not_of(const _Tp& __t, size_type __pos = npos) const _NOEXCEPT;
1365 … size_type find_last_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1367 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1369 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
[all …]
D__string64 …UNC_VIS basic_string<_CharType>::size_type basic_string<_CharType>::find_last_not_of(value_type co…
112 …UNC_VIS basic_string<_CharType>::size_type basic_string<_CharType>::find_last_not_of(value_type co…
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DStringRef.h450 size_t find_last_not_of(char C, size_t From = npos) const;
457 size_t find_last_not_of(StringRef Chars, size_t From = npos) const;
857 return drop_back(Length - std::min(Length, find_last_not_of(Char) + 1)); in rtrim()
864 return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1));
/freebsd-12-stable/contrib/libstdc++/include/debug/
Dstring714 find_last_not_of(const basic_string& __str,
716 { return _Base::find_last_not_of(__str, __pos); }
719 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
722 return _Base::find_last_not_of(__s, __pos, __n);
726 find_last_not_of(const _CharT* __s, size_type __pos = _Base::npos) const
729 return _Base::find_last_not_of(__s, __pos);
733 find_last_not_of(_CharT __c, size_type __pos = _Base::npos) const
734 { return _Base::find_last_not_of(__c, __pos); }
/freebsd-12-stable/contrib/libstdc++/include/bits/
Dbasic_string.h1860 find_last_not_of(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_BEGIN_NAMESPACE()
1861 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_BEGIN_NAMESPACE()
1876 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_BEGIN_NAMESPACE()
1889 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_BEGIN_NAMESPACE()
1892 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_BEGIN_NAMESPACE()
1906 find_last_not_of(_CharT __c, size_type __pos = npos) const; in _GLIBCXX_BEGIN_NAMESPACE()
Dbasic_string.tcc857 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() function in basic_string
878 find_last_not_of(_CharT __c, size_type __pos) const in find_last_not_of() function in basic_string
/freebsd-12-stable/contrib/libstdc++/include/ext/
Dvstring.h1585 find_last_not_of(const __versa_string& __str, in _GLIBCXX_BEGIN_NAMESPACE()
1587 { return this->find_last_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_BEGIN_NAMESPACE()
1602 find_last_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_BEGIN_NAMESPACE()
1615 find_last_not_of(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_BEGIN_NAMESPACE()
1618 return this->find_last_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_BEGIN_NAMESPACE()
1632 find_last_not_of(_CharT __c, size_type __pos = npos) const; in _GLIBCXX_BEGIN_NAMESPACE()
Dvstring.tcc418 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() function in __versa_string
440 find_last_not_of(_CharT __c, size_type __pos) const in find_last_not_of() function in __versa_string
/freebsd-12-stable/contrib/atf/atf-c++/detail/
Dtext.cpp109 std::string::size_type pos2 = str.find_last_not_of(" \t"); in trim()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
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()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DStringRef.cpp282 StringRef::size_type StringRef::find_last_not_of(char C, size_t From) const { in find_last_not_of() function in StringRef
293 StringRef::size_type StringRef::find_last_not_of(StringRef Chars, in find_last_not_of() function in StringRef
DScaledNumber.cpp192 size_t NonZero = Float.find_last_not_of('0'); in stripTrailingZeros()
DSourceMgr.cpp555 CaretLine.erase(CaretLine.find_last_not_of(' ') + 1); in print()
/freebsd-12-stable/sys/contrib/zstd/contrib/gen_html/
Dgen_html.cpp23 p = s.find_last_not_of(characters); in trim()
/freebsd-12-stable/lib/libdevdctl/
Devent.cc440 size_t eventEnd(eventString.find_last_not_of('\n') + 1); in TimestampEventString()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
DObjectContainerBSDArchive.cpp96 const size_t last_pos = str.find_last_not_of(' '); in Extract()
/freebsd-12-stable/contrib/libstdc++/
DChangeLog-20046059 (find_last_not_of(const _CharT*, size_type, size_type)): Ditto.
6060 (find_last_not_of(_CharT, size_type)): Ditto.
6104 (find_last_not_of(const _CharT*, size_type, size_type)): Ditto.
6105 (find_last_not_of(_CharT, size_type)): Ditto.
DChangeLog-20036733 find_first_of, find_last_of and find_last_not_of tests.
6737 remove wchar_t find_first_of, find_last_of and find_last_not_of tests.
6742 * testsuite/21_strings/basic_string/rfind/char/3.cc: find_last_not_of
6747 wchar_t find_last_not_of tests here.
DChangeLog-20011287 (find_last_not_of): Likewise.