Lines Matching defs:ComplexValue
1028 struct ComplexValue { struct
1030 bool IsInt;
1033 APSInt IntReal, IntImag;
1034 APFloat FloatReal, FloatImag;
1036 ComplexValue() : FloatReal(APFloat::Bogus), FloatImag(APFloat::Bogus) {} in ComplexValue() argument
1038 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1039 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1040 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1041 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1043 void makeComplexInt() { IsInt = true; } in makeComplexInt()
1044 bool isComplexInt() const { return IsInt; } in isComplexInt()
1045 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal()
1046 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag()
1048 void moveInto(APValue &v) const { in moveInto()
1054 void setFrom(const APValue &v) { in setFrom()