reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/ExprConstant.cpp
11522       bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
11522       bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
12212     return Success(C.getComplexIntReal(), E);
12237     return Success(LV.getComplexIntReal(), E);
12871       Result.getComplexIntReal() += RHS.getComplexIntReal();
12871       Result.getComplexIntReal() += RHS.getComplexIntReal();
12887       Result.getComplexIntReal() -= RHS.getComplexIntReal();
12887       Result.getComplexIntReal() -= RHS.getComplexIntReal();
12964       Result.getComplexIntReal() =
12965         (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
12965         (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
12968         (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
12969          LHS.getComplexIntImag() * RHS.getComplexIntReal());
13028       if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
13032       APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
13032       APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
13034       Result.getComplexIntReal() =
13035         (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
13035         (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
13038         (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
13039          LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
13066       Result.getComplexIntReal() = -Result.getComplexIntReal();
13066       Result.getComplexIntReal() = -Result.getComplexIntReal();