Lines Matching refs:Container
371 template <typename Container, typename Value>
373 using map_type = Container;
374 using node = typename Container::node;
375 using map_base = typename Container::base_type;
380 using size_type = typename Container::size_type;
381 using difference_type = typename Container::difference_type;
388 hash_map_iterator( const hash_map_iterator<Container, typename Container::value_type>& other ) : in hash_map_iterator() argument
395 …hash_map_iterator& operator=( const hash_map_iterator<Container, typename Container::value_type>& …
469 hash_map_iterator( const Container &map, std::size_t index, const bucket *b, node_base *n ) : in hash_map_iterator()
477 const Container *my_map;
486 template <typename Container, typename T, typename U>
487 bool operator==( const hash_map_iterator<Container,T>& i, const hash_map_iterator<Container,U>& j )…
491 template <typename Container, typename T, typename U>
492 bool operator!=( const hash_map_iterator<Container,T>& i, const hash_map_iterator<Container,U>& j )…
591 template <typename Container, typename Value> in __TBB_requires()