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

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
  265     if ((FromTy->isIntegralOrEnumerationType() &&
  267         (FromTy->isAnyPointerType() ^ ToTy->isAnyPointerType()) ||
  268         (FromTy->isBlockPointerType() ^ ToTy->isBlockPointerType()) ||
  269         (FromTy->isReferenceType() ^ ToTy->isReferenceType())) {
  271       if (FromTy->isBooleanType()) {
  279         return FromTy->isSignedIntegerOrEnumerationType()
  290     if (FromTy->isRealFloatingType() && ToTy->isRealFloatingType()) {
  297     if (FromTy->isIntegralOrEnumerationType() && ToTy->isRealFloatingType()) {
  299       return FromTy->isSignedIntegerOrEnumerationType()
  304     if (FromTy->isRealFloatingType() && ToTy->isIntegralOrEnumerationType())