Lines Matching defs:ComplexValue
1508 struct ComplexValue { struct
1510 bool IsInt;
1513 APSInt IntReal, IntImag;
1514 APFloat FloatReal, FloatImag;
1516 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} in ComplexValue() argument
1518 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1519 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1520 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1521 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1523 void makeComplexInt() { IsInt = true; } in makeComplexInt()
1524 bool isComplexInt() const { return IsInt; } in isComplexInt()
1525 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal()
1526 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag()
1528 void moveInto(APValue &v) const { in moveInto()
1534 void setFrom(const APValue &v) { in setFrom()