Searched refs:find_last_of (Results 1 - 25 of 25) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStreamString.cpp42 size_t last_line_begin_pos = m_packet.find_last_of("\r\n");
55 size_t last_line_begin_pos = m_packet.find_last_of("\r\n");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h204 size_t find_last_of(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString
205 return str().find_last_of(C, From);
212 size_t find_last_of( function in class:llvm::SmallString
214 return str().find_last_of(Chars, From);
H A DStringRef.h427 size_t find_last_of(char C, size_t From = npos) const {
436 size_t find_last_of(StringRef Chars, size_t From = npos) const;
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dbasic_string.h1740 find_last_of(const basic_string& __str, size_type __pos = npos) const function in class:basic_string
1741 { return this->find_last_of(__str.data(), __pos, __str.size()); }
1755 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
1768 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
1771 return this->find_last_of(__s, __pos, traits_type::length(__s));
1787 find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dvstring.h1465 find_last_of(const __versa_string& __str, size_type __pos = npos) const function in class:__versa_string
1466 { return this->find_last_of(__str.data(), __pos, __str.size()); }
1480 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
1493 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
1496 return this->find_last_of(__s, __pos, traits_type::length(__s));
1512 find_last_of(_CharT __c, size_type __pos = npos) const function in class:__versa_string
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp99 size_t pos = str.find_last_of(separators(style), str.size() - 1);
103 pos = str.find_last_of(':', str.size() - 2);
487 size_t pos = p.find_last_of('.');
592 size_t pos = fname.find_last_of('.');
605 size_t pos = fname.find_last_of('.');
H A DSourceMgr.cpp145 size_t NewlineOffs = StringRef(BufStart, Ptr-BufStart).find_last_of("\n\r");
H A DStringRef.cpp273 /// find_last_of - Find the last character in the string that is in \arg C,
277 StringRef::size_type StringRef::find_last_of(StringRef Chars,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp107 auto last_dot = binary_name.find_last_of('.');
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp89 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);
H A DFormatTokenLexer.cpp818 Text.substr(Text.find_last_of('\n') + 1), 0, Style.TabWidth, Encoding);
H A DContinuationIndenter.cpp1491 size_t LastNewlinePos = Text.find_last_of("\n");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp537 size_t LastColonPos = NewName.find_last_of(':');
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp80 size_t Pos = Path.find_last_of("/\\");
H A DFuzzerDriver.cpp586 while ((comma_pos = SeedInputs.find_last_of(',')) != std::string::npos) {
/freebsd-11-stable/lib/libdevdctl/
H A Devent.cc398 start = eventString.find_last_of("! \t\n", end);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp94 pos = s.find_last_of(left_right_chars, pos);
100 pos = s.find_last_of(left_right_chars, pos);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp120 size_t pTag = CurFmt.find_last_of("%");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp527 size_t ColonPos = ModuleName.find_last_of(':');
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp180 size_t n3 = Rest.find_last_of(':');
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp300 auto pos = s.find_last_of('.');
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp825 size_t end = Ops.first.find_last_of(" \t");
832 end = Ops.second.find_last_of(" \t");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp2095 auto Slash = PartialPath.find_last_of(LangOpts.MSVCCompat ? "/\\" : "/");
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2525 last_space = this_line.find_last_of(" \t");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDarwin.cpp1579 size_t EndVer = SDK.find_last_of("0123456789");

Completed in 481 milliseconds