Lines Matching refs:res
72 ResDynamicCast( TBase res ) in ResDynamicCast() argument
74 if (!res.IsValid()) in ResDynamicCast()
79 if ((res.GetTypeInfo() & TDown::TYPE_INFO) == TDown::TYPE_INFO) in ResDynamicCast()
81 return TDown(res.ptr()); in ResDynamicCast()
97 ResStaticCast( TSrc res ) in ResStaticCast() argument
99 NW_ASSERT( (! res.IsValid()) || ResDynamicCast<TDest>( res ).IsValid() ); in ResStaticCast()
100 return TDest( res.ptr() ); in ResStaticCast()
354 TResource res in SafeCleanup() argument
357 if (res.IsValid()) in SafeCleanup()
359 res.Cleanup(); in SafeCleanup()
372 void operator()(TObject res) const in operator()
374 SafeCleanup(res); in operator()