Lines Matching defs:ComplexValue
1505 struct ComplexValue { struct
1507 bool IsInt;
1510 APSInt IntReal, IntImag;
1511 APFloat FloatReal, FloatImag;
1513 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} in ComplexValue() function
1515 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1516 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1517 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1518 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1520 void makeComplexInt() { IsInt = true; } in makeComplexInt()
1521 bool isComplexInt() const { return IsInt; } in isComplexInt()
1522 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal()
1523 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag()
1525 void moveInto(APValue &v) const { in moveInto()
1531 void setFrom(const APValue &v) { in setFrom()