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
100 NW_ASSERT( (! res.IsValid()) || ResDynamicCast<TDest>( res ).IsValid() ); in ResStaticCast()
101 return TDest( res.ptr() ); in ResStaticCast()
355 TResource res in SafeCleanup() argument
358 if (res.IsValid()) in SafeCleanup()
360 res.Cleanup(); in SafeCleanup()
373 void operator()(TObject res) const in operator()
375 SafeCleanup(res); in operator()