| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| SmallString.h | 155 size_t rfind(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString 156 return str().rfind(C, From); 163 size_t rfind(StringRef Str) const { function in class:llvm::SmallString 164 return str().rfind(Str);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| vstring.h | 1742 rfind(const __versa_string& __str, size_type __pos = npos) const 1744 { return this->rfind(__str.data(), __pos, __str.size()); } 1759 rfind(const _CharT* __s, size_type __pos, size_type __n) const; 1772 rfind(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string 1775 return this->rfind(__s, __pos, traits_type::length(__s)); 1789 rfind(_CharT __c, size_type __pos = npos) const _GLIBCXX_NOEXCEPT; 1912 * Note: equivalent to rfind(c, pos). 1916 { return this->rfind(__c, __pos); }
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| vstring.h | 1740 rfind(const __versa_string& __str, size_type __pos = npos) const 1742 { return this->rfind(__str.data(), __pos, __str.size()); } 1757 rfind(const _CharT* __s, size_type __pos, size_type __n) const; 1770 rfind(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string 1773 return this->rfind(__s, __pos, traits_type::length(__s)); 1787 rfind(_CharT __c, size_type __pos = npos) const _GLIBCXX_NOEXCEPT; 1910 * Note: equivalent to rfind(c, pos). 1914 { return this->rfind(__c, __pos); }
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| basic_string.h | 2772 rfind(const basic_string& __str, size_type __pos = npos) const 2774 { return this->rfind(__str.data(), __pos, __str.size()); } 2786 rfind(const _Tp& __svt, size_type __pos = npos) const 2790 return this->rfind(__sv.data(), __pos, __sv.size()); 2808 rfind(const _CharT* __s, size_type __pos, size_type __n) const 2823 rfind(const _CharT* __s, size_type __pos = npos) const function in class:basic_string 2826 return this->rfind(__s, __pos, traits_type::length(__s)); 2841 rfind(_CharT __c, size_type __pos = npos) const _GLIBCXX_NOEXCEPT; 3014 * Note: equivalent to rfind(__c, __pos). 3019 { return this->rfind(__c, __pos); [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| basic_string.h | 2698 rfind(const basic_string& __str, size_type __pos = npos) const 2700 { return this->rfind(__str.data(), __pos, __str.size()); } 2712 rfind(const _Tp& __svt, size_type __pos = npos) const 2716 return this->rfind(__sv.data(), __pos, __sv.size()); 2734 rfind(const _CharT* __s, size_type __pos, size_type __n) const 2749 rfind(const _CharT* __s, size_type __pos = npos) const function in class:basic_string 2752 return this->rfind(__s, __pos, traits_type::length(__s)); 2767 rfind(_CharT __c, size_type __pos = npos) const _GLIBCXX_NOEXCEPT; 2940 * Note: equivalent to rfind(__c, __pos). 2945 { return this->rfind(__c, __pos); [all...] |