Searched refs:find_last_not_of (Results 1 – 13 of 13) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringRef.h | 398 [[nodiscard]] size_t find_last_not_of(char C, size_t From = npos) const; 404 [[nodiscard]] size_t find_last_not_of(StringRef Chars, 789 return drop_back(Length - std::min(Length, find_last_not_of(Char) + 1)); in rtrim() 795 return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1));
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | string_view | 161 … constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept; 162 constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept; 163 …constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const noexcept; /… 164 …constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const noexcept; // noex… 615 // find_last_not_of 617 find_last_not_of(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT { 619 … __s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): received nullptr"); 625 find_last_not_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT { 630 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT { 631 …_LIBCPP_ASSERT_NON_NULL(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nul… [all …]
|
H A D | string | 328 …size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept; // con… 330 …size_type find_last_not_of(const T& t, size_type pos = npos) const noexcept; // C++17, … 331 …size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept; // con… 332 …size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept; // con… 333 …size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept; // con… 1783 find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT; 1787 find_last_not_of(const _Tp& __t, size_type __pos = npos) const _NOEXCEPT; 1790 find_last_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT; 1792 find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT; 1794 find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT; [all …]
|
/freebsd/contrib/atf/atf-c++/detail/ |
H A D | text.cpp | 109 std::string::size_type pos2 = str.find_last_not_of(" \t"); in trim()
|
/freebsd/contrib/llvm-project/libcxx/include/__string/ |
H A D | extern_template_lists.h | 39 _Func(_LIBCPP_EXPORTED_FROM_ABI basic_string<_CharType>::size_type basic_string<_CharType>::find_last_not_of(value_type const*, size_type, size_type) const) \ 87 _Func(_LIBCPP_EXPORTED_FROM_ABI basic_string<_CharType>::size_type basic_string<_CharType>::find_last_not_of(value_type const*, size_type, size_type) const) \
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | BreakableToken.cpp | 115 Text.find_last_not_of(Blanks, SpaceOffset); in getCommentSplit() 141 Text.find_last_not_of(Blanks, SpaceOffset) == StringRef::npos) { in getCommentSplit() 631 Lines[LineIndex - 1].find_last_not_of(Blanks, EndOfPreviousLine); in adjustWhitespace() 983 size_t EndOfLine = Content[i].find_last_not_of(Blanks); in BreakableLineCommentSection()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | StringRef.cpp | 289 StringRef::size_type StringRef::find_last_not_of(char C, size_t From) const { in find_last_not_of() function in StringRef 300 StringRef::size_type StringRef::find_last_not_of(StringRef Chars, in find_last_not_of() function in StringRef
|
H A D | ScaledNumber.cpp | 192 size_t NonZero = Float.find_last_not_of('0'); in stripTrailingZeros()
|
H A D | SourceMgr.cpp | 565 CaretLine.erase(CaretLine.find_last_not_of(' ') + 1); in print()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
H A D | ObjectContainerBSDArchive.cpp |
|
/freebsd/lib/libdevdctl/ |
H A D | event.cc | 437 size_t eventEnd(eventString.find_last_not_of('\n') + 1); in TimestampEventString()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
H A D | elfnix_platform.cpp | 405 auto pos = name.find_last_not_of("0123456789"); in getPriority()
|
/freebsd/contrib/bsnmp/tests/ |
H A D | catch.hpp | 13606 std::string::size_type end = str.find_last_not_of( whitespaceChars ); in trim() 14766 std::size_t i = d.find_last_not_of( '0' ); in fpToString()
|