/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/chart/ |
H A D | chart_tdd_test.cpp | 233 int16_t defaultHeight = 300; in ComponentChartStyleValueTest001() local 234 VerifyWidthAndHeight(BUNDLE1, defaultWidth, defaultHeight); in ComponentChartStyleValueTest001() 240 int16_t defaultHeight = 300; in ComponentChartStyleValueTest002() local 241 VerifyWidthAndHeight(BUNDLE2, defaultWidth, defaultHeight); in ComponentChartStyleValueTest002() 256 void ChartTddTest::VerifyWidthAndHeight(const char *bundle, int16_t defaultWidth, int16_t defaultHeight) in VerifyWidthAndHeight() argument 266 EXPECT_TRUE(height == defaultHeight); in VerifyWidthAndHeight()
|
H A D | chart_tdd_test.h | 33 void VerifyWidthAndHeight(const char *bundle, int16_t defaultWidth, int16_t defaultHeight);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/ |
H A D | rs_virtual_screen_refresh_rate_test.cpp | 60 uint32_t defaultHeight = 1280; // 1280px in HWTEST_F() local 64 "virtualScreen01", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 94 uint32_t defaultHeight = 1280; // 1280px in HWTEST_F() local 98 "virtualScreen01", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 126 uint32_t defaultHeight = 1280; // 1280px in HWTEST_F() local 130 "virtualScreen01", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 160 uint32_t defaultHeight = 1280; // 1280px in HWTEST_F() local 164 "virtualScreen01", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 214 uint32_t defaultHeight = 1280; // 1280px in HWTEST_F() local 217 "virtualScreen01", defaultWidth, defaultHeight, psurfac in HWTEST_F() [all...] |
H A D | rs_screen_skipframe_test.cpp | 223 uint32_t defaultHeight = 1280; in HWTEST_F() local 227 "virtualScreen01", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 250 uint32_t defaultHeight = 1280; in HWTEST_F() local 254 "virtualScreen02", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 277 uint32_t defaultHeight = 1280; in HWTEST_F() local 281 "virtualScreen03", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 308 uint32_t defaultHeight = 1280; in HWTEST_F() local 312 "virtualScreen04", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 342 uint32_t defaultHeight = 1280; in HWTEST_F() local 346 "virtualScreen05", defaultWidth, defaultHeight, psurfac in HWTEST_F() 376 uint32_t defaultHeight = 1280; HWTEST_F() local 407 uint32_t defaultHeight = 1280; HWTEST_F() local 438 uint32_t defaultHeight = 1280; HWTEST_F() local [all...] |
H A D | rs_interfaces_test.cpp | 149 uint32_t defaultHeight = 1280; in HWTEST_F() local 155 "virtual5", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 160 EXPECT_EQ(curVirtualScreenResolution.GetVirtualScreenHeight(), defaultHeight); in HWTEST_F() 188 uint32_t defaultHeight = 1280; in HWTEST_F() local 193 "virtual5", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 226 uint32_t defaultHeight = 2772; in HWTEST_F() local 230 "virtual5", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 252 uint32_t defaultHeight = 1280; in HWTEST_F() local 256 "virtual6", defaultWidth, defaultHeight, psurface, GenerateVirtualScreenMirrorId(), -1); in HWTEST_F() 1421 uint32_t defaultHeight in HWTEST_F() local 1618 uint32_t defaultHeight = 1280; HWTEST_F() local 1668 uint32_t defaultHeight = 1280; HWTEST_F() local 1724 uint32_t defaultHeight = 1280; HWTEST_F() local 1763 uint32_t defaultHeight = 1280; // height value for test HWTEST_F() local 1787 uint32_t defaultHeight = 1280; // height value for test HWTEST_F() local 1811 uint32_t defaultHeight = 1280; // height value for test HWTEST_F() local [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | tab_bar_component.cpp | 110 int32_t defaultHeight = 50; in SetHeight() local 111 height_ = defaultHeight; in SetHeight() 115 defaultHeight = (item == nullptr) ? defaultHeight : item->GetNumValue(); in SetHeight() 118 if (defaultHeight >= 0 && defaultHeight <= VERTICAL_RESOLUTION) { in SetHeight() 119 height_ = defaultHeight; in SetHeight()
|
H A D | qrcode_component.cpp | 123 const uint16_t defaultHeight = GetHeight();
in DrawQrcode() local 132 qrcode_.SetHeight(defaultHeight);
in DrawQrcode()
|
H A D | input_button_component.cpp | 37 const uint8_t defaultHeight = 50; in CreateNativeViews() local 39 button_.SetHeight(defaultHeight); in CreateNativeViews()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/ |
H A D | qrcode_tdd_test.cpp | 97 int16_t defaultHeight = 300;
in ComponentQrcodeStyleValueTest001() local 103 EXPECT_TRUE(height == defaultHeight);
in ComponentQrcodeStyleValueTest001() 117 int16_t defaultHeight = 400;
in ComponentQrcodeStyleValueTest002() local 119 EXPECT_TRUE(height == defaultHeight);
in ComponentQrcodeStyleValueTest002()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/select/ |
H A D | select_layout_algorithm.cpp | 69 float defaultHeight = MeasureAndGetDefaultHeight(layoutProps, theme); in Measure() local 71 SizeF(rowWidth, rowHeight > defaultHeight ? rowHeight : defaultHeight)); in Measure() 122 float defaultHeight = 0.0f; in MeasureAndGetDefaultHeight() local 126 defaultHeight = in MeasureAndGetDefaultHeight() 129 defaultHeight = static_cast<float>(theme->GetSelectDefaultHeight().ConvertToPx()); in MeasureAndGetDefaultHeight() 131 return defaultHeight; in MeasureAndGetDefaultHeight()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/toggle/ |
H A D | switch_paint_property.h | 48 auto defaultHeight = (switchTheme->GetHeight() - switchTheme->GetHotZoneVerticalPadding() * 2); in ToJsonValue() local 49 auto defaultPointRadius = defaultHeight / 2 - 2.0_vp; // Get the default radius of the point. in ToJsonValue() 56 auto defaultTrackBorderRadius = defaultHeight / 2; // Get the default border radius of the track. in ToJsonValue()
|
/foundation/multimedia/av_codec/test/fuzztest/hwdecoderapi11_fuzzer/ |
H A D | hwdecoderapi11_fuzzer.cpp | 46 vDecSample->defaultHeight = DEFAULT_HEIGHT; in RunNormalDecoder() 58 vDecSample->defaultHeight = DEFAULT_HEIGHT; in RunNormalDecoder() 83 g_vDecSample->defaultHeight = DEFAULT_HEIGHT; in HwdecoderApi11FuzzTest()
|
/foundation/multimedia/av_codec/test/fuzztest/hwdecoder_fuzzer/ |
H A D | hwdecoder_fuzzer.cpp | 43 vDecSample->defaultHeight = DEFAULT_HEIGHT; in RunNormalDecoder() 54 vDecSample->defaultHeight = DEFAULT_HEIGHT; in RunNormalDecoder() 78 g_vDecSample->defaultHeight = DEFAULT_HEIGHT; in HwdecoderFuzzTest()
|
/foundation/multimedia/av_codec/test/fuzztest/hevcswdecoderapi11_fuzzer/ |
H A D | hevcswdecoderapi11_fuzzer.cpp | 46 vDecSample->defaultHeight = DEFAULT_HEIGHT; in RunNormalDecoder() 58 vDecSample->defaultHeight = DEFAULT_HEIGHT; in RunNormalDecoder() 83 g_vDecSample->defaultHeight = DEFAULT_HEIGHT; in HwdecoderApi11FuzzTest()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/button/ |
H A D | button_layout_algorithm.cpp | 104 auto defaultHeight = GetDefaultHeight(layoutWrapper); in HandleChildLayoutConstraint() local 105 layoutConstraint.maxSize.SetHeight(maxHeight > defaultHeight ? defaultHeight : maxHeight); in HandleChildLayoutConstraint() 124 auto defaultHeight = GetDefaultHeight(layoutWrapper); in HandleLabelCircleButtonConstraint() local 128 minLength = defaultHeight; in HandleLabelCircleButtonConstraint() 249 auto defaultHeight = GetDefaultHeight(layoutWrapper); in PerformMeasureSelf() local 255 HandleLabelCircleButtonFrameSize(layoutConstraint, frameSize, defaultHeight); in PerformMeasureSelf() 265 frameSize.SetHeight(maxHeight > defaultHeight ? std::max(defaultHeight, actualHeight) : maxHeight); in PerformMeasureSelf() 280 const LayoutConstraintF& layoutConstraint, SizeF& frameSize, const float& defaultHeight) in HandleLabelCircleButtonFrameSize() 279 HandleLabelCircleButtonFrameSize( const LayoutConstraintF& layoutConstraint, SizeF& frameSize, const float& defaultHeight) HandleLabelCircleButtonFrameSize() argument [all...] |
H A D | button_layout_algorithm.h | 47 const LayoutConstraintF& layoutConstraint, SizeF& frameSize, const float& defaultHeight);
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/ |
H A D | rs_render_service_client_test.cpp | 380 uint32_t defaultHeight = 320; in HWTEST_F() local 382 "virtualScreenTest", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 596 uint32_t defaultHeight = 1280; in HWTEST_F() local 598 "virtualScreenTest", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 741 uint32_t defaultHeight = 1280; in HWTEST_F() local 743 "virtualScreenTest", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 796 uint32_t defaultHeight = 2772; in HWTEST_F() local 799 "virtualScreenTest", defaultWidth, defaultHeight, psurface, INVALID_SCREEN_ID, -1); in HWTEST_F() 818 uint32_t defaultHeight = 2772; in HWTEST_F() local 821 "virtualScreenTest", defaultWidth, defaultHeight, psurfac in HWTEST_F() [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/canvas/ |
H A D | canvas_tdd_test.cpp | 83 int16_t defaultHeight = 454; in ComponentCanvasDefaultValueTest001() local 85 EXPECT_TRUE(canvas->GetHeight() == defaultHeight); in ComponentCanvasDefaultValueTest001()
|
/foundation/multimedia/av_codec/test/fuzztest/encoderconfigure_fuzzer/ |
H A D | videoenc_sample.cpp | 97 (void)OH_AVFormat_SetIntValue(format, OH_MD_KEY_HEIGHT, defaultHeight); in ConfigureVideoEncoder() 122 defaultHeight = data; in ConfigureVideoEncoderFuzz() 300 for (uint32_t i = 0; i < defaultHeight; i++) { in ReadOneFrameYUV420SP() 308 for (uint32_t i = 0; i < defaultHeight / sampleRatio; i++) { in ReadOneFrameYUV420SP() 320 for (uint32_t i = 0; i < defaultHeight; i++) { in ReadOneFrameRGBA8888() 359 if (size < defaultHeight * stride_) { in PushData() 363 attr.size = stride_ * defaultHeight; in PushData() 365 if (size < (defaultHeight * stride_ + (defaultHeight * stride_ / DOUBLE))) { in PushData()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_linear_indicator.cpp | 231 Dimension defaultHeight = theme->GetDefaultHeight(); in JsHeight() local 233 CalcDimension value = defaultHeight; in JsHeight() 236 value = defaultHeight; in JsHeight() 239 value = defaultHeight; in JsHeight() 242 value = defaultHeight; in JsHeight() 245 value = defaultHeight; in JsHeight()
|
/foundation/arkui/ace_engine/frameworks/core/components/checkable/ |
H A D | render_checkable.cpp | 113 auto defaultHeight = NormalizeToPx(defaultHeight_); in CalculateSize() local 117 if ((height_ < defaultHeight) && (!NearZero(defaultHeight))) { in CalculateSize() 118 hotZoneVerticalPadding *= height_ / defaultHeight; in CalculateSize()
|
/foundation/multimedia/av_codec/test/fuzztest/hevcswdecoderconfigure_fuzzer/ |
H A D | hevcswdecoderconfigure_fuzzer.cpp | 37 vDecSample->defaultHeight = data_; in SwdecoderConfigureFuzzTest()
|
/foundation/multimedia/av_codec/test/fuzztest/swdecoderconfigure_fuzzer/ |
H A D | swdecoderconfigure_fuzzer.cpp | 37 vDecSample->defaultHeight = data_; in SwdecoderConfigureFuzzTest()
|
/foundation/multimedia/av_codec/test/fuzztest/swdecoderresource_fuzzer/ |
H A D | swdecoderresource_fuzzer.cpp | 40 vDecSample->defaultHeight = DEFAULT_HEIGHT; in DoSomethingInterestingWithMyAPI()
|
/foundation/arkui/ace_engine/frameworks/core/components/rating/ |
H A D | rating_component.h | 108 void SetDefaultHeight(const Dimension& defaultHeight) in SetDefaultHeight() argument 110 defaultHeight_ = defaultHeight; in SetDefaultHeight()
|