Lines Matching refs:that
31 FileInfo::FileInfo(const FileInfo& that) in FileInfo() argument
33 memcpy(this, &that, sizeof(FileInfo)); in FileInfo()
51 FileInfo::operator==(const FileInfo& that) const in operator ==()
53 return exists == that.exists in operator ==()
54 && mtime == that.mtime in operator ==()
55 && ctime == that.ctime in operator ==()
56 && size == that.size; in operator ==()
60 FileInfo::operator!=(const FileInfo& that) const in operator !=()
62 return exists != that.exists in operator !=()
63 || mtime != that.mtime in operator !=()
64 || ctime != that.ctime in operator !=()
65 || size != that.size; in operator !=()
78 TrackedFile::TrackedFile(const TrackedFile& that) in TrackedFile() argument
80 filename = that.filename; in TrackedFile()
81 fileInfo = that.fileInfo; in TrackedFile()