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

/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/operations/rfind/char/
H A D1.cc23 // 21.3.6.2 basic_string rfind
39 // size_type rfind(const string&, size_type pos = 0) const;
40 csz01 = str01.rfind(str01);
42 csz01 = str01.rfind(str01, 4);
44 csz01 = str01.rfind(str02,3);
46 csz01 = str01.rfind(str02);
48 csz01 = str01.rfind(str03);
50 csz01 = str01.rfind(str03, 3);
52 csz01 = str01.rfind(str03, 12);
58 csz01 = str01.rfind(str0
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/operations/rfind/wchar_t/
H A D1.cc23 // 21.3.6.2 basic_string rfind
39 // size_type rfind(const wstring&, size_type pos = 0) const;
40 csz01 = str01.rfind(str01);
42 csz01 = str01.rfind(str01, 4);
44 csz01 = str01.rfind(str02,3);
46 csz01 = str01.rfind(str02);
48 csz01 = str01.rfind(str03);
50 csz01 = str01.rfind(str03, 3);
52 csz01 = str01.rfind(str03, 12);
58 csz01 = str01.rfind(str0
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/string_view/operations/rfind/char/
H A D1.cc23 // basic_string_view rfind
42 // size_type rfind(const string_view&, size_type pos = 0) const;
43 csz01 = str01.rfind(str01);
45 csz01 = str01.rfind(str01, 4);
47 csz01 = str01.rfind(str02,3);
49 csz01 = str01.rfind(str02);
51 csz01 = str01.rfind(str03);
53 csz01 = str01.rfind(str03, 3);
55 csz01 = str01.rfind(str03, 12);
61 csz01 = str01.rfind(str0
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/string_view/operations/rfind/wchar_t/
H A D1.cc23 // basic_string_view rfind
42 // size_type rfind(const wstring_view&, size_type pos = 0) const;
43 csz01 = str01.rfind(str01);
45 csz01 = str01.rfind(str01, 4);
47 csz01 = str01.rfind(str02,3);
49 csz01 = str01.rfind(str02);
51 csz01 = str01.rfind(str03);
53 csz01 = str01.rfind(str03, 3);
55 csz01 = str01.rfind(str03, 12);
61 csz01 = str01.rfind(str0
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/
H A D1.cc35 string::size_type i = aux.rfind("/");
41 i = aux.rfind("r/");
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/
H A D1.cc35 wstring::size_type i = aux.rfind(L"/");
41 i = aux.rfind(L"r/");
/haiku-buildtools/legacy/gcc/libstdc++/tests/
H A Dtstring.cc174 assert(x.rfind ("l") == 3);
227 x.erase (x.rfind (b));
230 y.replace (0, y.rfind (b), b);
/haiku-buildtools/legacy/gcc/libstdc++/std/
H A Dbastring.h371 size_type rfind (const basic_string& str, size_type pos = npos) const function in class:basic_string
372 { return rfind (str.data(), pos, str.length()); }
373 size_type rfind (const charT* s, size_type pos, size_type n) const;
374 size_type rfind (const charT* s, size_type pos = npos) const function in class:basic_string
375 { return rfind (s, pos, traits::length (s)); }
376 size_type rfind (charT c, size_type pos = npos) const;
392 { return rfind (c, pos); }
H A Dbastring.cc277 rfind (const charT* s, size_type pos, size_type n) const function in class:basic_string
296 rfind (charT c, size_type pos) const function in class:basic_string
/haiku-buildtools/binutils/gold/
H A Dmain.cc99 size_t slash = filename_str.rfind('/');
H A Dsymtab.cc3438 std::string::size_type s1begin = s1.rfind('/');
3439 std::string::size_type s2begin = s2.rfind('/');
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dbasic_string.h1978 rfind(const basic_string& __str, size_type __pos = npos) const
1980 { return this->rfind(__str.data(), __pos, __str.size()); }
1995 rfind(const _CharT* __s, size_type __pos, size_type __n) const;
2008 rfind(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
2011 return this->rfind(__s, __pos, traits_type::length(__s));
2025 rfind(_CharT __c, size_type __pos = npos) const _GLIBCXX_NOEXCEPT;
2149 * Note: equivalent to rfind(__c, __pos).
2153 { return this->rfind(__c, __pos); }
4308 rfind(const basic_string& __str, size_type __pos = npos) const
4310 { return this->rfind(__st
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dvstring.h1738 rfind(const __versa_string& __str, size_type __pos = npos) const
1740 { return this->rfind(__str.data(), __pos, __str.size()); }
1755 rfind(const _CharT* __s, size_type __pos, size_type __n) const;
1768 rfind(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
1771 return this->rfind(__s, __pos, traits_type::length(__s));
1785 rfind(_CharT __c, size_type __pos = npos) const _GLIBCXX_NOEXCEPT;
1908 * Note: equivalent to rfind(c, pos).
1912 { return this->rfind(__c, __pos); }
/haiku-buildtools/gcc/libstdc++-v3/src/filesystem/
H A Dpath.cc321 return { s, s->rfind('.') };
/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Dgogo.h155 { return name[0] != '.' ? name : name.substr(name.rfind('.') + 1); }
167 return name.substr(1, name.rfind('.') - 1);
H A Dimport.cc649 size_t dot = type_name.rfind('.');

Completed in 293 milliseconds