Lines Matching refs:other
48 bool set_intersect(ValueSet* other);
49 void set_union(ValueSet* other);
51 void set_from(ValueSet* other);
52 bool equals (ValueSet* other);
82 inline bool ValueSet::set_intersect(ValueSet* other) {
83 return _map.set_intersection_with_result(other->_map);
87 inline void ValueSet::set_union(ValueSet* other) {
88 _map.set_union(other->_map);
96 inline void ValueSet::set_from(ValueSet* other) {
97 _map.set_from(other->_map);
100 inline bool ValueSet::equals(ValueSet* other) {
101 return _map.is_same(other->_map);