Home | History | Annotate | Download | only in AST

Lines Matching refs:Imag

427     void addComplexUnchecked(QualType EltTy, bool Imag) {
428 Entries.push_back(PathEntry::ArrayIndex(Imag));
1678 void addComplex(EvalInfo &Info, const Expr *E, QualType EltTy, bool Imag) {
1679 if (checkSubobject(Info, E, Imag ? CSK_Imag : CSK_Real))
1680 Designator.addComplexUnchecked(EltTy, Imag);
3199 /// \param Imag - False for the real component, true for the imaginary.
3202 bool Imag) {
3203 if (Imag) {
3209 LVal.addComplex(Info, E, EltTy, Imag);
13853 APFloat &Imag = Result.FloatImag;
13854 if (!EvaluateFloat(SubExpr, Imag, Info))
13857 Result.FloatReal = APFloat(Imag.getSemantics());
13864 APSInt &Imag = Result.IntImag;
13865 if (!EvaluateInteger(SubExpr, Imag, Info))
13868 Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());