reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/StringRef.h
  447     size_t find_last_not_of(StringRef Chars, size_t From = npos) const;

References

include/llvm/ADT/StringRef.h
  831       return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1));
tools/clang/lib/Format/BreakableToken.cpp
  109       Text.find_last_not_of(Blanks, SpaceOffset) == StringRef::npos) {
  483       Lines[LineIndex - 1].find_last_not_of(Blanks, EndOfPreviousLine);
  782       size_t EndOfLine = Content[i].find_last_not_of(Blanks);
unittests/ADT/StringRefTest.cpp
  495   EXPECT_EQ(1U, Str.find_last_not_of("lo"));
  496   EXPECT_EQ(StringRef::npos, Str.find_last_not_of("helo"));