Lines Matching refs:pTest
320 IClipboardTest* pTest = NULL; in getActiveChild() local
324 pTest = GetDescWin(); in getActiveChild()
327 pTest = GetEditorCtrl(); in getActiveChild()
332 return pTest; in getActiveChild()
337 IClipboardTest* pTest = getActiveChild(); in isCopyAllowed() local
338 return pTest && pTest->isCopyAllowed(); in isCopyAllowed()
343 IClipboardTest* pTest = getActiveChild(); in isCutAllowed() local
344 return pTest && pTest->isCutAllowed(); in isCutAllowed()
349 IClipboardTest* pTest = getActiveChild(); in isPasteAllowed() local
350 return pTest && pTest->isPasteAllowed(); in isPasteAllowed()
355 IClipboardTest* pTest = getActiveChild(); in copy() local
356 if ( pTest ) in copy()
357 pTest->copy(); in copy()
362 IClipboardTest* pTest = getActiveChild(); in cut() local
363 if ( pTest ) in cut()
364 pTest->cut(); in cut()
369 IClipboardTest* pTest = getActiveChild(); in paste() local
370 if ( pTest ) in paste()
371 pTest->paste(); in paste()