Home
last modified time | relevance | path

Searched refs:rfind (Results 1 – 25 of 27) sorted by relevance

12

/trueos/contrib/llvm/include/llvm/ADT/
HDSmallString.h166 size_t rfind(char C, size_t From = StringRef::npos) const {
167 return str().rfind(C, From);
174 size_t rfind(StringRef Str) const { in rfind() function
175 return str().rfind(Str); in rfind()
HDStringRef.h250 size_t rfind(char C, size_t From = npos) const {
265 size_t rfind(StringRef Str) const;
292 return rfind(C, From);
490 size_t Idx = rfind(Separator); in rsplit()
/trueos/contrib/libc++/include/experimental/
Dstring_view136 constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept;
137 constexpr size_type rfind(charT c, size_type pos = npos) const noexcept;
138 constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
139 constexpr size_type rfind(const charT* s, size_type pos = npos) const;
447 // rfind
449 size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT
457 size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT
464 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const
466 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): recieved nullptr");
472 size_type rfind(const _CharT* __s, size_type __pos=npos) const
[all …]
/trueos/contrib/libstdc++/include/debug/
Dstring625 rfind(const basic_string& __str, size_type __pos = _Base::npos) const
626 { return _Base::rfind(__str, __pos); }
629 rfind(const _CharT* __s, size_type __pos, size_type __n) const
632 return _Base::rfind(__s, __pos, __n);
636 rfind(const _CharT* __s, size_type __pos = _Base::npos) const
639 return _Base::rfind(__s, __pos);
643 rfind(_CharT __c, size_type __pos = _Base::npos) const
644 { return _Base::rfind(__c, __pos); }
/trueos/contrib/llvm/tools/lldb/source/Target/
HDCPPLanguageRuntime.cpp317 context_end = full.rfind(':', template_start); in Parse()
320 context_end = full.rfind(':', basename_end); in Parse()
/trueos/contrib/libstdc++/include/bits/
Dbasic_string.h1621 rfind(const basic_string& __str, size_type __pos = npos) const in _GLIBCXX_BEGIN_NAMESPACE()
1622 { return this->rfind(__str.data(), __pos, __str.size()); } in _GLIBCXX_BEGIN_NAMESPACE()
1636 rfind(const _CharT* __s, size_type __pos, size_type __n) const; in _GLIBCXX_BEGIN_NAMESPACE()
1649 rfind(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_BEGIN_NAMESPACE()
1652 return this->rfind(__s, __pos, traits_type::length(__s)); in _GLIBCXX_BEGIN_NAMESPACE()
1666 rfind(_CharT __c, size_type __pos = npos) const; in _GLIBCXX_BEGIN_NAMESPACE()
1788 { return this->rfind(__c, __pos); } in _GLIBCXX_BEGIN_NAMESPACE()
Dbasic_string.tcc760 rfind(const _CharT* __s, size_type __pos, size_type __n) const in rfind() function in basic_string
781 rfind(_CharT __c, size_type __pos) const in rfind() function in basic_string
/trueos/contrib/libstdc++/include/ext/
Dvstring.h1346 rfind(const __versa_string& __str, size_type __pos = npos) const in _GLIBCXX_BEGIN_NAMESPACE()
1347 { return this->rfind(__str.data(), __pos, __str.size()); } in _GLIBCXX_BEGIN_NAMESPACE()
1361 rfind(const _CharT* __s, size_type __pos, size_type __n) const; in _GLIBCXX_BEGIN_NAMESPACE()
1374 rfind(const _CharT* __s, size_type __pos = npos) const in _GLIBCXX_BEGIN_NAMESPACE()
1377 return this->rfind(__s, __pos, traits_type::length(__s)); in _GLIBCXX_BEGIN_NAMESPACE()
1391 rfind(_CharT __c, size_type __pos = npos) const; in _GLIBCXX_BEGIN_NAMESPACE()
1513 { return this->rfind(__c, __pos); } in _GLIBCXX_BEGIN_NAMESPACE()
Dvstring.tcc314 rfind(const _CharT* __s, size_type __pos, size_type __n) const in rfind() function in __versa_string
336 rfind(_CharT __c, size_type __pos) const in rfind() function in __versa_string
/trueos/contrib/llvm/tools/clang/lib/Basic/
HDObjCRuntime.cpp45 std::size_t dash = input.rfind('-'); in tryParse()
/trueos/contrib/llvm/tools/clang/tools/driver/
HDdriver.cpp256 StringRef::size_type LastComponent = ProgNameRef.rfind('-', in ParseProgName()
263 StringRef::size_type LastComponent = ProgNameRef.rfind('-'); in ParseProgName()
/trueos/contrib/llvm/tools/lldb/source/Symbol/
HDTypeList.cpp290 const size_t type_scope_pos = match_type_scope.rfind(type_scope); in RemoveMismatchedTypes()
/trueos/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
HDOperatingSystemPython.cpp114 size_t py_extension_pos = os_plugin_class_name.rfind(".py"); in OperatingSystemPython()
/trueos/contrib/libc++/include/
Dstring236 size_type rfind(const basic_string& str, size_type pos = npos) const noexcept;
237 size_type rfind(const value_type* s, size_type pos, size_type n) const noexcept;
238 size_type rfind(const value_type* s, size_type pos = npos) const noexcept;
239 size_type rfind(value_type c, size_type pos = npos) const noexcept;
1613 size_type rfind(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1614 size_type rfind(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1616 size_type rfind(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1617 size_type rfind(value_type __c, size_type __pos = npos) const _NOEXCEPT;
3418 // rfind
3422 basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
[all …]
/trueos/contrib/llvm/lib/Support/
HDStringRef.cpp183 size_t StringRef::rfind(StringRef Str) const { in rfind() function in StringRef
/trueos/contrib/llvm/tools/clang/lib/Driver/
HDDriver.cpp541 I = StringRef(Cmd).rfind(OldFilename); in generateCompilationDiagnostics()
543 I = Cmd.rfind(" ", I) + 1; in generateCompilationDiagnostics()
1699 End = BaseName.rfind('.'); in GetNamedOutputPath()
HDTools.cpp4585 Res = Str.substr(0, Str.rfind('.')); in getDependencyFileName()
/trueos/contrib/llvm/tools/clang/lib/ARCMigrate/
HDObjCMT.cpp1219 size_t Ix = LoweredClassName.rfind(MethodNamePrefix); in migrateFactoryMethod()
1600 size_t Ix = Directory.rfind(".framework"); in IsReallyASystemHeader()
/trueos/contrib/libstdc++/
DChangeLog-20033117 * testsuite/21_strings/basic_string/rfind/char/1.cc: Same.
3118 * testsuite/21_strings/basic_string/rfind/char/2.cc: Same.
3119 * testsuite/21_strings/basic_string/rfind/char/3.cc: Same.
3120 * testsuite/21_strings/basic_string/rfind/wchar_t/1.cc: Same.
3121 * testsuite/21_strings/basic_string/rfind/wchar_t/2.cc: Same.
3122 * testsuite/21_strings/basic_string/rfind/wchar_t/3.cc: Same.
4813 find(_CharT, size_type), rfind(const _CharT*, size_type, size_type),
4814 rfind(_CharT, size_type), compare(size_type, size_type,
6740 * testsuite/21_strings/basic_string/rfind/char/2.cc: find_last_of
6742 * testsuite/21_strings/basic_string/rfind/char/3.cc: find_last_not_of
[all …]
DChangeLog-20003358 * bits/string.tcc (string::rfind): Fix.
3359 * testsuite/21_strings/rfind.cc: New file.
DChangeLog-20046056 * include/bits/basic_string.tcc (rfind(_CharT, size_type)):
6101 (rfind(_CharT, size_type)): Ditto.
/trueos/contrib/llvm/lib/Linker/
HDLinkModules.cpp645 size_t DotPos = ST->getName().rfind('.'); in computeTypeMapping()
/trueos/contrib/llvm/lib/Transforms/Utils/
HDSimplifyLibCalls.cpp538 Str.size() : Str.rfind(CharC->getSExtValue()); in callOptimizer()
/trueos/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
HDRewriteObjC.cpp567 std::string::size_type DotPos = Filename.rfind('.'); in IsHeaderFile()
HDRewriteModernObjC.cpp635 std::string::size_type DotPos = Filename.rfind('.'); in IsHeaderFile()

12