Home | History | Annotate | Download | only in Sema

Lines Matching refs:tcr

851   TryCastResult tcr = 
854 if (tcr != TC_Success && msg != 0)
870 } else if (tcr == TC_Success) {
915 TryCastResult tcr
918 if (tcr != TC_Success && msg != 0) {
932 } else if (tcr == TC_Success) {
970 TryCastResult tcr;
975 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle,
977 if (tcr != TC_NotApplicable)
978 return tcr;
983 tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind,
985 if (tcr != TC_NotApplicable)
986 return tcr;
990 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
994 if (tcr != TC_NotApplicable)
995 return tcr;
1045 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
1047 if (tcr != TC_NotApplicable)
1048 return tcr;
1053 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
1055 if (tcr != TC_NotApplicable)
1056 return tcr;
2237 TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType,
2241 if (tcr == TC_Success)
2247 if (tcr == TC_NotApplicable) {
2249 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange,
2254 if (tcr == TC_NotApplicable) {
2256 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true,
2263 if (Self.getLangOpts().ObjCAutoRefCount && tcr == TC_Success)
2266 if (tcr != TC_Success && msg != 0) {
2292 if (tcr != TC_Success)