Lines Matching refs:res
74 ResDynamicCast( TBase res ) in ResDynamicCast() argument
76 if (!res.IsValid()) in ResDynamicCast()
81 if ((res.GetTypeInfo() & TDown::TYPE_INFO) == TDown::TYPE_INFO) in ResDynamicCast()
83 return TDown(res.ptr()); in ResDynamicCast()
99 ResStaticCast( TSrc res ) in ResStaticCast() argument
102 NW_ASSERT( (! res.IsValid()) || ResDynamicCast<TDest>( res ).IsValid() ); in ResStaticCast()
103 return TDest( res.ptr() ); in ResStaticCast()
357 TResource res in SafeCleanup() argument
360 if (res.IsValid()) in SafeCleanup()
362 res.Cleanup(); in SafeCleanup()
375 void operator()(TObject res) const in operator()
377 SafeCleanup(res); in operator()