Lines Matching defs:iterator_traits
533 struct iterator_traits<de::PoolArrayConstIterator<T, Alignment> > struct
535 typedef deIntptr difference_type;
536 typedef T value_type;
537 typedef const T* pointer;
538 typedef const T& reference;
539 typedef random_access_iterator_tag iterator_category;
543 struct iterator_traits<de::PoolArrayIterator<T, Alignment> > struct
545 typedef deIntptr difference_type;
546 typedef T value_type;
547 typedef T* pointer;
548 typedef T& reference;
549 typedef random_access_iterator_tag iterator_category;