Home
last modified time | relevance | path

Searched refs:NeighborIter (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/graph/
Dgraph.h70 class NeighborIter; // Declared below variable
145 gtl::iterator_range<NeighborIter> in_nodes() const;
146 gtl::iterator_range<NeighborIter> out_nodes() const;
866 class NeighborIter
870 NeighborIter(EdgeSet::const_iterator iter, bool incoming);
871 bool operator==(const NeighborIter& rhs) const;
872 bool operator!=(const NeighborIter& rhs) const;
910 inline NeighborIter::NeighborIter(EdgeSet::const_iterator iter, bool incoming) in NeighborIter() function
913 inline bool NeighborIter::operator==(const NeighborIter& rhs) const {
917 inline bool NeighborIter::operator!=(const NeighborIter& rhs) const {
[all …]
Dgraph.cc197 gtl::iterator_range<NeighborIter> Node::out_nodes() const { in out_nodes()
198 return gtl::make_range(NeighborIter(out_edges_.begin(), false), in out_nodes()
199 NeighborIter(out_edges_.end(), false)); in out_nodes()
202 gtl::iterator_range<NeighborIter> Node::in_nodes() const { in in_nodes()
203 return gtl::make_range(NeighborIter(in_edges_.begin(), true), in in_nodes()
204 NeighborIter(in_edges_.end(), true)); in in_nodes()