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

References

tools/clang/lib/AST/ExprConstant.cpp
 3983     if (Old) *Old = APValue(Value);
 3989         Value = 1;
 3991         Value = !Value;
 3991         Value = !Value;
 3995     bool WasNegative = Value.isNegative();
 3997       ++Value;
 3999       if (!WasNegative && Value.isNegative() && E->canOverflow()) {
 4000         APSInt ActualValue(Value, /*IsUnsigned*/true);
 4004       --Value;
 4006       if (WasNegative && !Value.isNegative() && E->canOverflow()) {
 4007         unsigned BitWidth = Value.getBitWidth();
 4008         APSInt ActualValue(Value.sext(BitWidth + 1), /*IsUnsigned*/false);