| /trueos/contrib/llvm/include/llvm/ADT/ |
| HD | SmallString.h | 166 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()
|
| HD | StringRef.h | 250 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/ |
| D | string_view | 136 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/ |
| D | string | 625 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/ |
| HD | CPPLanguageRuntime.cpp | 317 context_end = full.rfind(':', template_start); in Parse() 320 context_end = full.rfind(':', basename_end); in Parse()
|
| /trueos/contrib/libstdc++/include/bits/ |
| D | basic_string.h | 1621 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()
|
| D | basic_string.tcc | 760 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/ |
| D | vstring.h | 1346 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()
|
| D | vstring.tcc | 314 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/ |
| HD | ObjCRuntime.cpp | 45 std::size_t dash = input.rfind('-'); in tryParse()
|
| /trueos/contrib/llvm/tools/clang/tools/driver/ |
| HD | driver.cpp | 256 StringRef::size_type LastComponent = ProgNameRef.rfind('-', in ParseProgName() 263 StringRef::size_type LastComponent = ProgNameRef.rfind('-'); in ParseProgName()
|
| /trueos/contrib/llvm/tools/lldb/source/Symbol/ |
| HD | TypeList.cpp | 290 const size_t type_scope_pos = match_type_scope.rfind(type_scope); in RemoveMismatchedTypes()
|
| /trueos/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/ |
| HD | OperatingSystemPython.cpp | 114 size_t py_extension_pos = os_plugin_class_name.rfind(".py"); in OperatingSystemPython()
|
| /trueos/contrib/libc++/include/ |
| D | string | 236 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/ |
| HD | StringRef.cpp | 183 size_t StringRef::rfind(StringRef Str) const { in rfind() function in StringRef
|
| /trueos/contrib/llvm/tools/clang/lib/Driver/ |
| HD | Driver.cpp | 541 I = StringRef(Cmd).rfind(OldFilename); in generateCompilationDiagnostics() 543 I = Cmd.rfind(" ", I) + 1; in generateCompilationDiagnostics() 1699 End = BaseName.rfind('.'); in GetNamedOutputPath()
|
| HD | Tools.cpp | 4585 Res = Str.substr(0, Str.rfind('.')); in getDependencyFileName()
|
| /trueos/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| HD | ObjCMT.cpp | 1219 size_t Ix = LoweredClassName.rfind(MethodNamePrefix); in migrateFactoryMethod() 1600 size_t Ix = Directory.rfind(".framework"); in IsReallyASystemHeader()
|
| /trueos/contrib/libstdc++/ |
| D | ChangeLog-2003 | 3117 * 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 …]
|
| D | ChangeLog-2000 | 3358 * bits/string.tcc (string::rfind): Fix. 3359 * testsuite/21_strings/rfind.cc: New file.
|
| D | ChangeLog-2004 | 6056 * include/bits/basic_string.tcc (rfind(_CharT, size_type)): 6101 (rfind(_CharT, size_type)): Ditto.
|
| /trueos/contrib/llvm/lib/Linker/ |
| HD | LinkModules.cpp | 645 size_t DotPos = ST->getName().rfind('.'); in computeTypeMapping()
|
| /trueos/contrib/llvm/lib/Transforms/Utils/ |
| HD | SimplifyLibCalls.cpp | 538 Str.size() : Str.rfind(CharC->getSExtValue()); in callOptimizer()
|
| /trueos/contrib/llvm/tools/clang/lib/Rewrite/Frontend/ |
| HD | RewriteObjC.cpp | 567 std::string::size_type DotPos = Filename.rfind('.'); in IsHeaderFile()
|
| HD | RewriteModernObjC.cpp | 635 std::string::size_type DotPos = Filename.rfind('.'); in IsHeaderFile()
|