reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
414 size_t find_first_not_of(char C, size_t From = 0) const;
191 return str().find_first_not_of(C, From);
include/llvm/ADT/StringRef.h 810 return drop_front(std::min(Length, find_first_not_of(Char)));
lib/ProfileData/SampleProfReader.cpp144 n3 += Rest.substr(n3).find_first_not_of(' '); 201 if ((*LineIt)[(*LineIt).find_first_not_of(' ')] == '#')tools/clang/lib/Analysis/RetainSummaryManager.cpp
504 FName = FName.substr(FName.find_first_not_of('_')); 721 FName = FName.substr(FName.find_first_not_of('_'));tools/lldb/source/Commands/CommandObjectCommands.cpp
565 pos = raw_command_string.find_first_not_of(' ');
unittests/ADT/StringRefTest.cpp 490 EXPECT_EQ(1U, Str.find_first_not_of('h'));