Lines Matching refs:other
44 bool operator==(const NodeSubset &other) const {
45 return other.Elements == this->Elements;
47 bool operator!=(const NodeSubset &other) const {
48 return !(*this == other);
75 bool isSubsetOf(const NodeSubset &other) const {
76 return (this->Elements | other.Elements) == other.Elements;
85 NodeSubset Join(const NodeSubset &other) const {
86 return this->Elements | other.Elements;
90 NodeSubset Meet(const NodeSubset &other) const {
91 return this->Elements & other.Elements;
174 ChildIterator(const ChildIterator& other) : FirstNode(other.FirstNode),
175 Children(other.Children) {}
178 bool operator==(const ChildIterator &other) const {
179 return other.FirstNode == this->FirstNode &&
180 other.Children == this->Children;
182 bool operator!=(const ChildIterator &other) const {
183 return !(*this == other);
288 // Check that every node in the SCC is reachable from every other node in
295 // other, this means that the set of nodes reachable from any node in the
309 // The result must be the same for all other nodes in this SCC, so
315 // reachable from every other.
332 // The result must be the same for all other nodes in this SCC, so