/base/print/print_fwk/frameworks/innerkitsimpl/src/ |
D | printer_info.cpp | 26 PrinterInfo::PrinterInfo(const PrinterInfo &right) in PrinterInfo() argument 28 printerId_ = right.printerId_; in PrinterInfo() 29 printerName_ = right.printerName_; in PrinterInfo() 30 printerState_ = right.printerState_; in PrinterInfo() 31 printerIcon_ = right.printerIcon_; in PrinterInfo() 32 description_ = right.description_; in PrinterInfo() 33 hasCapability_ = right.hasCapability_; in PrinterInfo() 34 capability_ = right.capability_; in PrinterInfo() 35 hasOption_ = right.hasOption_; in PrinterInfo() 36 option_= right.option_; in PrinterInfo() [all …]
|
D | print_job.cpp | 30 PrintJob::PrintJob(const PrintJob &right) in PrintJob() argument 33 fdList_.assign(right.fdList_.begin(), right.fdList_.end()); in PrintJob() 35 printerId_ = right.printerId_; in PrintJob() 36 jobId_ = right.jobId_; in PrintJob() 37 jobState_ = right.jobState_; in PrintJob() 38 subState_ = right.subState_; in PrintJob() 39 copyNumber_ = right.copyNumber_; in PrintJob() 40 pageRange_ = right.pageRange_; in PrintJob() 41 isSequential_ = right.isSequential_; in PrintJob() 42 pageSize_ = right.pageSize_; in PrintJob() [all …]
|
D | printer_capability.cpp | 29 PrinterCapability::PrinterCapability(const PrinterCapability &right) in PrinterCapability() argument 31 colorMode_ = right.colorMode_; in PrinterCapability() 32 duplexMode_ = right.duplexMode_; in PrinterCapability() 33 pageSizeList_.assign(right.pageSizeList_.begin(), right.pageSizeList_.end()); in PrinterCapability() 34 hasResolution_ = right.hasResolution_; in PrinterCapability() 35 resolutionList_.assign(right.resolutionList_.begin(), right.resolutionList_.end()); in PrinterCapability() 36 hasMargin_ = right.hasMargin_; in PrinterCapability() 37 minMargin_ = right.minMargin_; in PrinterCapability() 38 hasOption_ = right.hasOption_; in PrinterCapability() 39 option_= right.option_; in PrinterCapability() [all …]
|
D | print_range.cpp | 26 PrintRange::PrintRange(const PrintRange &right) in PrintRange() argument 28 hasStartPage_ = right.hasStartPage_; in PrintRange() 29 startPage_ = right.startPage_; in PrintRange() 30 hasEndPage_ = right.hasEndPage_; in PrintRange() 31 endPage_ = right.endPage_; in PrintRange() 32 hasPages_ = right.hasPages_; in PrintRange() 33 pages_.assign(right.pages_.begin(), right.pages_.end()); in PrintRange() 36 PrintRange &PrintRange::operator=(const PrintRange &right) in operator =() argument 38 if (this != &right) { in operator =() 39 hasStartPage_ = right.hasStartPage_; in operator =() [all …]
|
D | print_margin.cpp | 24 PrintMargin::PrintMargin(const PrintMargin &right) in PrintMargin() argument 26 Set(right); in PrintMargin() 29 void PrintMargin::Set(const PrintMargin &right) in Set() argument 31 hasTop_ = right.hasTop_; in Set() 32 top_ = right.top_; in Set() 33 hasBottom_ = right.hasBottom_; in Set() 34 bottom_ = right.bottom_; in Set() 35 hasLeft_ = right.hasLeft_; in Set() 36 left_ = right.left_; in Set() 37 hasRight_ = right.hasRight_; in Set() [all …]
|
D | print_extension_info.cpp | 24 PrintExtensionInfo::PrintExtensionInfo(const PrintExtensionInfo &right) in PrintExtensionInfo() argument 26 extensionId_ = right.extensionId_; in PrintExtensionInfo() 27 vendorId_ = right.vendorId_; in PrintExtensionInfo() 28 vendorName_ = right.vendorName_; in PrintExtensionInfo() 29 vendorIcon_ = right.vendorIcon_; in PrintExtensionInfo() 30 version_ = right.version_; in PrintExtensionInfo() 33 PrintExtensionInfo &PrintExtensionInfo::operator=(const PrintExtensionInfo &right) in operator =() argument 35 if (this != &right) { in operator =() 36 extensionId_ = right.extensionId_; in operator =() 37 vendorId_ = right.vendorId_; in operator =() [all …]
|
D | print_resolution.cpp | 23 PrintResolution::PrintResolution(const PrintResolution &right) in PrintResolution() argument 25 SetId(right.id_); in PrintResolution() 26 SetHorizontalDpi(right.horizontalDpi_); in PrintResolution() 27 SetVerticalDpi(right.verticalDpi_); in PrintResolution() 30 PrintResolution &PrintResolution::operator=(const PrintResolution &right) in operator =() argument 32 if (this != &right) { in operator =() 33 SetId(right.id_); in operator =() 34 SetHorizontalDpi(right.horizontalDpi_); in operator =() 35 SetVerticalDpi(right.verticalDpi_); in operator =()
|
D | print_preview_attribute.cpp | 25 PrintPreviewAttribute::PrintPreviewAttribute(const PrintPreviewAttribute &right) in PrintPreviewAttribute() argument 27 hasResult_ = right.hasResult_; in PrintPreviewAttribute() 28 result_ = right.result_; in PrintPreviewAttribute() 29 previewRange_ = right.previewRange_; in PrintPreviewAttribute() 32 PrintPreviewAttribute &PrintPreviewAttribute::operator=(const PrintPreviewAttribute &right) in operator =() argument 34 if (this != &right) { in operator =() 35 hasResult_ = right.hasResult_; in operator =() 36 result_ = right.result_; in operator =() 37 previewRange_ = right.previewRange_; in operator =()
|
D | print_page_size.cpp | 49 PrintPageSize::PrintPageSize(const PrintPageSize &right) in PrintPageSize() argument 51 id_ = right.id_; in PrintPageSize() 52 name_ = right.name_; in PrintPageSize() 53 width_ = right.width_; in PrintPageSize() 54 height_ = right.height_; in PrintPageSize() 57 PrintPageSize &PrintPageSize::operator=(const PrintPageSize &right) in operator =() argument 59 if (this != &right) { in operator =() 60 id_ = right.id_; in operator =() 61 name_ = right.name_; in operator =() 62 width_ = right.width_; in operator =() [all …]
|
/base/security/security_component_manager/interfaces/inner_api/security_component/include/ |
D | sec_comp_info.h | 35 DimensionT right = DEFAULT_DIMENSION; member 63 inline bool GreatOrEqual(double left, double right) in GreatOrEqual() argument 66 return (left - right) > epsilon; in GreatOrEqual() 69 inline bool GreatNotEqual(double left, double right) in GreatNotEqual() argument 72 return (left - right) > epsilon; in GreatNotEqual() 75 inline bool IsEqual(double left, double right) in IsEqual() argument 78 if (left > right) { in IsEqual() 79 return (left - right) < epsilon; in IsEqual() 80 } else if (right > left) { in IsEqual() 81 return (right - left) < epsilon; in IsEqual()
|
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/ |
D | rbtree.c | 70 n->right = NULL; in NewNode() 94 struct RbTreeNode *y = x->right; in LeftRotate() 95 x->right = y->left; in LeftRotate() 105 x->p->right = y; in LeftRotate() 114 x->left = y->right; in RightRotate() 115 if (y->right != t->nil) { in RightRotate() 116 y->right->p = x; in RightRotate() 121 } else if (x == x->p->right) { in RightRotate() 122 x->p->right = y; in RightRotate() 126 y->right = x; in RightRotate() [all …]
|
/base/security/device_security_level/baselib/msglib/src/common/ |
D | messenger_utils.h | 61 static inline bool IsSameDevice(const DeviceIdentify *left, const DeviceIdentify *right) in IsSameDevice() argument 63 if ((left == NULL) || (right == NULL)) { in IsSameDevice() 67 if (left->length != right->length) { in IsSameDevice() 71 if (memcmp(left->identity, right->identity, left->length) != 0) { in IsSameDevice()
|
/base/print/print_fwk/frameworks/innerkitsimpl/include/ |
D | print_margin.h | 26 PrintMargin(const PrintMargin &right); 28 void Set(const PrintMargin &right); 30 PrintMargin &operator=(const PrintMargin &right); 58 void SetRight(uint32_t right);
|
D | print_resolution.h | 27 PrintResolution(const PrintResolution &right); 29 PrintResolution &operator=(const PrintResolution &right);
|
D | print_range.h | 27 PrintRange(const PrintRange &right); 29 PrintRange &operator=(const PrintRange &right);
|
D | print_extension_info.h | 25 PrintExtensionInfo(const PrintExtensionInfo &right); 28 PrintExtensionInfo &operator=(const PrintExtensionInfo &right);
|
D | printer_capability.h | 31 PrinterCapability(const PrinterCapability &right); 33 PrinterCapability &operator=(const PrinterCapability &right);
|
D | printer_info.h | 27 PrinterInfo(const PrinterInfo &right); 29 PrinterInfo &operator=(const PrinterInfo &right);
|
/base/update/updater/services/script/script_interpreter/ |
D | script_expression.cpp | 47 UScriptExpression *right) in CreateExpression() argument 49 return new BinaryExpression(action, left, right); in CreateExpression() 124 UScriptValuePtr right; in Execute() local 137 right = right_->Execute(inter, local); in Execute() 139 if (left != nullptr && right != nullptr) { in Execute() 140 UScriptValuePtr value = left->Computer(action_, right); in Execute() 143 … UScriptValue::ScriptToString(right).c_str(), UScriptValue::ScriptToString(value).c_str()); in Execute()
|
/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/component/ |
D | confirmDialog.ets | 40 right: "32vp", 47 right: "32vp", 67 .margin({ left: "4vp" , right: "4vp"}) 84 right: "16vp",
|
/base/global/resource_management_lite/frameworks/resmgr_lite/src/utils/ |
D | utils.cpp | 207 bool Utils::StrCompare(const char *left, const char *right, size_t len, bool isCaseSensitive) in StrCompare() argument 209 if (left == nullptr && right == nullptr) { in StrCompare() 212 if (left == nullptr || right == nullptr) { in StrCompare() 220 c2 = (unsigned char)*right; in StrCompare() 236 ++right; in StrCompare()
|
/base/update/update_app/feature/ota/src/main/ets/dialog/ |
D | CountDownInstallDialogBuilder.ets | 120 right: '0vp' 138 right: $r('app.float.dialog_margin_horizontal') 156 right: '0vp', 166 right: $r('app.float.divider_margin') 180 right: $r('app.float.dialog_row_margin_horizontal')
|
/base/hiviewdfx/hidumper/services/native/src/ |
D | dump_manager_cpu_service.cpp | 487 …pManagerCpuService::SortProcInfo(std::shared_ptr<ProcInfo> &left, std::shared_ptr<ProcInfo> &right) in SortProcInfo() argument 489 if (right->totalUsage != left->totalUsage) { in SortProcInfo() 490 return right->totalUsage < left->totalUsage; in SortProcInfo() 492 if (right->userSpaceUsage != left->userSpaceUsage) { in SortProcInfo() 493 return right->userSpaceUsage < left->userSpaceUsage; in SortProcInfo() 495 if (right->sysSpaceUsage != left->sysSpaceUsage) { in SortProcInfo() 496 return right->sysSpaceUsage < left->sysSpaceUsage; in SortProcInfo() 498 if (right->pid.length() != left->pid.length()) { in SortProcInfo() 499 return right->pid.length() < left->pid.length(); in SortProcInfo() 501 return (right->pid.compare(left->pid) < 0); in SortProcInfo()
|
/base/customization/enterprise_device_management/test/unittest/test_bundle/right_hap/ |
D | BUILD.gn | 16 ohos_hap("right") { 18 hap_name = "right"
|
/base/msdp/device_status/services/native/include/ |
D | devicestatus_manager.h | 60 bool operator()(sptr<IRemoteDevStaCallback> left, sptr<IRemoteDevStaCallback> right) const in operator() 62 return left->AsObject() < right->AsObject(); in operator()
|