Lines Matching defs:ComplexValue
1509 struct ComplexValue { struct
1511 bool IsInt;
1514 APSInt IntReal, IntImag;
1515 APFloat FloatReal, FloatImag;
1517 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} in ComplexValue() function
1519 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1520 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1521 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1522 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1524 void makeComplexInt() { IsInt = true; } in makeComplexInt()
1525 bool isComplexInt() const { return IsInt; } in isComplexInt()
1526 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal()
1527 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag()
1529 void moveInto(APValue &v) const { in moveInto()
1535 void setFrom(const APValue &v) { in setFrom()