Home
last modified time | relevance | path

Searched refs:COVER (Results 1 - 25 of 97) sorted by relevance

1234

/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_image.cpp27 { "cover", ImageFit::COVER }, in ConvertStrToFit()
32 ImageFit imageFit = ImageFit::COVER; in ConvertStrToFit()
/foundation/multimedia/media_library/interfaces/inner_api/media_library_helper/include/
H A Duserfile_manager_types.h212 COVER = 1, member in OHOS::Media::MovingPhotoEffectMode::PhotoPositionType::BurstCoverLevelType
214 DEFAULT = COVER
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/image/
H A Dimage_layout_property.h105 OBJECTFITVALUE[static_cast<int32_t>(propImageFit_.value_or(ImageFit::COVER))], filter);
122 { "ImageFit.Cover", ImageFit::COVER },
143 ImageFit imageFit = ImageFit::COVER;
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H A Dimage_span_view.cpp121 CHECK_NULL_RETURN(frameNode, ImageFit::COVER); in GetObjectFit()
123 CHECK_NULL_RETURN(layoutProperty, ImageFit::COVER); in GetObjectFit()
124 return layoutProperty->GetImageFit().value_or(ImageFit::COVER); in GetObjectFit()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dimage_component.h51 UIImageView::ImageResizeMode resizeMode_ = UIImageView::ImageResizeMode::COVER;
H A Dimage_component.cpp127 resizeMode_ = UIImageView::ImageResizeMode::COVER; in UpdateResizeMode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/image_provider/
H A Dimage_loading_context.h50 void MakeCanvasImage(const SizeF& dstSize, bool needResize, ImageFit imageFit = ImageFit::COVER,
223 ImageFit imageFit_ = ImageFit::COVER;
H A Dsvg_dom_base.h69 case ImageFit::COVER: in ApplyImageFit()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/video/
H A Dvideo_layout_property.h53 auto objectFit_ = GetObjectFitValue(ImageFit::COVER); in fullScreenReset()
/foundation/arkui/ui_lite/test/uitest/test_transform/
H A Dui_test_transform.cpp97 "RB", new StateChangeListener(ImageScaleMode::COVER, this), UI_TEST_COVER); in AddRadioGroup()
204 case ImageScaleMode::COVER: in SetScaleMode()
206 imageView_->SetResizeMode(UIImageView::ImageResizeMode::COVER); in SetScaleMode()
H A Dui_test_transform.h32 COVER, enumerator
/foundation/arkui/ace_engine/test/unittest/core/render/
H A Dimage_painter_test_ng.cpp395 * @tc.steps4: callback ApplyImageFit when ImageFit::COVER. in HWTEST_F()
398 imagePainter.ApplyImageFit(ImageFit::COVER, rawpicsize, dstsize, srcRect_, dstRect_); in HWTEST_F()
576 case BackgroundImageSizeType::COVER: in HWTEST_F()
602 case BackgroundImageSizeType::COVER: in HWTEST_F()
632 BackgroundImageSize backgroundImageSize1(BackgroundImageSizeType::COVER, 1, BackgroundImageSizeType::COVER, 1); in HWTEST_F()
665 * @tc.steps2: callback ApplyImageFit when ImageFit::COVER. in HWTEST_F()
668 imagePainter.ApplyImageFit(ImageFit::COVER, rawpicsize, dstsize, srcRect_, dstRect_); in HWTEST_F()
767 BackgroundImageSize backgroundImageSize1(BackgroundImageSizeType::COVER, 1, BackgroundImageSizeType::COVER, in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_image_span.cpp69 fit = ImageFit::COVER; in SetObjectFit()
73 ImageModel::GetInstance()->SetImageFit(ImageFit::COVER); in SetObjectFit()
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dimage_composed_element.cpp97 renderImage ? renderImage->GetImageFit() : ImageFit::COVER; in GetObjectFit()
100 case ImageFit::COVER: in GetObjectFit()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H A Drs_image.h69 COVER, member in OHOS::Rosen::ImageFit
156 ImageFit imageFit_ = ImageFit::COVER;
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dimage_analyzer_manager.cpp294 if (analyzerUIConfig_.imageFit != props->GetImageFit().value_or(ImageFit::COVER)) { in UpdateAnalyzerUIConfig()
295 analyzerUIConfig_.imageFit = props->GetImageFit().value_or(ImageFit::COVER); in UpdateAnalyzerUIConfig()
341 if (analyzerUIConfig_.imageFit != videoProps->GetObjectFitValue(ImageFit::COVER)) { in UpdateVideoConfig()
342 analyzerUIConfig_.imageFit = videoProps->GetObjectFitValue(ImageFit::COVER); in UpdateVideoConfig()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/render/
H A Drs_image_test.cpp209 image->imageFit_ = ImageFit::COVER; in HWTEST_F()
211 image->GetAdaptiveImageInfoWithCustomizedFrameRect(frameRect).fitNum, static_cast<int32_t>(ImageFit::COVER)); in HWTEST_F()
223 image->imageFit_ = ImageFit::COVER; in HWTEST_F()
224 EXPECT_EQ(image->GetImageFit(), ImageFit::COVER); in HWTEST_F()
/foundation/arkui/ace_engine/test/unittest/core/image_provider/
H A Dimage_provider_test_ng.cpp361 std::vector<ImageFit> imageFitCases = { ImageFit::COVER, ImageFit::FILL }; in HWTEST_F()
465 auto res = ctx->MakeCanvasImageIfNeed(dstSize, true, ImageFit::COVER); in HWTEST_F()
471 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_65, LENGTH_65), true, ImageFit::COVER); in HWTEST_F()
475 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_128, LENGTH_128), true, ImageFit::COVER); in HWTEST_F()
478 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_64, LENGTH_64), true, ImageFit::COVER); in HWTEST_F()
482 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_63, LENGTH_63), true, ImageFit::COVER); in HWTEST_F()
767 * @tc.steps4: callback ApplyImageFit when ImageFit::COVER. in HWTEST_F()
769 ctx->imageFit_ = ImageFit::COVER; in HWTEST_F()
770 imagePainter.ApplyImageFit(ImageFit::COVER, rawpicsize, dstsize, srcRect_, dstRect_); in HWTEST_F()
857 * @tc.steps4: callback ApplyImageFit when ImageFit::COVER in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/test/unittest/core/image/
H A Dimage_provider_test_ng.cpp352 std::vector<ImageFit> imageFitCases = { ImageFit::COVER, ImageFit::FILL }; in HWTEST_F()
456 auto res = ctx->MakeCanvasImageIfNeed(dstSize, true, ImageFit::COVER); in HWTEST_F()
462 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_65, LENGTH_65), true, ImageFit::COVER); in HWTEST_F()
466 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_128, LENGTH_128), true, ImageFit::COVER); in HWTEST_F()
469 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_64, LENGTH_64), true, ImageFit::COVER); in HWTEST_F()
473 res = ctx->MakeCanvasImageIfNeed(SizeF(LENGTH_63, LENGTH_63), true, ImageFit::COVER); in HWTEST_F()
758 * @tc.steps4: callback ApplyImageFit when ImageFit::COVER. in HWTEST_F()
760 ctx->imageFit_ = ImageFit::COVER; in HWTEST_F()
761 imagePainter.ApplyImageFit(ImageFit::COVER, rawpicsize, dstsize, srcRect_, dstRect_); in HWTEST_F()
848 * @tc.steps4: callback ApplyImageFit when ImageFit::COVER in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_image_span_ffi.cpp27 ImageFit::COVER,
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dvideo_modifier.cpp24 constexpr ImageFit DEFAULT_OBJECT_FIT = ImageFit::COVER;
/foundation/arkui/ace_engine/interfaces/inner_api/ace/ai/
H A Dimage_analyzer.h103 ImageFit imageFit = ImageFit::COVER;
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/
H A Dcanvas_image.h60 ImageFit imageFit_ = ImageFit::COVER;
/foundation/arkui/ui_lite/interfaces/kits/components/
H A Dui_image_view.h265 COVER,
/foundation/multimedia/media_library/frameworks/services/media_backup_extension/src/restore/
H A Dphotos_restore.cpp231 if (fileInfo.isBurst == static_cast<int32_t>(BurstCoverLevelType::COVER) || in FindBurstCoverLevel()
235 return static_cast<int32_t>(BurstCoverLevelType::COVER); in FindBurstCoverLevel()

Completed in 15 milliseconds

1234