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

References

include/llvm/ADT/SmallString.h
  177     return str().find_first_of(C, From);
include/llvm/ADT/StringRef.h
  457     bool contains(char C) const { return find_first_of(C) != npos; }
include/llvm/ProfileData/InstrProf.h
  583   size_t S = PGOName.find_first_of(':');
include/llvm/Support/FormatProviders.h
  375       size_t End = Style.find_first_of(D[1]);
lib/AsmParser/LLLexer.cpp
  283         if (StringRef(StrVal).find_first_of(0) != StringRef::npos) {
  366         if (StringRef(StrVal).find_first_of(0) != StringRef::npos) {
  401     if (StringRef(StrVal).find_first_of(0) != StringRef::npos) {
lib/Bitcode/Reader/BitcodeReader.cpp
 2020   if (NameStr.find_first_of(0) != StringRef::npos)
lib/IR/Value.cpp
  234   assert(NameRef.find_first_of(0) == StringRef::npos &&
lib/ProfileData/SampleProfReader.cpp
  146       n3 = Rest.find_first_of(':');
  158         n4 = AfterColon.find_first_of(' ');
  165         uint64_t n5 = AfterColon.find_first_of(':');
lib/Support/BinaryStreamReader.cpp
   83     size_t Pos = S.find_first_of('\0');
lib/Support/FormatVariadic.cpp
   95     std::size_t BO = Fmt.find_first_of('{', From);
  113     std::size_t BC = Fmt.find_first_of('}', BO);
  124     std::size_t BO2 = Fmt.find_first_of('{', BO + 1);
lib/Target/BPF/BTFDebug.cpp
  944   size_t FirstDollar = AccessPattern.find_first_of('$');
  945   size_t FirstColon = AccessPattern.find_first_of(':');
  946   size_t SecondColon = AccessPattern.find_first_of(':', FirstColon + 1);
tools/clang/lib/Format/ContinuationIndenter.cpp
  157   size_t LParenPos = TokenText.substr(0, 19).find_first_of('(');
tools/clang/lib/Format/FormatTokenLexer.cpp
  493   size_t To = Lex->getBuffer().find_first_of('\n', From);
tools/clang/lib/Format/WhitespaceManager.cpp
  144     auto NewlinePos = Text.find_first_of('\n');
tools/clang/tools/extra/clang-tidy/objc/PropertyDeclarationCheck.cpp
   46     Index = Name.find_first_of('_') + 1;
   89   size_t Start = PropertyName.find_first_of('_');
tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
 1011                    : Text.find_first_of('%', End + 2);
 1085       size_t NameSize = Text.find_first_of('}');
tools/lldb/source/Core/UserSettingsController.cpp
  111   size_t dot_pos = setting.find_first_of('.');
tools/lldb/source/Target/StackFrame.cpp
  756       size_t end_pos = var_expr.find_first_of(']');
tools/llvm-jitlink/llvm-jitlink.cpp
  641     size_t EqIdx = AbsDefStmt.find_first_of('=');
tools/llvm-mc/Disassembler.cpp
   93         Str = Str.substr(Str.find_first_of('\n'));
unittests/ADT/StringRefTest.cpp
  485   EXPECT_EQ(2U, Str.find_first_of('l'));
utils/TableGen/AsmMatcherEmitter.cpp
  821   size_t start = Ops.first.find_first_of('$');
  828   start = Ops.second.find_first_of('$');