Lines Matching refs:CopyHelper
56 class CopyHelper {
58 CopyHelper(const T& t) : t_(t) {} in CopyHelper() function
93 class CopyHelper<void*> {
95 CopyHelper(void* t) : t_(t) {} in CopyHelper() function
129 class CopyHelper<const wchar_t*> {
131 CopyHelper(const wchar_t* t) in CopyHelper() function
184 class CopyHelper<wchar_t*> : public CopyHelper<const wchar_t*> {
186 typedef CopyHelper<const wchar_t*> Base;
187 CopyHelper(wchar_t* t) : Base(t) {} in CopyHelper() function
211 class CopyHelper<const wchar_t[n]> : public CopyHelper<const wchar_t*> {
214 typedef CopyHelper<const wchar_t*> Base;
215 CopyHelper(array t) : Base(t) {} in CopyHelper() function
248 class CopyHelper<InOutCountedBuffer> {
250 CopyHelper(const InOutCountedBuffer t) : t_(t) {} in CopyHelper() function
299 CopyHelper<Par##num> ch##num(p##num); \