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

Declarations

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

References

lib/Support/Path.cpp
   99     size_t pos = str.find_last_of(separators(style), str.size() - 1);
lib/Support/SourceMgr.cpp
  145   size_t NewlineOffs = StringRef(BufStart, Ptr-BufStart).find_last_of("\n\r");
lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
  119     size_t pTag = CurFmt.find_last_of("%");
tools/clang/lib/Driver/ToolChains/Darwin.cpp
 1539     size_t EndVer = SDK.find_last_of("0123456789");
tools/clang/lib/Format/BreakableToken.cpp
   89   StringRef::size_type SpaceOffset = Text.find_last_of(Blanks, MaxSplitBytes);
   96       SpaceOffset = Text.find_last_of(Blanks, SpaceOffset);
  102       SpaceOffset = Text.find_last_of(Blanks, SpaceOffset);
tools/clang/lib/Format/ContinuationIndenter.cpp
 1491   size_t LastNewlinePos = Text.find_last_of("\n");
tools/clang/lib/Lex/Lexer.cpp
 2093   auto Slash = PartialPath.find_last_of(LangOpts.MSVCCompat ? "/\\" : "/");
tools/clang/tools/clang-refactor/TestSupport.cpp
  168   size_t LastLine = Source.find_last_of("\r\n");
  288   size_t LineStart = Source.find_last_of("\r\n", /*From=*/Offset + LineOffset);
tools/lldb/source/Interpreter/CommandInterpreter.cpp
 2511       last_space = this_line.find_last_of(" \t");
tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
   93   pos = s.find_last_of(left_right_chars, pos);
   99     pos = s.find_last_of(left_right_chars, pos);
utils/TableGen/AsmMatcherEmitter.cpp
  825   size_t end = Ops.first.find_last_of(" \t");
  832   end = Ops.second.find_last_of(" \t");