Home | History | Annotate | Download | only in Sema

Lines Matching refs:tcr

699   TryCastResult tcr = 
702 if (tcr != TC_Success && msg != 0)
717 } else if (tcr == TC_Success && Self.getLangOpts().ObjCAutoRefCount) {
760 TryCastResult tcr
763 if (tcr != TC_Success && msg != 0) {
776 } else if (tcr == TC_Success) {
814 TryCastResult tcr;
819 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle,
821 if (tcr != TC_NotApplicable)
822 return tcr;
827 tcr
829 if (tcr != TC_NotApplicable)
830 return tcr;
834 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
838 if (tcr != TC_NotApplicable)
839 return tcr;
889 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
891 if (tcr != TC_NotApplicable)
892 return tcr;
897 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
899 if (tcr != TC_NotApplicable)
900 return tcr;
1878 TryCastResult tcr = TryConstCast(Self, SrcExpr.get(), DestType,
1880 if (tcr == TC_Success)
1886 if (tcr == TC_NotApplicable) {
1888 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange,
1893 if (tcr == TC_NotApplicable) {
1895 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true,
1902 if (Self.getLangOpts().ObjCAutoRefCount && tcr == TC_Success)
1905 if (tcr != TC_Success && msg != 0) {
1925 if (tcr != TC_Success)