| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | string_view | 148 … 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 …]
|
| D | string | 303 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 | __string | 64 …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/ |
| D | StringRef.h | 450 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/ |
| D | string | 714 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/ |
| D | basic_string.h | 1860 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()
|
| D | basic_string.tcc | 857 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/ |
| D | vstring.h | 1585 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()
|
| D | vstring.tcc | 418 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/ |
| D | text.cpp | 109 std::string::size_type pos2 = str.find_last_not_of(" \t"); in trim()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Format/ |
| D | BreakableToken.cpp | 115 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/ |
| D | StringRef.cpp | 282 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
|
| D | ScaledNumber.cpp | 192 size_t NonZero = Float.find_last_not_of('0'); in stripTrailingZeros()
|
| D | SourceMgr.cpp | 555 CaretLine.erase(CaretLine.find_last_not_of(' ') + 1); in print()
|
| /freebsd-12-stable/sys/contrib/zstd/contrib/gen_html/ |
| D | gen_html.cpp | 23 p = s.find_last_not_of(characters); in trim()
|
| /freebsd-12-stable/lib/libdevdctl/ |
| D | event.cc | 440 size_t eventEnd(eventString.find_last_not_of('\n') + 1); in TimestampEventString()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
| D | ObjectContainerBSDArchive.cpp | 96 const size_t last_pos = str.find_last_not_of(' '); in Extract()
|
| /freebsd-12-stable/contrib/libstdc++/ |
| D | ChangeLog-2004 | 6059 (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.
|
| D | ChangeLog-2003 | 6733 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.
|
| D | ChangeLog-2001 | 1287 (find_last_not_of): Likewise.
|