Searched defs:__str (Results 1 - 14 of 14) sorted by relevance

/external/stlport/stlport/stl/
H A D_stdexcept_base.c19 __Named_exception::__Named_exception(const string& __str) { argument
20 size_t __size = strlen(_STLP_PRIV __get_c_string(__str)) + 1;
35 strncpy(_M_name, _STLP_PRIV __get_c_string(__str), __size - 1);
38 strncpy_s(_M_name, __size, _STLP_PRIV __get_c_string(__str), __size - 1);
H A D_num_get.h64 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, argument
66 { return do_get(__ii, __end, __str, __err, __val); }
70 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, argument
72 { return do_get(__ii, __end, __str, __err, __val); }
74 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, argument
76 { return do_get(__ii, __end, __str, __err, __val); }
79 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, argument
81 { return do_get(__ii, __end, __str, __err, __val); }
83 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, argument
85 { return do_get(__ii, __end, __str, __er
87 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, unsigned int& __val) const argument
91 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, unsigned long& __val) const argument
96 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, _STLP_LONG_LONG& __val) const argument
100 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, unsigned _STLP_LONG_LONG& __val) const argument
105 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, float& __val) const argument
109 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, double& __val) const argument
114 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, long double& __val) const argument
119 get(_InputIter __ii, _InputIter __end, ios_base& __str, ios_base::iostate& __err, void*& __val) const argument
[all...]
H A D_sstream.h98 static _CharT* _S_start(const _String& __str) { return __CONST_CAST(_CharT*, __str.data()); } argument
99 static _CharT* _S_finish(const _String& __str) { return __CONST_CAST(_CharT*, __str.data()) + __str.size(); } argument
132 basic_istringstream(const _String& __str,
175 basic_ostringstream(const _String& __str,
221 basic_stringstream(const _String& __str,
H A D_locale.h224 explicit locale(const char *__str) : _Locale(__str) {} argument
225 locale(const locale& __loc, const char* __str, category __cat) argument
226 : _Locale(__loc, __str, __cat) {}
H A D_monetary.h62 ios_base& __str, ios_base::iostate& __err,
64 { return do_get(__s, __end, __intl, __str, __err, __units); }
66 ios_base& __str, ios_base::iostate& __err,
68 { return do_get(__s, __end, __intl, __str, __err, __digits); }
75 ios_base& __str, ios_base::iostate& __err,
78 ios_base& __str, ios_base::iostate& __err,
395 iter_type put(iter_type __s, bool __intl, ios_base& __str, argument
397 { return do_put(__s, __intl, __str, __fill, __units); }
398 iter_type put(iter_type __s, bool __intl, ios_base& __str, argument
401 { return do_put(__s, __intl, __str, __fil
61 get(iter_type __s, iter_type __end, bool __intl, ios_base& __str, ios_base::iostate& __err, _STLP_LONGEST_FLOAT_TYPE& __units) const argument
65 get(iter_type __s, iter_type __end, bool __intl, ios_base& __str, ios_base::iostate& __err, string_type& __digits) const argument
[all...]
H A D_num_put.c74 __put_float(__iostring &__str, _OutputIter __oi, argument
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi, argument
100 if ((__group_pos < __str.size()) && (__str[__group_pos] == '.')) {
101 __str[__group_pos] = __decimal_point;
105 __insert_grouping(__str, __group_pos,
109 return __copy_float_and_fill(__str.data(), __str.data() + __str
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
[all...]
H A D_ostream.h45 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str);
180 explicit sentry(basic_ostream<_CharT, _Traits>& __str) argument
181 : _M_str(__str), /* _M_buf(__str.rdbuf()), */ _M_ok(_STLP_PRIV __init_bostr(__str))
218 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str) { argument
219 if (__str.good()) {
221 if (!__str.rdbuf())
222 __str.setstate(ios_base::badbit);
223 if (__str
[all...]
H A D_sstream.c402 ::basic_istringstream(const _String& __str,ios_base::openmode __mode) argument
404 _M_buf(__str, __mode | ios_base::in) {
425 ::basic_ostringstream(const _String& __str, ios_base::openmode __mode) argument
427 _M_buf(__str, __mode | ios_base::out) {
447 ::basic_stringstream(const _String& __str, ios_base::openmode __mode) argument
448 : basic_iostream<_CharT, _Traits>(0), _M_buf(__str, __mode) {
H A D_time_facets.c306 ios_base& __str, ios_base::iostate& __err,
316 __str, __err, __t);
330 ios_base& __str, ios_base::iostate& __err,
339 __str, __err, __t);
369 ios_base &__str, ios_base::iostate &__err,
386 ios_base &__str, ios_base::iostate &__err,
305 do_get_date(_InIt __s, _InIt __end, ios_base& __str, ios_base::iostate& __err, tm* __t) const argument
329 do_get_time(_InIt __s, _InIt __end, ios_base& __str, ios_base::iostate& __err, tm* __t) const argument
368 do_get_weekday(_InIt __s, _InIt __end, ios_base &__str, ios_base::iostate &__err, tm *__t) const argument
385 do_get_monthname(_InIt __s, _InIt __end, ios_base &__str, ios_base::iostate &__err, tm *__t) const argument
H A D_time_facets.h140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str, argument
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str, argument
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str, argument
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str, argument
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str, argument
154 { return do_get_year(__s, __end, __str, __er
[all...]
H A D_monetary.c123 ios_base& __str, ios_base::iostate& __err,
137 locale __loc = __str.getloc();
149 bool __symbol_required = (__str.flags() & ios_base::showbase) != 0;
280 ios_base& __str, ios_base::iostate& __err,
284 __s = _STLP_PRIV __money_do_get(__s, __end, __intl, __str, __err, __buf, __is_positive, (_CharT*)0);
305 ios_base& __str, ios_base::iostate& __err,
308 return _STLP_PRIV __money_do_get(__s, __end, __intl, __str, __err, __digits, __is_positive, (_CharT*)0);
316 _OutputIter __money_do_put(_OutputIter __s, bool __intl, ios_base& __str, argument
325 locale __loc = __str.getloc();
408 streamsize __width = __str
122 __money_do_get(_InputIter __s, _InputIter __end, bool __intl, ios_base& __str, ios_base::iostate& __err, _StrType& __digits, bool &__is_positive, _CharT* ) argument
279 do_get(_InputIter __s, _InputIter __end, bool __intl, ios_base& __str, ios_base::iostate& __err, _STLP_LONGEST_FLOAT_TYPE& __units) const argument
304 do_get(iter_type __s, iter_type __end, bool __intl, ios_base& __str, ios_base::iostate& __err, string_type& __digits) const argument
506 do_put(_OutputIter __s, bool __intl, ios_base& __str, char_type __fill, _STLP_LONGEST_FLOAT_TYPE __units) const argument
516 do_put(_OutputIter __s, bool __intl, ios_base& __str, char_type __fill, const string_type& __digits) const argument
[all...]
H A D_num_get.c247 __do_get_integer(_InputIter& __in_ite, _InputIter& __end, ios_base& __str, argument
249 locale __loc = __str.getloc();
258 const int __base_or_zero = __get_base_or_zero(__in_ite, __end, __str.flags(), __ctype);
427 __do_get_float(_InputIter& __in_ite, _InputIter& __end, ios_base& __str, argument
429 locale __loc = __str.getloc();
449 __do_get_alphabool(_InputIter& __in_ite, _InputIter& __end, ios_base& __str, argument
451 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__str.getloc());
523 num_get<_CharT, _InputIter>::do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, argument
525 { return _STLP_PRIV __do_get_integer(__in_ite, __end, __str, __err, __val, (_CharT*)0 ); }
529 num_get<_CharT, _InputIter>::do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, argument
537 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, long& __val) const argument
543 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, unsigned short& __val) const argument
550 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, unsigned int& __val) const argument
557 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, unsigned long& __val) const argument
564 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, float& __val) const argument
571 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, double& __val) const argument
579 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, long double& __val) const argument
587 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, void*& __p) const argument
604 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, _STLP_LONG_LONG& __val) const argument
611 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, ios_base::iostate& __err, unsigned _STLP_LONG_LONG& __val) const argument
[all...]
H A D_string.h1163 __get_c_string(const string& __str) { return __str.c_str(); } argument
/external/stlport/stlport/stl/debug/
H A D_string_sum_methods.h43 _Base& _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str) argument
44 { return __str += __c.getValue(); }
45 _Base& _M_append_fast(_CharT const* __s, size_type __s_size, _Base &__str) argument
46 { return __str.append(__s, __s_size); }
47 _Base& _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str) argument
48 { return _M_append_fast(__s.c_str(), __s.size(), __str); }
49 _Base& _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str) argument
50 { return _M_append_fast(__s.b_str(), __str); }
51 _Base& _M_append_fast(_Self const& __s, _Base &__str) argument
52 { return _M_append_fast(__s.data(), __s.size(), __str); }
53 _M_append_fast(_STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc> const&, _Base &__str) argument
56 _M_append_fast(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _Base &__str) argument
59 _M_append_fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str, size_type , size_type __n) argument
64 _M_append_fast_pos(_CharT const* __s, size_type __s_size, _Base &__str, size_type __pos, size_type __n) argument
67 _M_append_fast_pos(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str, size_type __pos, size_type __n) argument
70 _M_append_fast_pos(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str, size_type __pos, size_type __n) argument
73 _M_append_fast_pos(_Self const& __s, _Base &__str, size_type __pos, size_type __n) argument
75 _M_append_fast_pos(_STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc> const&, _Base &__str, size_type , size_type ) argument
80 _M_append_fast_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _Base &__str, size_type __pos, size_type __n) argument
[all...]

Completed in 174 milliseconds