Lines Matching defs:other
143 bool ConstValueRangeAccess::intersects (const ConstValueRangeAccess& other) const
145 return compareValueRangesAllTrue<CompareIntersection>(*this, other);
148 bool ConstValueRangeAccess::isSubsetOf (const ConstValueRangeAccess& other) const
150 return compareValueRangesAllTrue<CompareIsSubsetOf>(*this, other);
153 bool ConstValueRangeAccess::isSupersetOf (const ConstValueRangeAccess& other) const
155 return other.isSubsetOf(*this);
183 ValueRange::ValueRange (ConstValueRangeAccess other)
184 : m_type (other.getType())
185 , m_min (other.getType().getScalarSize())
186 , m_max (other.getType().getScalarSize())
188 getMin() = other.getMin().value();
189 getMax() = other.getMax().value();
269 VariableValue::VariableValue (const VariableValue& other)
270 : m_variable(other.m_variable)
271 , m_storage(other.m_variable->getType())
273 m_storage.getValue(getType()) = other.getValue().value();
276 VariableValue& VariableValue::operator= (const VariableValue& other)
278 m_variable = other.m_variable;
280 m_storage.getValue(getType()) = other.getValue().value();