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

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeName.h52 auto AnglePos = Name.rfind('>');
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DMinGW.cpp108 libName = libName.substr(0, libName.rfind('.'));
142 libName = libName.substr(0, libName.rfind('.'));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h162 size_t rfind(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString
163 return str().rfind(C, From);
170 size_t rfind(StringRef Str) const { function in class:llvm::SmallString
171 return str().rfind(Str);
H A DStringRef.h366 size_t rfind(char C, size_t From = npos) const {
389 size_t rfind(StringRef Str) const;
428 return rfind(C, From);
752 size_t Idx = rfind(Separator);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DObjCRuntime.cpp50 std::size_t dash = input.rfind('-');
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTarWriter.cpp134 size_t Sep = Path.rfind('/', sizeof(UstarHeader::Prefix) + 1);
H A DStringRef.cpp204 /// rfind - Search for the last string \arg Str in the string.
208 size_t StringRef::rfind(StringRef Str) const {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DLookup.cpp208 auto Pos = ReplacementString.rfind("::");
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DTypeList.cpp151 const size_t type_scope_pos = match_type_scope.rfind(type_scope);
H A DTypeMap.cpp181 const size_t type_scope_pos = match_type_scope.rfind(type_scope);
H A DObjectFile.cpp583 llvm::StringRef archive = path_with_object.substr(0, path_with_object.rfind('('));
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DAnalyzerOptions.cpp130 size_t Pos = CheckerName.rfind('.');
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dbasic_string.h1621 rfind(const basic_string& __str, size_type __pos = npos) const function in class:basic_string
1622 { return this->rfind(__str.data(), __pos, __str.size()); }
1636 rfind(const _CharT* __s, size_type __pos, size_type __n) const;
1649 rfind(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
1652 return this->rfind(__s, __pos, traits_type::length(__s));
1666 rfind(_CharT __c, size_type __pos = npos) const;
1784 * Note: equivalent to rfind(c, pos).
1788 { return this->rfind(__c, __pos); }
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dvstring.h1346 rfind(const __versa_string& __str, size_type __pos = npos) const function in class:__versa_string
1347 { return this->rfind(__str.data(), __pos, __str.size()); }
1361 rfind(const _CharT* __s, size_type __pos, size_type __n) const;
1374 rfind(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
1377 return this->rfind(__s, __pos, traits_type::length(__s));
1391 rfind(_CharT __c, size_type __pos = npos) const;
1509 * Note: equivalent to rfind(c, pos).
1513 { return this->rfind(__c, __pos); }
/freebsd-11-stable/lib/libdevdctl/
H A Devent.cc148 size_t find_start = devName.rfind('/');
460 size_t start = devName.rfind('/');
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOPosix.cpp49 size_t Pos = Path.rfind(GetSeparator());
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DScriptLexer.cpp47 size_t pos = s.rfind('\n', tok.data() - s.data());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h512 auto It = Cand.rfind(Suffix);
515 auto Dit = Cand.rfind('.');
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp100 size_t py_extension_pos = os_plugin_class_name.rfind(".py");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp91 auto StartPos = Code.rfind('\n', Start);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.cpp482 size_t LastBreak = LiteralText.rfind('\n');
575 auto LineOffset = Buffer.rfind('\n', FirstInLineOffset);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp199 ProgName = ProgName.slice(0, ProgName.rfind('-'));
214 size_t LastComponent = ProgName.rfind('-', SuffixPos);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2319 a = Name.rfind('/');
2325 Idx = Foo.rfind('_');
2335 b = Name.rfind('/', a);
2351 c = Name.rfind('/', b);
2357 d = Name.rfind('/', c);
2372 a = Name.rfind('.');
2386 b = Name.rfind('/', a);
2392 Idx = Name.rfind('_');
2416 b = Name.rfind('/', a);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp592 size_t AtPos = SymbolName.rfind('@');
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp299 size_t pos = CacheName.rfind('.');

Completed in 432 milliseconds

12