Searched refs:__str (Results 1 - 25 of 28) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/src/
H A Dios_failure.cc34 ios_base::failure::failure(const string& __str) throw() argument
35 : _M_msg(__str) { }
H A Dlocalename.cc93 string __str; local
94 __str.reserve(128);
97 __str += _S_categories[__j];
98 __str += '=';
99 __str += __lang;
100 __str += ';';
102 __str += _S_categories[__i];
103 __str += '=';
104 __str += __env;
105 __str
[all...]
H A Distream.cc277 operator>>(basic_istream<char>& __in, basic_string<char>& __str) argument
295 __str.erase();
298 : __str.max_size();
318 __str.append(__sb->gptr(), __size);
325 __str += __traits_type::to_char_type(__c);
357 getline(basic_istream<char>& __in, basic_string<char>& __str, argument
370 const __size_type __n = __str.max_size();
377 __str.erase();
397 __str.append(__sb->gptr(), __size);
404 __str
603 getline(basic_istream<wchar_t>& __in, basic_string<wchar_t>& __str, wchar_t __delim) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/src/
H A Dios_failure.cc39 ios_base::failure::failure(const string& __str) throw() argument
40 : _M_msg(__str) { }
H A Dlocalename.cc96 string __str; local
97 __str.reserve(128);
100 __str += _S_categories[__j];
101 __str += '=';
102 __str += __lang;
103 __str += ';';
105 __str += _S_categories[__i];
106 __str += '=';
107 __str += __env;
108 __str
[all...]
H A Distream.cc264 operator>>(basic_istream<char>& __in, basic_string<char>& __str) argument
282 __str.erase();
285 : __str.max_size();
305 __str.append(__sb->gptr(), __size);
312 __str += __traits_type::to_char_type(__c);
339 getline(basic_istream<char>& __in, basic_string<char>& __str, argument
352 const __size_type __n = __str.max_size();
359 __str.erase();
379 __str.append(__sb->gptr(), __size);
386 __str
568 getline(basic_istream<wchar_t>& __in, basic_string<wchar_t>& __str, wchar_t __delim) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/expr/
H A Dcrash-1.C7 X(const X& __str);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/expr/
H A Dcrash-1.C7 X(const X& __str);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/sparc/
H A Dsol2-bi.h43 #define DEF_ARCH32_SPEC(__str) "%{!m64:" __str "}"
44 #define DEF_ARCH64_SPEC(__str) "%{m64:" __str "}"
46 #define DEF_ARCH32_SPEC(__str) "%{m32:" __str "}"
47 #define DEF_ARCH64_SPEC(__str) "%{!m32:" __str "}"
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libssp/ssp/
H A Dstdio.h76 extern char *__gets_chk (char *__str, size_t);
77 extern char *__SSP_REDIRECT (__gets_alias, (char *__str), gets);
80 gets (char *__str) argument
82 if (__ssp_bos (__str) != (size_t) -1)
83 return __gets_chk (__str, __ssp_bos (__str));
84 return __gets_alias (__str);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/sparc/
H A Dsol2-bi.h84 #define DEF_ARCH32_SPEC(__str) "%{!m64:" __str "}"
85 #define DEF_ARCH64_SPEC(__str) "%{m64:" __str "}"
87 #define DEF_ARCH32_SPEC(__str) "%{m32:" __str "}"
88 #define DEF_ARCH64_SPEC(__str) "%{!m32:" __str "}"
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dvstring.h143 * @param __str Source string.
145 __versa_string(const __versa_string& __str) argument
146 : __vstring_base(__str) { }
151 * @param __str Source string.
157 __versa_string(__versa_string&& __str) argument
158 : __vstring_base(std::forward<__vstring_base>(__str)) { }
172 * @param __str Source string.
176 __versa_string(const __versa_string& __str, size_type __pos, argument
178 : __vstring_base(__str._M_data()
179 + __str
191 __versa_string(const __versa_string& __str, size_type __pos, size_type __n, const _Alloc& __a) argument
251 operator =(const __versa_string& __str) argument
263 operator =(__versa_string&& __str) argument
635 operator +=(const __versa_string& __str) argument
676 append(const __versa_string& __str) argument
693 append(const __versa_string& __str, size_type __pos, size_type __n) argument
782 assign(const __versa_string& __str) argument
798 assign(__versa_string&& __str) argument
819 assign(const __versa_string& __str, size_type __pos, size_type __n) argument
956 insert(size_type __pos1, const __versa_string& __str) argument
979 insert(size_type __pos1, const __versa_string& __str, size_type __pos2, size_type __n) argument
1153 replace(size_type __pos, size_type __n, const __versa_string& __str) argument
1176 replace(size_type __pos1, size_type __n1, const __versa_string& __str, size_type __pos2, size_type __n2) argument
1270 replace(iterator __i1, iterator __i2, const __versa_string& __str) argument
1531 find(const __versa_string& __str, size_type __pos = 0) const argument
1575 rfind(const __versa_string& __str, size_type __pos = npos) const argument
1634 find_first_of(const __versa_string& __str, size_type __pos = 0) const argument
1697 find_last_of(const __versa_string& __str, size_type __pos = npos) const argument
1759 find_first_not_of(const __versa_string& __str, size_type __pos = 0) const argument
1820 find_last_not_of(const __versa_string& __str, size_type __pos = npos) const argument
2401 operator <<(basic_ostream<_CharT, _Traits>& __os, const __gnu_cxx::__versa_string<_CharT, _Traits, _Alloc, _Base>& __str) argument
2447 getline(basic_istream<_CharT, _Traits>& __is, __gnu_cxx::__versa_string<_CharT, _Traits, _Alloc, _Base>& __str) argument
2461 stoi(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2466 stol(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2471 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2476 stoll(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2481 stoull(const __vstring& __str, std::size_t* __idx, int __base = 10) argument
2487 stof(const __vstring& __str, std::size_t* __idx = 0) argument
2491 stod(const __vstring& __str, std::size_t* __idx = 0) argument
2495 stold(const __vstring& __str, std::size_t* __idx = 0) argument
2563 stoi(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2568 stol(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2573 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2578 stoll(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2583 stoull(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) argument
2589 stof(const __wvstring& __str, std::size_t* __idx = 0) argument
2593 stod(const __wvstring& __str, std::size_t* __idx = 0) argument
2597 stold(const __wvstring& __str, std::size_t* __idx = 0) argument
[all...]
H A Dstring_conversions.h45 const char* __name, const _CharT* __str, std::size_t* __idx,
52 const _TRet __tmp = __convf(__str, &__endptr, __base...);
54 if (__endptr == __str)
65 *__idx = __endptr - __str;
44 __stoa(_TRet (__convf) const _CharT*, _CharT**, _Base...), const char* __name, const _CharT* __str, std::size_t* __idx, _Base... __base) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/eh/
H A Dcond2.C11 X& operator=(const X& __str);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dcrash15.C28 failure(const basic_string& __str);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/eh/
H A Dcond2.C11 X& operator=(const X& __str);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Dcrash15.C28 failure(const basic_string& __str);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dbasic_string.h441 basic_string(const basic_string& __str);
448 basic_string(const basic_string& __str, size_type __pos,
457 basic_string(const basic_string& __str, size_type __pos,
493 basic_string(basic_string&& __str) argument
494 : _M_dataplus(__str._M_dataplus)
497 __str._M_data(_S_empty_rep()._M_refdata());
499 __str._M_data(_S_construct(size_type(), _CharT(), get_allocator()));
532 operator=(const basic_string& __str) argument
533 { return this->assign(__str); }
566 operator=(basic_string&& __str) argument
881 operator +=(const basic_string& __str) argument
1027 assign(basic_string&& __str) argument
1047 assign(const basic_string& __str, size_type __pos, size_type __n) argument
1177 insert(size_type __pos1, const basic_string& __str) argument
1199 insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n) argument
1359 replace(size_type __pos, size_type __n, const basic_string& __str) argument
1381 replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2) argument
1465 replace(iterator __i1, iterator __i2, const basic_string& __str) argument
1768 find(const basic_string& __str, size_type __pos = 0) const argument
1812 rfind(const basic_string& __str, size_type __pos = npos) const argument
1870 find_first_of(const basic_string& __str, size_type __pos = 0) const argument
1931 find_last_of(const basic_string& __str, size_type __pos = npos) const argument
1992 find_first_not_of(const basic_string& __str, size_type __pos = 0) const argument
2051 find_last_not_of(const basic_string& __str, size_type __pos = npos) const argument
2600 operator <<(basic_ostream<_CharT, _Traits>& __os, const basic_string<_CharT, _Traits, _Alloc>& __str) argument
2641 getline(basic_istream<_CharT, _Traits>& __is, basic_string<_CharT, _Traits, _Alloc>& __str) argument
2668 stoi(const string& __str, size_t* __idx = 0, int __base = 10) argument
2673 stol(const string& __str, size_t* __idx = 0, int __base = 10) argument
2678 stoul(const string& __str, size_t* __idx = 0, int __base = 10) argument
2683 stoll(const string& __str, size_t* __idx = 0, int __base = 10) argument
2688 stoull(const string& __str, size_t* __idx = 0, int __base = 10) argument
2694 stof(const string& __str, size_t* __idx = 0) argument
2698 stod(const string& __str, size_t* __idx = 0) argument
2702 stold(const string& __str, size_t* __idx = 0) argument
2771 stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) argument
2776 stol(const wstring& __str, size_t* __idx = 0, int __base = 10) argument
2781 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) argument
2786 stoll(const wstring& __str, size_t* __idx = 0, int __base = 10) argument
2791 stoull(const wstring& __str, size_t* __idx = 0, int __base = 10) argument
2797 stof(const wstring& __str, size_t* __idx = 0) argument
2801 stod(const wstring& __str, size_t* __idx = 0) argument
2805 stold(const wstring& __str, size_t* __idx = 0) argument
[all...]
H A Dios_base.h223 failure(const string& __str) throw();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/ext/
H A Dvstring.h148 __versa_string(const __versa_string& __str) argument
149 : __vstring_base(__str) { }
157 __versa_string(const __versa_string& __str, size_type __pos, argument
159 : __vstring_base(__str._M_data()
160 + __str._M_check(__pos,
162 __str._M_data() + __str._M_limit(__pos, __n)
172 __versa_string(const __versa_string& __str, size_type __pos, argument
174 : __vstring_base(__str._M_data()
175 + __str
232 operator =(const __versa_string& __str) argument
505 operator +=(const __versa_string& __str) argument
535 append(const __versa_string& __str) argument
551 append(const __versa_string& __str, size_type __pos, size_type __n) argument
629 assign(const __versa_string& __str) argument
648 assign(const __versa_string& __str, size_type __pos, size_type __n) argument
757 insert(size_type __pos1, const __versa_string& __str) argument
780 insert(size_type __pos1, const __versa_string& __str, size_type __pos2, size_type __n) argument
950 replace(size_type __pos, size_type __n, const __versa_string& __str) argument
972 replace(size_type __pos1, size_type __n1, const __versa_string& __str, size_type __pos2, size_type __n2) argument
1064 replace(iterator __i1, iterator __i2, const __versa_string& __str) argument
1304 find(const __versa_string& __str, size_type __pos = 0) const argument
1348 rfind(const __versa_string& __str, size_type __pos = npos) const argument
1406 find_first_of(const __versa_string& __str, size_type __pos = 0) const argument
1467 find_last_of(const __versa_string& __str, size_type __pos = npos) const argument
1528 find_first_not_of(const __versa_string& __str, size_type __pos = 0) const argument
1587 find_last_not_of(const __versa_string& __str, size_type __pos = npos) const argument
2185 getline(basic_istream<_CharT, _Traits>& __is, __gnu_cxx::__versa_string<_CharT, _Traits, _Alloc, _Base>& __str) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/bits/
H A Dbasic_string.h420 basic_string(const basic_string& __str);
427 basic_string(const basic_string& __str, size_type __pos,
436 basic_string(const basic_string& __str, size_type __pos,
485 operator=(const basic_string& __str) argument
486 { return this->assign(__str); }
757 operator+=(const basic_string& __str) argument
758 { return this->append(__str); }
787 append(const basic_string& __str);
802 append(const basic_string& __str, size_type __pos, size_type __n);
869 assign(const basic_string& __str);
884 assign(const basic_string& __str, size_type __pos, size_type __n) argument
988 insert(size_type __pos1, const basic_string& __str) argument
1010 insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n) argument
1178 replace(size_type __pos, size_type __n, const basic_string& __str) argument
1200 replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2) argument
1284 replace(iterator __i1, iterator __i2, const basic_string& __str) argument
1562 find(const basic_string& __str, size_type __pos = 0) const argument
1606 rfind(const basic_string& __str, size_type __pos = npos) const argument
1664 find_first_of(const basic_string& __str, size_type __pos = 0) const argument
1725 find_last_of(const basic_string& __str, size_type __pos = npos) const argument
1786 find_first_not_of(const basic_string& __str, size_type __pos = 0) const argument
1845 find_last_not_of(const basic_string& __str, size_type __pos = npos) const argument
[all...]
H A Dios_base.h213 failure(const string& __str) throw();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/std/
H A Dstd_sstream.h113 basic_stringbuf(const __string_type& __str, argument
115 : __streambuf_type(), _M_mode(), _M_string(__str.data(), __str.size())
319 basic_istringstream(const __string_type& __str, argument
321 : __istream_type(), _M_stringbuf(__str, __mode | ios_base::in)
432 basic_ostringstream(const __string_type& __str, argument
434 : __ostream_type(), _M_stringbuf(__str, __mode | ios_base::out)
541 basic_stringstream(const __string_type& __str, argument
543 : __iostream_type(), _M_stringbuf(__str, __m)
/netbsd-6-1-5-RELEASE/sys/arch/xen/include/i386/
H A Dhypercalls.h64 #define __str(x) #x macro
65 #define _str(x) __str(x)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Drandom.h1489 _M_strtoul(const std::string& __str)
1492 if (__str != "mt19937")
1494 const char* __nptr = __str.c_str();

Completed in 152 milliseconds

12