/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/image/ |
H A D | image_layout_algorithm.cpp | 61 if ((!loadingCtx || !loadingCtx->GetImageSize().IsPositive()) && in MeasureContent() 62 (!altLoadingCtx || !altLoadingCtx->GetImageSize().IsPositive())) { in MeasureContent() 68 rawImageSize = loadingCtx->GetImageSize(); in MeasureContent() 71 rawImageSize = altLoadingCtx->GetImageSize(); in MeasureContent()
|
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/plugin_test/ |
H A D | gif_decoder_test.cpp | 34 * @tc.desc: Test of GetImageSize
46 gifDecoder->GetImageSize(2, plSize);
in HWTEST_F() 54 * @tc.desc: Test of GetImageSize
64 gifDecoder->GetImageSize(0, plSize);
in HWTEST_F() 72 * @tc.desc: Test of GetImageSize
83 gifDecoder->GetImageSize(0, plSize);
in HWTEST_F() 91 * @tc.desc: Test of GetImageSize
103 gifDecoder->GetImageSize(0, plSize);
in HWTEST_F() 111 * @tc.desc: Test of GetImageSize
123 gifDecoder->GetImageSize( in HWTEST_F() [all...] |
H A D | webp_decoder_test.cpp | 35 * @tc.desc: Test of GetImageSize
47 webpDecoder->GetImageSize(2, plSize);
in HWTEST_F() 55 * @tc.desc: Test of GetImageSize
63 webpDecoder->GetImageSize(0, plSize);
in HWTEST_F() 75 * @tc.desc: Test of GetImageSize
85 webpDecoder->GetImageSize(0, plSize);
in HWTEST_F() 93 * @tc.desc: Test of GetImageSize
104 webpDecoder->GetImageSize(0, plSize);
in HWTEST_F() 112 * @tc.desc: Test of GetImageSize
124 webpDecoder->GetImageSize( in HWTEST_F() [all...] |
H A D | bmp_decoder_test.cpp | 36 * @tc.desc: Test of GetImageSize
48 bmpDecoder->GetImageSize(2, plSize);
in HWTEST_F() 56 * @tc.desc: Test of GetImageSize
64 bmpDecoder->GetImageSize(0, plSize);
in HWTEST_F() 76 * @tc.desc: Test of GetImageSize
86 bmpDecoder->GetImageSize(0, plSize);
in HWTEST_F() 94 * @tc.desc: Test of GetImageSize
105 bmpDecoder->GetImageSize(0, plSize);
in HWTEST_F() 113 * @tc.desc: Test of GetImageSize
125 bmpDecoder->GetImageSize( in HWTEST_F() [all...] |
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/ |
H A D | svg_decoder_test.cpp | 34 * @tc.desc: Test of GetImageSize
46 svgDecoder->GetImageSize(2, plSize);
in HWTEST_F() 54 * @tc.desc: Test of GetImageSize
62 svgDecoder->GetImageSize(0, plSize);
in HWTEST_F() 74 * @tc.desc: Test of GetImageSize
84 svgDecoder->GetImageSize(0, plSize);
in HWTEST_F() 92 * @tc.desc: Test of GetImageSize
103 svgDecoder->GetImageSize(0, plSize);
in HWTEST_F() 111 * @tc.desc: Test of GetImageSize
123 svgDecoder->GetImageSize( in HWTEST_F() [all...] |
H A D | raw_decoder_test.cpp | 37 * @tc.desc: Test of GetImageSize
49 rawDecoder->GetImageSize(2, plSize);
in HWTEST_F() 57 * @tc.desc: Test of GetImageSize
65 rawDecoder->GetImageSize(0, plSize);
in HWTEST_F() 77 * @tc.desc: Test of GetImageSize
87 rawDecoder->GetImageSize(0, plSize);
in HWTEST_F() 95 * @tc.desc: Test of GetImageSize
106 rawDecoder->GetImageSize(0, plSize);
in HWTEST_F() 114 * @tc.desc: Test of GetImageSize
126 rawDecoder->GetImageSize( in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/image_provider/ |
H A D | image_object.cpp | 19 const SizeF& ImageObject::GetImageSize() const in GetImageSize() function in OHOS::Ace::NG::ImageObject
|
H A D | image_object.h | 39 const SizeF& GetImageSize() const;
|
H A D | image_loading_context.cpp | 335 auto imageSize = GetImageSize(); in OnMakeCanvasImage() 365 auto imageSize = GetImageSize(); in ResizableCalcDstSize() 451 auto res = imageObj_->GetImageSize().Width(); in RoundUp() 511 SizeF ImageLoadingContext::GetImageSize() const in GetImageSize() function in OHOS::Ace::NG::ImageLoadingContext 513 return imageObj_ ? imageObj_->GetImageSize() : SizeF(-1.0, -1.0); in GetImageSize()
|
/foundation/arkui/ace_engine/adapter/preview/osal/ |
H A D | image_source_preview.h | 32 Size GetImageSize() override;
|
H A D | image_source_preview.cpp | 67 ImageSource::Size ImageSourcePreview::GetImageSize() in GetImageSize() function in OHOS::Ace::ImageSourcePreview
|
/foundation/arkui/ace_engine/test/mock/base/ |
H A D | mock_image_source.h | 35 MOCK_METHOD0(GetImageSize, ImageSource::Size());
|
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/mock/ |
H A D | mock_abs_image_decoder.h | 49 uint32_t GetImageSize(uint32_t index, Size &size) in GetImageSize() function in OHOS::ImagePlugin::MockAbsImageDecoder
|
/foundation/arkui/ace_engine/adapter/ohos/osal/ |
H A D | image_source_ohos.h | 39 Size GetImageSize() override;
|
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/ |
H A D | pixel_yuv_ext_utils.cpp | 76 static uint32_t GetImageSize(int32_t width, int32_t height) in GetImageSize() function 139 std::unique_ptr<uint8_t[]> tmpPixels = std::make_unique<uint8_t[]>(GetImageSize(size.dstW, size.dstH)); in NV12Rotate() 178 std::unique_ptr<uint16_t[]> dstPixels = std::make_unique<uint16_t[]>(GetImageSize(info.yStride, size.srcH)); in NV12P010Rotate() 194 std::unique_ptr<uint16_t[]> rotatePixels = std::make_unique<uint16_t[]>(GetImageSize(size.srcW, size.srcH)); in NV12P010Rotate() 355 std::unique_ptr<uint16_t[]> srcPixels = std::make_unique<uint16_t[]>(GetImageSize(yuvInfo.width, height)); in ScaleP010() 374 std::unique_ptr<uint16_t[]> dstPixels = std::make_unique<uint16_t[]>(GetImageSize(srcWidth, srcHeight)); in ScaleP010() 388 std::unique_ptr<uint16_t[]> scalePixels = std::make_unique<uint16_t[]>(GetImageSize(dst_width, dst_height)); in ScaleP010() 404 std::make_unique<uint16_t[]>(GetImageSize(dst_width, dst_height + GetUVHeight(dst_height))); in ScaleP010()
|
/foundation/arkui/ace_engine/frameworks/base/image/ |
H A D | image_source.h | 44 virtual Size GetImageSize() = 0;
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libheifplugin/include/ |
H A D | heif_decoder.h | 37 virtual uint32_t GetImageSize(uint32_t index, Size &size) override;
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/ |
H A D | js_render_image.cpp | 293 width_ = loadingCtx_->GetImageSize().Width(); in OnImageDataReady() 294 height_ = loadingCtx_->GetImageSize().Height(); in OnImageDataReady() 295 loadingCtx_->MakeCanvasImageIfNeed(loadingCtx_->GetImageSize(), true, ImageFit::NONE); in OnImageDataReady() 308 imageSize_ = loadingCtx_->GetImageSize(); in OnImageLoadSuccess()
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libheifplugin/src/ |
H A D | heif_decoder.cpp | 50 uint32_t ret = GetImageSize(index, info.size); in SetDecodeOptions() 95 uint32_t HeifDecoder::GetImageSize(uint32_t index, Size &size) in GetImageSize() function in OHOS::ImagePlugin::HeifDecoder
|
/foundation/arkui/ace_engine/frameworks/core/image/apng/ |
H A D | apng_image_decoder.h | 236 Size GetImageSize();
|
/foundation/multimedia/image_framework/plugins/common/libs/image/librawplugin/include/ |
H A D | raw_decoder.h | 37 uint32_t GetImageSize(uint32_t index, Size &size) override;
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libsvgplugin/include/ |
H A D | svg_decoder.h | 46 uint32_t GetImageSize(uint32_t index, Size &size) override;
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libbmpplugin/include/ |
H A D | bmp_decoder.h | 47 uint32_t GetImageSize(uint32_t index, Size &size) override;
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libwebpplugin/include/ |
H A D | webp_decoder.h | 49 uint32_t GetImageSize(uint32_t index, Size &size) override;
|
/foundation/arkui/ace_engine/test/mock/core/image_provider/ |
H A D | mock_image_loading_context.cpp | 104 SizeF ImageLoadingContext::GetImageSize() const in GetImageSize() function in OHOS::Ace::NG::ImageLoadingContext
|