Home
last modified time | relevance | path

Searched refs:IsEquals (Results 1 – 19 of 19) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_color_picker.cpp147 bool RSColorPicker::IsEquals(double val1, double val2) const in IsEquals() function in OHOS::Rosen::RSColorPicker
174 if (IsEquals(maxComponent, 0)) { in RGB2HSV()
186 if (IsEquals(r, maxComponent) && g >= b) { in RGB2HSV()
188 } else if (IsEquals(r, maxComponent) && g < b) { in RGB2HSV()
190 } else if (IsEquals(g, maxComponent)) { in RGB2HSV()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/color_picker/src/
H A Dcolor_picker.cpp657 bool ColorPicker::IsEquals(double val1, double val2) const in IsEquals() function in OHOS::Rosen::ColorPicker
684 if (IsEquals(maxComponent, 0)) { in RGB2HSV()
696 if (IsEquals(r, maxComponent) && g >= b) { in RGB2HSV()
698 } else if (IsEquals(r, maxComponent) && g < b) { in RGB2HSV()
700 } else if (IsEquals(g, maxComponent)) { in RGB2HSV()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H A Drs_color_picker.h49 bool IsEquals(double val1, double val2) const;
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dpending_want_key.cpp143 return requestWant_.IsEquals(otherWant); in IsEqualsRequestWant()
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/wantagent/include/
H A Dwant_agent_helper.h124 …static ErrCode IsEquals(const std::shared_ptr<WantAgent> &agent, const std::shared_ptr<WantAgent> …
H A Dpending_want.h206 static ErrCode IsEquals(
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/color_picker/include/
H A Dcolor_picker.h104 bool IsEquals(double val1, double val2) const;
/ohos5.0/foundation/ability/ability_runtime/test/unittest/pending_want_test/
H A Dpending_want_test.cpp457 EXPECT_NE(pendingWant->IsEquals(pendingWant, pendingWant2), ERR_OK);
470 EXPECT_NE(pendingWant->IsEquals(pendingWant, pendingWant2), ERR_OK);
677 EXPECT_EQ(pendingWant->IsEquals(pendingWant, pendingWant2), ERR_OK);
1275 …EXPECT_EQ(pendingWant->IsEquals(pendingWant, pendingWant2), ERR_ABILITY_RUNTIME_EXTERNAL_INVALID_W…
1301 EXPECT_EQ(pendingWant->IsEquals(pendingWant, pendingWant2), ERR_OK);
1330 EXPECT_EQ(pendingWant->IsEquals(pendingWant, pendingWant2), NOTEQ);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/render/
H A Drs_color_picker_test.cpp165 EXPECT_FALSE(picker->IsEquals(0.0, 1.0));
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/wantagent/src/
H A Dwant_agent_helper.cpp246 ErrCode WantAgentHelper::IsEquals( in IsEquals() function in OHOS::AbilityRuntime::WantAgent::WantAgentHelper
256 return PendingWant::IsEquals(agent->GetPendingWant(), otherAgent->GetPendingWant()); in IsEquals()
H A Dpending_want.cpp313 ErrCode PendingWant::IsEquals( in IsEquals() function in OHOS::AbilityRuntime::WantAgent::PendingWant
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rscolorpicker_fuzzer/
H A Drscolorpicker_fuzzer.cpp176 rsColorPicker->IsEquals(val1, val2); in DoIsEquals()
/ohos5.0/foundation/ability/ability_runtime/test/unittest/want_agent_helper_test/
H A Dwant_agent_helper_test.cpp585 ErrCode isEqual = wantAgentHelper->IsEquals(wantAgent, wantAgent2);
621 ErrCode isEqual = wantAgentHelper->IsEquals(wantAgent, wantAgent2);
648 ErrCode isEqual = wantAgentHelper->IsEquals(wantAgent, wantAgent2);
676 ErrCode isEqual = wantAgentHelper->IsEquals(wantAgent, wantAgent2);
/ohos5.0/base/print/print_fwk/test/unittest/fwk_inner_napi_test/
H A Dprint_utils_test.cpp408 EXPECT_EQ(want.IsEquals(preWant), true);
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/include/
H A Dwant.h776 bool IsEquals(const Want &want);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/ui_extension/
H A Dsecurity_ui_extension_pattern.cpp196 if (sessionWant->IsEquals(want)) { in UpdateWant()
H A Dui_extension_pattern.cpp342 if (sessionWant->IsEquals(want)) { in UpdateWant()
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/wantagent/
H A Dnapi_want_agent.cpp382 ErrCode retCode = WantAgentHelper::IsEquals(wantAgentFirst, wantAgentSecond); in OnEqual()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dwant.cpp1262 bool Want::IsEquals(const Want &want) in IsEquals() function in OHOS::AAFwk::Want