Lines Matching defs:ComplexValue
1562 struct ComplexValue { struct
1564 bool IsInt;
1567 APSInt IntReal, IntImag;
1568 APFloat FloatReal, FloatImag;
1570 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} in ComplexValue() function
1572 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1573 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1574 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1575 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1577 void makeComplexInt() { IsInt = true; } in makeComplexInt()
1578 bool isComplexInt() const { return IsInt; } in isComplexInt()
1579 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal()
1580 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag()
1582 void moveInto(APValue &v) const { in moveInto()
1588 void setFrom(const APValue &v) { in setFrom()