Lines Matching refs:tcr
1202 TryCastResult tcr = in CheckReinterpretCast() local
1205 if (tcr != TC_Success && msg != 0) { in CheckReinterpretCast()
1221 if (isValidCast(tcr)) { in CheckReinterpretCast()
1274 TryCastResult tcr = in CheckStaticCast() local
1277 if (tcr != TC_Success && msg != 0) { in CheckStaticCast()
1292 if (isValidCast(tcr)) { in CheckStaticCast()
1340 TryCastResult tcr; in TryStaticCast() local
1345 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle, in TryStaticCast()
1347 if (tcr != TC_NotApplicable) in TryStaticCast()
1348 return tcr; in TryStaticCast()
1353 tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind, in TryStaticCast()
1355 if (tcr != TC_NotApplicable) in TryStaticCast()
1356 return tcr; in TryStaticCast()
1360 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg, in TryStaticCast()
1364 if (tcr != TC_NotApplicable) in TryStaticCast()
1365 return tcr; in TryStaticCast()
1428 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg, in TryStaticCast()
1430 if (tcr != TC_NotApplicable) in TryStaticCast()
1431 return tcr; in TryStaticCast()
1436 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle, in TryStaticCast()
1438 if (tcr != TC_NotApplicable) in TryStaticCast()
1439 return tcr; in TryStaticCast()
2807 TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType, in CheckCXXCStyleCast() local
2811 if (isValidCast(tcr)) in CheckCXXCStyleCast()
2817 if (tcr == TC_NotApplicable) { in CheckCXXCStyleCast()
2818 tcr = TryAddressSpaceCast(Self, SrcExpr, DestType, /*CStyle*/ true, msg, in CheckCXXCStyleCast()
2823 if (tcr == TC_NotApplicable) { in CheckCXXCStyleCast()
2826 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, msg, Kind, in CheckCXXCStyleCast()
2831 if (tcr == TC_NotApplicable) { in CheckCXXCStyleCast()
2833 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/ true, in CheckCXXCStyleCast()
2842 isValidCast(tcr)) in CheckCXXCStyleCast()
2845 if (tcr != TC_Success && msg != 0) { in CheckCXXCStyleCast()
2868 if (isValidCast(tcr)) { in CheckCXXCStyleCast()