/external/stlport/stlport/stl/ |
D | _num_get.h | 64 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get() argument 66 { return do_get(__ii, __end, __str, __err, __val); } in get() 70 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get() argument 72 { return do_get(__ii, __end, __str, __err, __val); } in get() 74 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get() argument 76 { return do_get(__ii, __end, __str, __err, __val); } in get() 79 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get() argument 81 { return do_get(__ii, __end, __str, __err, __val); } in get() 83 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get() argument 85 { return do_get(__ii, __end, __str, __err, __val); } in get() [all …]
|
D | _num_get.c | 247 __do_get_integer(_InputIter& __in_ite, _InputIter& __end, ios_base& __str, in __do_get_integer() argument 249 locale __loc = __str.getloc(); in __do_get_integer() 258 const int __base_or_zero = __get_base_or_zero(__in_ite, __end, __str.flags(), __ctype); in __do_get_integer() 427 __do_get_float(_InputIter& __in_ite, _InputIter& __end, ios_base& __str, in __do_get_float() argument 429 locale __loc = __str.getloc(); in __do_get_float() 449 __do_get_alphabool(_InputIter& __in_ite, _InputIter& __end, ios_base& __str, in __do_get_alphabool() argument 451 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__str.getloc()); in __do_get_alphabool() 523 num_get<_CharT, _InputIter>::do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, in do_get() argument 525 { return _STLP_PRIV __do_get_integer(__in_ite, __end, __str, __err, __val, (_CharT*)0 ); } in do_get() 529 num_get<_CharT, _InputIter>::do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str, in do_get() argument [all …]
|
D | _monetary.c | 123 ios_base& __str, ios_base::iostate& __err, in __money_do_get() argument 137 locale __loc = __str.getloc(); in __money_do_get() 149 bool __symbol_required = (__str.flags() & ios_base::showbase) != 0; in __money_do_get() 280 ios_base& __str, ios_base::iostate& __err, in do_get() argument 284 …__s = _STLP_PRIV __money_do_get(__s, __end, __intl, __str, __err, __buf, __is_positive, (_CharT*)0… in do_get() 305 ios_base& __str, ios_base::iostate& __err, in do_get() argument 308 …return _STLP_PRIV __money_do_get(__s, __end, __intl, __str, __err, __digits, __is_positive, (_Char… in do_get() 316 _OutputIter __money_do_put(_OutputIter __s, bool __intl, ios_base& __str, in __money_do_put() argument 325 locale __loc = __str.getloc(); in __money_do_put() 408 streamsize __width = __str.width(); in __money_do_put() [all …]
|
D | _num_put.c | 74 __put_float(__iostring &__str, _OutputIter __oi, in __put_float() argument 81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point); in __put_float() 96 __put_float(__iostring &__str, _OutputIter __oi, in __put_float() argument 100 if ((__group_pos < __str.size()) && (__str[__group_pos] == '.')) { in __put_float() 101 __str[__group_pos] = __decimal_point; in __put_float() 105 __insert_grouping(__str, __group_pos, in __put_float() 109 return __copy_float_and_fill(__str.data(), __str.data() + __str.size(), __oi, in __put_float() 389 …basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np… in __do_put_bool() local 392 if (__str.size() >= __STATIC_CAST(size_t, __wid)) in __do_put_bool() 393 return _STLP_STD::copy(__str.begin(), __str.end(), __s); in __do_put_bool() [all …]
|
D | _time_facets.h | 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str, in get_time() argument 142 { return do_get_time(__s, __end, __str, __err, __t); } in get_time() 143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str, in get_date() argument 145 { return do_get_date(__s, __end, __str, __err, __t); } in get_date() 146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str, in get_weekday() argument 148 { return do_get_weekday(__s, __end, __str, __err, __t); } in get_weekday() 149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str, in get_monthname() argument 151 { return do_get_monthname(__s, __end, __str, __err, __t); } in get_monthname() 152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str, in get_year() argument 154 { return do_get_year(__s, __end, __str, __err, __t); } in get_year()
|
D | _ostream.h | 45 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str); 180 explicit sentry(basic_ostream<_CharT, _Traits>& __str) in sentry() argument 181 : _M_str(__str), /* _M_buf(__str.rdbuf()), */ _M_ok(_STLP_PRIV __init_bostr(__str)) in sentry() 218 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str) { in __init_bostr() argument 219 if (__str.good()) { in __init_bostr() 221 if (!__str.rdbuf()) in __init_bostr() 222 __str.setstate(ios_base::badbit); in __init_bostr() 223 if (__str.tie()) in __init_bostr() 224 __str.tie()->flush(); in __init_bostr() 225 return __str.good(); in __init_bostr()
|
D | _monetary.h | 62 ios_base& __str, ios_base::iostate& __err, in get() argument 64 { return do_get(__s, __end, __intl, __str, __err, __units); } in get() 66 ios_base& __str, ios_base::iostate& __err, in get() argument 68 { return do_get(__s, __end, __intl, __str, __err, __digits); } in get() 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, in put() argument 397 { return do_put(__s, __intl, __str, __fill, __units); } in put() 398 iter_type put(iter_type __s, bool __intl, ios_base& __str, in put() argument 401 { return do_put(__s, __intl, __str, __fill, __digits); } in put() [all …]
|
D | _stdexcept_base.c | 19 __Named_exception::__Named_exception(const string& __str) { in __Named_exception() argument 20 size_t __size = strlen(_STLP_PRIV __get_c_string(__str)) + 1; in __Named_exception() 35 strncpy(_M_name, _STLP_PRIV __get_c_string(__str), __size - 1); in __Named_exception() 38 strncpy_s(_M_name, __size, _STLP_PRIV __get_c_string(__str), __size - 1); in __Named_exception()
|
D | _sstream.h | 98 static _CharT* _S_start(const _String& __str) { return __CONST_CAST(_CharT*, __str.data()); } in _S_start() argument 99 …static _CharT* _S_finish(const _String& __str) { return __CONST_CAST(_CharT*, __str.data()) + __st… in _S_finish() argument 132 basic_istringstream(const _String& __str, 175 basic_ostringstream(const _String& __str, 221 basic_stringstream(const _String& __str,
|
D | _time_facets.c | 306 ios_base& __str, ios_base::iostate& __err, in do_get_date() argument 316 __str, __err, __t); in do_get_date() 330 ios_base& __str, ios_base::iostate& __err, in do_get_time() argument 339 __str, __err, __t); in do_get_time() 369 ios_base &__str, ios_base::iostate &__err, in do_get_weekday() argument 386 ios_base &__str, ios_base::iostate &__err, in do_get_monthname() argument
|
D | _sstream.c | 402 ::basic_istringstream(const _String& __str,ios_base::openmode __mode) in basic_istringstream() argument 404 _M_buf(__str, __mode | ios_base::in) { in basic_istringstream() 425 ::basic_ostringstream(const _String& __str, ios_base::openmode __mode) in basic_ostringstream() argument 427 _M_buf(__str, __mode | ios_base::out) { in basic_ostringstream() 447 ::basic_stringstream(const _String& __str, ios_base::openmode __mode) in basic_stringstream() argument 448 : basic_iostream<_CharT, _Traits>(0), _M_buf(__str, __mode) { in basic_stringstream()
|
D | _locale.h | 224 explicit locale(const char *__str) : _Locale(__str) {} in locale() argument 225 locale(const locale& __loc, const char* __str, category __cat) in locale() argument 226 : _Locale(__loc, __str, __cat) {} in locale()
|
D | _string_fwd.h | 50 const char* _STLP_CALL __get_c_string(const string& __str);
|
D | _stdexcept_base.h | 70 __Named_exception(const string& __str);
|
D | _rope.h | 2326 size_t operator()(const crope& __str) const { 2327 size_t _p_size = __str.size(); 2330 return 13*__str[0] + 5*__str[_p_size - 1] + _p_size; 2336 size_t operator()(const wrope& __str) const { 2337 size_t _p_size = __str.size(); 2340 return 13*__str[0] + 5*__str[_p_size - 1] + _p_size;
|
D | _string.c | 233 _Self __str(__n, __c); in assign() 234 this->swap(__str); in assign()
|
/external/stlport/stlport/stl/debug/ |
D | _string_sum_methods.h | 43 _Base& _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str) in _M_append_fast() argument 44 { return __str += __c.getValue(); } in _M_append_fast() 45 _Base& _M_append_fast(_CharT const* __s, size_type __s_size, _Base &__str) in _M_append_fast() argument 46 { return __str.append(__s, __s_size); } in _M_append_fast() 47 _Base& _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str) in _M_append_fast() argument 48 { return _M_append_fast(__s.c_str(), __s.size(), __str); } in _M_append_fast() 49 _Base& _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str) in _M_append_fast() argument 50 { return _M_append_fast(__s.b_str(), __str); } in _M_append_fast() 51 _Base& _M_append_fast(_Self const& __s, _Base &__str) in _M_append_fast() argument 52 { return _M_append_fast(__s.data(), __s.size(), __str); } in _M_append_fast() [all …]
|
/external/valgrind/main/none/tests/amd64/ |
D | bug156404-amd64.c | 14 #define VG_STRINGIFZ(__str) #__str argument 15 #define VG_STRINGIFY(__str) VG_STRINGIFZ(__str) argument
|
/external/valgrind/main/include/ |
D | pub_tool_basics.h | 286 #define VG_STRINGIFZ(__str) #__str argument 287 #define VG_STRINGIFY(__str) VG_STRINGIFZ(__str) argument
|
/external/valgrind/main/VEX/auxprogs/ |
D | genoffsets.c | 56 #define VG_STRINGIFZ(__str) #__str argument 57 #define VG_STRINGIFY(__str) VG_STRINGIFZ(__str) argument
|
/external/valgrind/main/VEX/priv/ |
D | main_util.h | 51 #define VG__STRING(__str) #__str argument
|
/external/llvm/test/CodeGen/Thumb2/ |
D | 2009-10-15-ITBlockBranch.ll | 12 …"* %this, %"struct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >"* %__str) { 19 …ct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >"* %__str) ; <i32> [#uses=3] 23 …ct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >"* %__str) ; <i8*> [#uses=1]
|
/external/clang/www/ |
D | libstdc++4.4-clang0x.patch | 498 __versa_string(__versa_string&& __str) 499 - : __vstring_base(std::forward<__vstring_base>(__str)) { } 500 + : __vstring_base(std::move(__str)) { }
|
/external/valgrind/main/none/tests/ppc32/ |
D | round.c | 75 #define STRING(__str) #__str argument
|
/external/valgrind/main/none/tests/ppc64/ |
D | round.c | 75 #define STRING(__str) #__str argument
|