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

References

tools/clang/lib/Sema/SemaTemplate.cpp
 6638       Arg = VerifyIntegerConstantExpression(Arg, &Value, Diagnoser,
 6682       Value = Value != 0;
 6682       Value = Value != 0;
 6684       if (Value.getBitWidth() != AllowedBits)
 6685         Value = Value.extOrTrunc(AllowedBits);
 6685         Value = Value.extOrTrunc(AllowedBits);
 6686       Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
 6688       llvm::APSInt OldValue = Value;
 6693       if (Value.getBitWidth() != AllowedBits)
 6694         Value = Value.extOrTrunc(AllowedBits);
 6694         Value = Value.extOrTrunc(AllowedBits);
 6695       Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
 6701             << OldValue.toString(10) << Value.toString(10) << Param->getType()
 6716             << OldValue.toString(10) << Value.toString(10) << Param->getType()
 6722     Converted = TemplateArgument(Context, Value,