Lines Matching defs:property
127 void PasteData::SetProperty(const PasteDataProperty &property)
129 this->props_ = property;
610 PasteDataProperty::PasteDataProperty(const PasteDataProperty &property)
611 : tag(property.tag), timestamp(property.timestamp), localOnly(property.localOnly),
612 shareOption(property.shareOption), tokenId(property.tokenId), isRemote(property.isRemote),
613 bundleName(property.bundleName), setTime(property.setTime), screenStatus(property.screenStatus)
615 this->additions = property.additions;
616 std::copy(property.mimeTypes.begin(), property.mimeTypes.end(), std::back_inserter(this->mimeTypes));
624 PasteDataProperty &PasteDataProperty::operator=(const PasteDataProperty &property)
627 if (this == &property) {
630 this->tag = property.tag;
631 this->timestamp = property.timestamp;
632 this->localOnly = property.localOnly;
633 this->shareOption = property.shareOption;
634 this->tokenId = property.tokenId;
635 this->isRemote = property.isRemote;
636 this->bundleName = property.bundleName;
637 this->setTime = property.setTime;
638 this->screenStatus = property.screenStatus;
639 this->additions = property.additions;
641 std::copy(property.mimeTypes.begin(), property.mimeTypes.end(), std::back_inserter(this->mimeTypes));