Home
last modified time | relevance | path

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

/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_impl.h44 class graph_iterator {
56 graph_iterator(const graph_iterator& other) : in graph_iterator() function
61 graph_iterator& operator=(const graph_iterator& other) {
76 bool operator==(const graph_iterator& other) const {
86 graph_iterator& operator++() {
92 graph_iterator operator++(int) {
93 graph_iterator result = *this;
105 graph_iterator(GraphContainerType *g, bool begin);
304 friend class graph_iterator; variable
307 typedef graph_iterator<graph, graph_node> iterator;
[all …]
/oneTBB/include/oneapi/tbb/
H A Dflow_graph.h404 graph_iterator<C,N>::graph_iterator(C *g, bool begin) : my_graph(g), current_node(nullptr) in graph_iterator() function
411 typename graph_iterator<C,N>::reference graph_iterator<C,N>::operator*() const {
417 typename graph_iterator<C,N>::pointer graph_iterator<C,N>::operator->() const {
422 void graph_iterator<C,N>::internal_forward() { in internal_forward()