/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | data_panel_composed_element.cpp | 26 { "max", [](const DataPanelComposedElement& inspector) { return inspector.GetMax(); } }, 41 DumpLog::GetInstance().AddDesc(std::string("max: ").append(GetMax())); in Dump() 74 std::string DataPanelComposedElement::GetMax() const in GetMax() function in OHOS::Ace::V2::DataPanelComposedElement
|
H A D | slider_composed_element.cpp | 43 DumpLog::GetInstance().AddDesc(std::string("max: ").append(GetMax())); in Dump() 72 jsonValue->Put("max", GetMax().c_str()); in GetConstructor() 104 std::string SliderComposedElement::GetMax() const in GetMax() function in OHOS::Ace::V2::SliderComposedElement 108 return std::to_string(renderSlider->GetMax()); in GetMax()
|
H A D | data_panel_composed_element.h | 36 std::string GetMax() const;
|
H A D | slider_composed_element.h | 37 std::string GetMax() const;
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gauge/ |
H A D | gauge_accessibility_property.cpp | 29 accessibilityValue.max = gaugePaintProperty->GetMax().value_or(0); in GetAccessibilityValue()
|
H A D | gauge_pattern.cpp | 110 auto max = gaugePaintProperty->GetMax().value_or(100.0f); in BuildContentModifierNode()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/slider/ |
H A D | slider_accessibility_property.cpp | 45 result.max = sliderProperty->GetMax().value_or(100.0f); in GetAccessibilityValue()
|
H A D | slider_paint_property.h | 124 jsonConstructor->Put("max", std::to_string(GetMax().value_or(100.0f)).c_str()); 179 float max = GetMax().value_or(100.0f); in GetStepRatio()
|
H A D | slider_pattern.cpp | 265 auto max = sliderPaintProperty->GetMax().value_or(SLIDER_MAX); in UpdateStepAccessibilityVirtualNode() 449 float max = sliderPaintProperty->GetMax().value_or(100.0f); in CalcSliderValue() 869 float max = sliderPaintProperty->GetMax().value_or(SLIDER_MAX); in isMinResponseExceed() 898 float max = sliderPaintProperty->GetMax().value_or(SLIDER_MAX); in UpdateValueByLocalLocation() 923 float max = sliderPaintProperty->GetMax().value_or(SLIDER_MAX); in UpdateToValidValue() 1266 float max = sliderPaintProperty->GetMax().value_or(SLIDER_MAX); in MoveStep() 1872 auto max = sliderPaintProperty->GetMax().value_or(100.0f); in BuildContentModifierNode() 1901 float max = sliderPaintProperty->GetMax().value_or(100.0f); in InitOrRefreshSlipFactor()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/data_panel/ |
H A D | data_panel_paint_method.cpp | 35 auto max_ = paintProperty->GetMax().value_or(DEFAULT_MAX_VALUE); in UpdateContentModifier()
|
H A D | data_panel_pattern.cpp | 124 double max = paintProperty->GetMax().value_or(DEFAULT_MAX_VALUE); in BuildContentModifierNode()
|
/foundation/arkui/ace_engine/test/unittest/core/accessibility/ |
H A D | js_third_provider_interaction_operation_utils_test.cpp | 54 accessibilityElementInfo.GetRange().GetMax(), in FillNativeAccessibilityElementInfoPart() 232 EXPECT_EQ(beforeInfo.GetRange().GetMax(), in CheckTransformElementInfoResultPart() 233 afterInfo.GetRange().GetMax()); in CheckTransformElementInfoResultPart()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/slider/ |
H A D | slider_test_ng.cpp | 221 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 258 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 596 EXPECT_EQ(paintProperty->GetMax().value(), MAX); in HWTEST_F() 1105 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1136 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1167 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1764 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1794 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1841 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1908 EXPECT_EQ(sliderPaintProperty->GetMax(), MA in HWTEST_F() [all...] |
H A D | slider_Extend_test_ng.cpp | 1142 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1271 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F() 1492 EXPECT_EQ(sliderPaintProperty->GetMax(), MAX); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components/slider/ |
H A D | render_slider.h | 103 double GetMax() const in GetMax() function in OHOS::Ace::RenderSlider
|
/foundation/barrierfree/accessibility/frameworks/common/src/ |
H A D | accessibility_element_info.cpp | 536 rangeInfo_.SetMax(rangeInfo.GetMax()); in SetRange() 623 double RangeInfo::GetMax() const in GetMax() function in OHOS::Accessibility::RangeInfo
|
/foundation/barrierfree/accessibility/frameworks/common/test/unittest/ |
H A D | accessibility_element_info_test.cpp | 874 EXPECT_EQ(elementInfo_->GetRange().GetMax(), 1); in HWTEST_F() 1131 * @tc.desc: Test function SetMax, GetMax 1137 EXPECT_EQ(rangeInfo_->GetMax(), 10); in HWTEST_F() 1144 * @tc.desc: Test function SetCurrent, GetMax
|
/foundation/barrierfree/accessibility/frameworks/common/test/mock/src/ |
H A D | mock_accessibility_element_info.cpp | 874 EXPECT_EQ(elementInfo_->GetRange().GetMax(), 1); in HWTEST_F() 1131 * @tc.desc: Test function SetMax, GetMax 1137 EXPECT_EQ(rangeInfo_->GetMax(), 10); in HWTEST_F() 1144 * @tc.desc: Test function SetCurrent, GetMax
|
/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/ |
H A D | accessibility_element_info.h | 90 double GetMax() const;
|
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/src/ |
H A D | webgl2_rendering_context.cpp | 171 static napi_value GetMax(napi_env env, napi_callback_info info) in GetMax() function 1509 NVal::DeclareNapiGetter("MAX", GetMax), in Export()
|
/foundation/barrierfree/accessibility/interfaces/kits/napi/accessibility_extension_module_loader/src/ |
H A D | napi_accessibility_element.cpp | 859 callbackInfo->accessibilityElement_.elementInfo_->GetRange().GetMax(), &value)); in GetElementInfoValueMax()
|
/foundation/arkui/ace_engine/adapter/ohos/osal/ |
H A D | js_accessibility_manager.cpp | 2228 DumpLog::GetInstance().AddDesc("max value: ", nodeInfo.GetRange().GetMax()); in DumpAccessibilityPropertyNG()
|