Searched refs:find_last_not_of (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dtext.cpp109 std::string::size_type pos2 = str.find_last_not_of(" \t");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h441 size_t find_last_not_of(char C, size_t From = npos) const;
448 size_t find_last_not_of(StringRef Chars, size_t From = npos) const;
826 return drop_back(Length - std::min(Length, find_last_not_of(Char) + 1));
833 return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1));
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dbasic_string.h1860 find_last_not_of(const basic_string& __str, size_type __pos = npos) const function in class:basic_string
1861 { return this->find_last_not_of(__str.data(), __pos, __str.size()); }
1876 find_last_not_of(const _CharT* __s, size_type __pos,
1889 find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
1892 return this->find_last_not_of(__s, __pos, traits_type::length(__s));
1906 find_last_not_of(_CharT __c, size_type __pos = npos) const;
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dvstring.h1585 find_last_not_of(const __versa_string& __str, function in class:__versa_string
1587 { return this->find_last_not_of(__str.data(), __pos, __str.size()); }
1602 find_last_not_of(const _CharT* __s, size_type __pos,
1615 find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
1618 return this->find_last_not_of(__s, __pos, traits_type::length(__s));
1632 find_last_not_of(_CharT __c, size_type __pos = npos) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp289 /// find_last_not_of - Find the last character in the string that is not
291 StringRef::size_type StringRef::find_last_not_of(char C, size_t From) const {
298 /// find_last_not_of - Find the last character in the string that is not in
302 StringRef::size_type StringRef::find_last_not_of(StringRef Chars,
H A DScaledNumber.cpp192 size_t NonZero = Float.find_last_not_of('0');
H A DSourceMgr.cpp452 CaretLine.erase(CaretLine.find_last_not_of(' ')+1);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp109 Text.find_last_not_of(Blanks, SpaceOffset) == StringRef::npos) {
483 Lines[LineIndex - 1].find_last_not_of(Blanks, EndOfPreviousLine);
781 size_t EndOfLine = Content[i].find_last_not_of(Blanks);
/freebsd-11-stable/lib/libdevdctl/
H A Devent.cc435 size_t eventEnd(eventString.find_last_not_of('\n') + 1);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp96 const size_t last_pos = str.find_last_not_of(' ');

Completed in 140 milliseconds