Lines Matching refs:__it

311   _M_attach(_Safe_iterator_base* __it, bool __constant)  in _M_attach()  argument
314 _M_attach_single(__it, __constant); in _M_attach()
319 _M_attach_single(_Safe_iterator_base* __it, bool __constant) throw () in _M_attach_single() argument
323 __it->_M_next = __its; in _M_attach_single()
324 if (__it->_M_next) in _M_attach_single()
325 __it->_M_next->_M_prior = __it; in _M_attach_single()
326 __its = __it; in _M_attach_single()
331 _M_detach(_Safe_iterator_base* __it) in _M_detach() argument
335 _M_detach_single(__it); in _M_detach()
340 _M_detach_single(_Safe_iterator_base* __it) throw () in _M_detach_single() argument
343 __it->_M_unlink(); in _M_detach_single()
344 if (_M_const_iterators == __it) in _M_detach_single()
345 _M_const_iterators = __it->_M_next; in _M_detach_single()
346 if (_M_iterators == __it) in _M_detach_single()
347 _M_iterators = __it->_M_next; in _M_detach_single()
519 _M_attach_local(_Safe_iterator_base* __it, bool __constant) in _M_attach_local() argument
522 _M_attach_local_single(__it, __constant); in _M_attach_local()
527 _M_attach_local_single(_Safe_iterator_base* __it, bool __constant) throw () in _M_attach_local_single() argument
531 __it->_M_next = __its; in _M_attach_local_single()
532 if (__it->_M_next) in _M_attach_local_single()
533 __it->_M_next->_M_prior = __it; in _M_attach_local_single()
534 __its = __it; in _M_attach_local_single()
539 _M_detach_local(_Safe_iterator_base* __it) in _M_detach_local() argument
543 _M_detach_local_single(__it); in _M_detach_local()
548 _M_detach_local_single(_Safe_iterator_base* __it) throw () in _M_detach_local_single() argument
551 __it->_M_unlink(); in _M_detach_local_single()
552 if (_M_const_local_iterators == __it) in _M_detach_local_single()
553 _M_const_local_iterators = __it->_M_next; in _M_detach_local_single()
554 if (_M_local_iterators == __it) in _M_detach_local_single()
555 _M_local_iterators = __it->_M_next; in _M_detach_local_single()