Home
last modified time | relevance | path

Searched refs:_STLP_DEFAULT_CONSTRUCTED (Results 1 – 25 of 25) sorted by relevance

/external/stlport/stlport/stl/pointers/
D_deque.h165 explicit deque(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
267 void push_back(const value_type& __t = _STLP_DEFAULT_CONSTRUCTED(value_type))
274 void push_front(const value_type& __t = _STLP_DEFAULT_CONSTRUCTED(value_type))
289 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
297 iterator insert(iterator __pos) { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(value_type)); }
352 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
D_vector.h110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
169 void push_back(const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
176 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
218 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
D_slist.h91 explicit slist(size_type __n, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type),
208 void push_front(const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
226 …iterator insert_after(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type…
287 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
353 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
D_list.h96 explicit list(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
180 iterator insert(iterator __pos, const_reference __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
243 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type))
/external/stlport/stlport/stl/
D_vector.h87 if (_M_start != _STLP_DEFAULT_CONSTRUCTED(pointer)) in ~_Vector_base()
227 void _M_initialize(size_type __n, const _Tp& __val = _STLP_DEFAULT_CONSTRUCTED(_Tp))
237 …_M_finish = _STLP_PRIV __uninitialized_init(this->_M_start, __n, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } in vector()
376 void push_back(const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
391 iterator insert(iterator __pos, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp));
397 void push_back() { push_back(_STLP_DEFAULT_CONSTRUCTED(_Tp)); }
398 iterator insert(iterator __pos) { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
636 void resize(size_type __new_size, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
647 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
D_deque.h492 void _M_initialize(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
505 _M_fill_initialize(_STLP_DEFAULT_CONSTRUCTED(_Tp), _TrivialInit());
668 void push_back(const value_type& __t = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
680 void push_front(const value_type& __t = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
730 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
754 { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
812 const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
825 { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
Dchar_traits.h55 #define _STLP_NULL_CHAR_INIT(_ChT) _STLP_DEFAULT_CONSTRUCTED(_ChT)
154 const char_type _NullChar = _STLP_DEFAULT_CONSTRUCTED(char_type); in length()
D_construct.h263 # define _STLP_DEFAULT_CONSTRUCTED(_TTp) __default_constructed((_TTp*)0) macro
265 # define _STLP_DEFAULT_CONSTRUCTED(_TTp) _TTp() macro
D_slist.h289 explicit slist(size_type __n, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp),
294 { _M_insert_after_fill(&this->_M_head._M_data, __n, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
610 return insert_after(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp));
646 _STLP_DEFAULT_CONSTRUCTED(_Tp)));
688 void resize(size_type new_size) { resize(new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
D_list.h306 explicit list(size_type __n, const_reference __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
311 { this->insert(begin(), __n, _STLP_DEFAULT_CONSTRUCTED(value_type)); }
513 { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(value_type)); }
540 { this->resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(value_type)); }
D_fstream.c56 _M_state(_STLP_DEFAULT_CONSTRUCTED(_State_type)), in basic_filebuf()
57 _M_end_state(_STLP_DEFAULT_CONSTRUCTED(_State_type)), in basic_filebuf()
D_istream.c618 *__s = _STLP_DEFAULT_CONSTRUCTED(_CharT); in __read_unbuffered()
623 *__s = _STLP_DEFAULT_CONSTRUCTED(_CharT); in __read_unbuffered()
702 *__s = _STLP_DEFAULT_CONSTRUCTED(_CharT); in __read_buffered()
D_ostream.h366 __os.put(_STLP_DEFAULT_CONSTRUCTED(_CharT)); in ends()
D_rope.c994 __buffer[__prefix->_M_size._M_data] = _STLP_DEFAULT_CONSTRUCTED(_CharT); in _S_dump()
1313 _S_empty_c_str[0] = _STLP_DEFAULT_CONSTRUCTED(_CharT); in c_str()
1337 _S_empty_c_str[0] = _STLP_DEFAULT_CONSTRUCTED(_CharT); in replace_with_c_str()
D_map.h179 __i = insert(__i, value_type(__k, _STLP_DEFAULT_CONSTRUCTED(_Tp))); in _STLP_CREATE_ITERATOR_TRAITS()
D_unordered_map.h156 _M_ht._M_insert(value_type(__key, _STLP_DEFAULT_CONSTRUCTED(_Tp))).second : in _STLP_CREATE_HASH_ITERATOR_TRAITS()
D_hash_map.h203 _M_ht._M_insert(value_type(__key, _STLP_DEFAULT_CONSTRUCTED(_Tp))).second : in _STLP_CREATE_HASH_ITERATOR_TRAITS()
D_valarray.h101 { uninitialized_fill_n(this->_M_first, this->_M_size, _STLP_DEFAULT_CONSTRUCTED(value_type)); } in valarray()
125 { uninitialized_fill_n(this->_M_first, this->_M_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } in _M_initialize()
D_string.h363 { return _STLP_DEFAULT_CONSTRUCTED(_CharT); } in _M_null()
/external/stlport/stlport/stl/debug/
D_vector.h285 { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
359 void resize(size_type __new_size, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
373 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
D_slist.h249 return insert_after(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); in insert_after()
340 return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); in insert()
390 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } in resize()
D_list.h215 iterator insert(iterator __pos) { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } in insert()
304 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } in resize()
D_deque.h369 void resize(size_type new_size) { resize(new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } in resize()
D_string.h205 void resize(size_type __n) { resize(__n, _STLP_DEFAULT_CONSTRUCTED(_CharT)); } in resize()
/external/stlport/etc/
DChangeLog-5.17532 * _string.h : _M_null expressed via _STLP_DEFAULT_CONSTRUCTED (Thanks Anthony)