/base/update/updater/test/unittest/updater_ui_test/strategy/ |
H A D | ui_strategy_unittest.cpp | 24 bool operator == (const ComInfo &lhs, const ComInfo &rhs) in operator ==() argument 26 return lhs.comId == rhs.comId && lhs.pageId == rhs.pageId; in operator ==() 29 bool operator == (const ProgressPage &lhs, const ProgressPage &rhs) in operator ==() argument 31 return lhs.logoComId == rhs.logoComId && lhs.logoType == rhs.logoType && lhs.progressComId == rhs.progressComId && in operator ==() 32 lhs.progressPageId == rhs.progressPageId && lhs.progressType == rhs.progressType && in operator ==() 33 lhs.warningComId == rhs in operator ==() 36 operator ==(const ResPage &lhs, const ResPage &rhs) operator ==() argument 41 operator ==(const UiStrategyCfg &lhs, const UiStrategyCfg &rhs) operator ==() argument [all...] |
/base/update/updater/test/unittest/updater_ui_test/view/ |
H A D | ui_layout_unittest.cpp | 28 bool operator == (const UxViewCommonInfo &lhs, const UxViewCommonInfo &rhs) in operator ==() argument 31 std::tie(rhs.x, rhs.y, rhs.w, rhs.h, rhs.id, rhs.type, rhs.visible); in operator ==() 34 bool operator == (const UxBoxProgressInfo &lhs, const UxBoxProgressInfo &rhs) in operator ==() argument 37 std::tie(rhs in operator ==() 40 operator ==(const UxLabelInfo &lhs, const UxLabelInfo &rhs) operator ==() argument 46 operator ==(const UxImageInfo &lhs, const UxImageInfo &rhs) operator ==() argument 52 operator ==(const UxLabelBtnInfo &lhs, const UxLabelBtnInfo &rhs) operator ==() argument 58 operator ==(const UxViewInfo &lhs, const UxViewInfo &rhs) operator ==() argument [all...] |
/base/sensors/miscdevice/utils/common/include/ |
H A D | vibrator_infos.h | 61 bool operator<(const VibrateCurvePoint &rhs) const
in operator <() 63 return time < rhs.time;
in operator <() 71 bool operator<(const VibrateEvent &rhs) const
in operator <() 73 return time < rhs.time;
in operator <() 86 bool operator<(const VibratePattern &rhs) const
in operator <() 88 return startTime < rhs.startTime;
in operator <()
|
/base/update/updater/utils/json/ |
H A D | json_node.h | 70 bool operator==(T rhs) const in operator ==() 73 return *optPtr == rhs; in operator ==() 93 void operator=(T &&rhs) in operator =() argument 97 innerObj_ = Detail::OptStandardType<T>(rhs); in operator =() 100 *optPtr = Detail::OptStandardType<T>(rhs); in operator =() 103 << static_cast<int>(type_) << ", rhs is " << rhs; in operator =()
|
/base/security/certificate_framework/test/unittest/v1.0/src/ |
H A D | crypto_x509_certificate_test.cpp | 1287 /* CompareBigNum : CfBlob lhs and CfBlob rhs is NULL */ 1291 CfBlob rhs = { 0 }; in HWTEST_F() local 1294 rhs.data = (unsigned char *)"4567890123"; in HWTEST_F() 1295 rhs.size = 10; in HWTEST_F() 1299 rhs.data = nullptr; in HWTEST_F() 1300 CfResult ret = CompareBigNum(&lhs, &rhs, &out); in HWTEST_F() 1304 /* CompareBigNum : CfBlob lhs and CfBlob rhs is NULL */ 1308 CfBlob rhs = { 0 }; in HWTEST_F() local 1311 rhs.data = (unsigned char *)"4567890123"; in HWTEST_F() 1312 rhs in HWTEST_F() 1338 CfBlob rhs = { 0 }; HWTEST_F() local 1376 CfBlob rhs = { 0 }; HWTEST_F() local 1392 CfBlob rhs = { 0 }; HWTEST_F() local 1407 CfBlob rhs = { 0 }; HWTEST_F() local [all...] |
/base/hiviewdfx/hitrace/interfaces/rust/innerkits/hitracechain/src/ |
H A D | lib.rs | 56 fn bitor(self, rhs: Self) -> Self::Output { in bitor() 57 (self as i32) | (rhs as i32) in bitor()
|
/base/security/certificate_framework/frameworks/adapter/v1.0/src/ |
H A D | certificate_openssl_common.c | 240 CfResult CompareBigNum(const CfBlob *lhs, const CfBlob *rhs, int *out)
in CompareBigNum() argument 242 if ((lhs->data == NULL) || (lhs->size == 0) || (rhs->data == NULL) || (rhs->size == 0)) {
in CompareBigNum() 253 BIGNUM *rhsBigNum = BN_bin2bn(rhs->data, rhs->size, NULL);
in CompareBigNum()
|
/base/security/certificate_framework/frameworks/adapter/v1.0/inc/ |
H A D | certificate_openssl_common.h | 48 CfResult CompareBigNum(const CfBlob *lhs, const CfBlob *rhs, int *out);
|
/base/hiviewdfx/hiview/plugins/faultlogger/service/ |
H A D | faultlog_manager.cpp | 94 LogStoreEx::LogFileComparator comparator = [](const LogFile &lhs, const LogFile &rhs) { in Init() 96 FaultLogInfo rhsInfo = ExtractInfoFromFileName(rhs.name_); in Init()
|
/base/update/updater/test/unittest/utils/json/ |
H A D | utils_json_visitor_test.cpp | 73 bool operator==(const D &lhs, const D &rhs) in operator ==() argument 75 return lhs.d1 == rhs.d1 && lhs.d2 == rhs.d2 && lhs.d3 == rhs.d3; in operator ==()
|
/base/sensors/sensor/frameworks/js/napi/include/ |
H A D | sensor_napi_utils.h | 31 bool IsSameValue(const napi_env &env, const napi_value &lhs, const napi_value &rhs);
|
/base/hiviewdfx/faultloggerd/services/ |
H A D | fault_logger_daemon.cpp | 762 [](const std::string& lhs, const std::string& rhs) -> int { in RemoveTempFileIfNeed() 764 auto rhsSplitPos = rhs.find_last_of("-"); in RemoveTempFileIfNeed() 766 return lhs.compare(rhs) > 0; in RemoveTempFileIfNeed() 769 return lhs.substr(lhsSplitPos).compare(rhs.substr(rhsSplitPos)) > 0; in RemoveTempFileIfNeed()
|
/base/sensors/sensor/frameworks/js/napi/src/ |
H A D | sensor_napi_utils.cpp | 34 bool IsSameValue(const napi_env &env, const napi_value &lhs, const napi_value &rhs)
in IsSameValue() argument 38 CHKNRF(env, napi_strict_equals(env, lhs, rhs, &result), "napi_strict_equals");
in IsSameValue()
|
/base/hiviewdfx/hiview/plugins/eventlogger/ |
H A D | event_logger.cpp | 913 LogStoreEx::LogFileComparator comparator = [this](const LogFile &lhs, const LogFile &rhs) { in OnLoad() 914 return rhs < lhs; in OnLoad()
|