Lines Matching defs:ComplexValue
1567 struct ComplexValue { struct
1569 bool IsInt;
1572 APSInt IntReal, IntImag;
1573 APFloat FloatReal, FloatImag;
1575 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} in ComplexValue() argument
1577 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1578 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1579 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1580 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1582 void makeComplexInt() { IsInt = true; } in makeComplexInt()
1583 bool isComplexInt() const { return IsInt; } in isComplexInt()
1584 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal()
1585 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag()
1587 void moveInto(APValue &v) const { in moveInto()
1593 void setFrom(const APValue &v) { in setFrom()