HomeSort by relevance Sort by last modified time
    Searched full:__str (Results 101 - 125 of 416) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
basic_string.h 453 * @param __str Source string.
455 basic_string(const basic_string& __str);
458 * @param __str Source string.
462 basic_string(const basic_string& __str, size_type __pos,
466 * @param __str Source string.
471 basic_string(const basic_string& __str, size_type __pos,
502 * @param __str Source string.
504 * The newly-created string contains the exact contents of @a __str.
505 * @a __str is a valid, but unspecified string.
507 basic_string(basic_string&& __str) noexcep
    [all...]
  /external/libcxx/include/
string     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
string     [all...]
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
string     [all...]
  /external/stlport/stlport/stl/
_num_get.c 250 __do_get_integer(_InputIter& __in_ite, _InputIter& __end, ios_base& __str,
252 locale __loc = __str.getloc();
261 const int __base_or_zero = __get_base_or_zero(__in_ite, __end, __str.flags(), __ctype);
430 __do_get_float(_InputIter& __in_ite, _InputIter& __end, ios_base& __str,
432 locale __loc = __str.getloc();
452 __do_get_alphabool(_InputIter& __in_ite, _InputIter& __end, ios_base& __str,
454 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__str.getloc());
526 num_get<_CharT, _InputIter>::do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str,
528 { return _STLP_PRIV __do_get_integer(__in_ite, __end, __str, __err, __val, (_CharT*)0 ); }
532 num_get<_CharT, _InputIter>::do_get(_InputIter __in_ite, _InputIter __end, ios_base& __str,
    [all...]
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 74 __put_float(__iostring &__str, _OutputIter __oi,
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi,
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.size(), __oi
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
    [all...]
_monetary.h 62 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,
397 { return do_put(__s, __intl, __str, __fill, __units); }
398 iter_type put(iter_type __s, bool __intl, ios_base& __str,
401 { return do_put(__s, __intl, __str, __fill, __digits);
    [all...]
_ostream.h 45 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str);
180 explicit sentry(basic_ostream<_CharT, _Traits>& __str)
181 : _M_str(__str), /* _M_buf(__str.rdbuf()), */ _M_ok(_STLP_PRIV __init_bostr(__str))
218 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str) {
219 if (__str.good()) {
221 if (!__str.rdbuf())
222 __str.setstate(ios_base::badbit);
223 if (__str.tie()
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 74 __put_float(__iostring &__str, _OutputIter __oi,
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi,
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.size(), __oi
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
    [all...]
_monetary.h 62 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,
397 { return do_put(__s, __intl, __str, __fill, __units); }
398 iter_type put(iter_type __s, bool __intl, ios_base& __str,
401 { return do_put(__s, __intl, __str, __fill, __digits);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 74 __put_float(__iostring &__str, _OutputIter __oi,
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi,
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.size(), __oi
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 74 __put_float(__iostring &__str, _OutputIter __oi,
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi,
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.size(), __oi
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 74 __put_float(__iostring &__str, _OutputIter __oi,
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi,
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.size(), __oi
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 74 __put_float(__iostring &__str, _OutputIter __oi,
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi,
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.size(), __oi
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 74 __put_float(__iostring &__str, _OutputIter __oi,
81 __convert_float_buffer(__str, __wbuf, __ct, __decimal_point);
96 __put_float(__iostring &__str, _OutputIter __oi,
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.size(), __oi
389 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __x ? __np.truename() : __np.falsename(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
basic_string.h 450 basic_string(const basic_string& __str);
457 basic_string(const basic_string& __str, size_type __pos,
466 basic_string(const basic_string& __str, size_type __pos,
502 basic_string(basic_string&& __str)
503 : _M_dataplus(__str._M_dataplus)
506 __str._M_data(_S_empty_rep()._M_refdata());
508 __str._M_data(_S_construct(size_type(), _CharT(), get_allocator()));
541 operator=(const basic_string& __str)
542 { return this->assign(__str); }
575 operator=(basic_string&& __str)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_string.h 450 basic_string(const basic_string& __str);
457 basic_string(const basic_string& __str, size_type __pos,
466 basic_string(const basic_string& __str, size_type __pos,
502 basic_string(basic_string&& __str)
503 : _M_dataplus(__str._M_dataplus)
506 __str._M_data(_S_empty_rep()._M_refdata());
508 __str._M_data(_S_construct(size_type(), _CharT(), get_allocator()));
541 operator=(const basic_string& __str)
542 { return this->assign(__str); }
575 operator=(basic_string&& __str)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_string.h 450 basic_string(const basic_string& __str);
457 basic_string(const basic_string& __str, size_type __pos,
466 basic_string(const basic_string& __str, size_type __pos,
502 basic_string(basic_string&& __str)
503 : _M_dataplus(__str._M_dataplus)
506 __str._M_data(_S_empty_rep()._M_refdata());
508 __str._M_data(_S_construct(size_type(), _CharT(), get_allocator()));
541 operator=(const basic_string& __str)
542 { return this->assign(__str); }
575 operator=(basic_string&& __str)
    [all...]

Completed in 1672 milliseconds

1 2 3 45 6 7 8 91011>>