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

References

tools/clang/lib/Sema/SemaCast.cpp
 1126   tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle,
 1128   if (tcr != TC_NotApplicable)
 1129     return tcr;
 1134   tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind,
 1136   if (tcr != TC_NotApplicable)
 1137     return tcr;
 1141   tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
 1145   if (tcr != TC_NotApplicable)
 1146     return tcr;
 1196   tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
 1198   if (tcr != TC_NotApplicable)
 1199     return tcr;
 1204   tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
 1206   if (tcr != TC_NotApplicable)
 1207     return tcr;