Lines Matching refs:pTest
379 IClipboardTest* pTest = NULL; in getActiveChild() local
381 pTest = getDetailView(); in getActiveChild()
382 return pTest; in getActiveChild()
387 IClipboardTest* pTest = getActiveChild(); in isCopyAllowed() local
388 return pTest && pTest->isCopyAllowed(); in isCopyAllowed()
393 IClipboardTest* pTest = getActiveChild(); in isCutAllowed() local
394 return pTest && pTest->isCutAllowed(); in isCutAllowed()
399 IClipboardTest* pTest = getActiveChild(); in isPasteAllowed() local
400 return pTest && pTest->isPasteAllowed(); in isPasteAllowed()
405 IClipboardTest* pTest = getActiveChild(); in copy() local
406 if ( pTest ) in copy()
407 pTest->copy(); in copy()
412 IClipboardTest* pTest = getActiveChild(); in cut() local
413 if ( pTest ) in cut()
414 pTest->cut(); in cut()
419 IClipboardTest* pTest = getActiveChild(); in paste() local
420 if ( pTest ) in paste()
421 pTest->paste(); in paste()