Lines Matching defs:iterator_traits
524 struct iterator_traits<de::PoolArrayConstIterator<T, Alignment> > struct
526 typedef deIntptr difference_type;
527 typedef T value_type;
528 typedef const T* pointer;
529 typedef const T& reference;
530 typedef random_access_iterator_tag iterator_category;
534 struct iterator_traits<de::PoolArrayIterator<T, Alignment> > struct
536 typedef deIntptr difference_type;
537 typedef T value_type;
538 typedef T* pointer;
539 typedef T& reference;
540 typedef random_access_iterator_tag iterator_category;