Lines Matching refs:rCopier
96 FileCopier::FileCopier( const FileCopier& rCopier ) : in FileCopier() argument
98 aSource ( rCopier.aSource ), in FileCopier()
99 aTarget ( rCopier.aTarget ), in FileCopier()
102 aProgressLink ( rCopier.aProgressLink ), in FileCopier()
134 FileCopier& FileCopier::operator = ( const FileCopier &rCopier ) in operator =() argument
136 aSource = rCopier.aSource; in operator =()
137 aTarget = rCopier.aTarget; in operator =()
138 nBytesTotal = rCopier.nBytesTotal; in operator =()
139 nBytesCopied = rCopier.nBytesCopied; in operator =()
140 nBytesCopied = rCopier.nBytesCopied; in operator =()
141 nBlockSize = rCopier.nBlockSize; in operator =()
142 aProgressLink = rCopier.aProgressLink; in operator =()
143 *pImp = *(rCopier.pImp); in operator =()