Home
last modified time | relevance | path

Searched refs:GetImageSize (Results 1 - 25 of 78) sorted by relevance

1234

/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/image/
H A Dimage_layout_algorithm.cpp61 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 Dgif_decoder_test.cpp34 * @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 Dwebp_decoder_test.cpp35 * @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 Dbmp_decoder_test.cpp36 * @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 Dsvg_decoder_test.cpp34 * @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 Draw_decoder_test.cpp37 * @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 Dimage_object.cpp19 const SizeF& ImageObject::GetImageSize() const in GetImageSize() function in OHOS::Ace::NG::ImageObject
H A Dimage_object.h39 const SizeF& GetImageSize() const;
H A Dimage_loading_context.cpp335 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 Dimage_source_preview.h32 Size GetImageSize() override;
H A Dimage_source_preview.cpp67 ImageSource::Size ImageSourcePreview::GetImageSize() in GetImageSize() function in OHOS::Ace::ImageSourcePreview
/foundation/arkui/ace_engine/test/mock/base/
H A Dmock_image_source.h35 MOCK_METHOD0(GetImageSize, ImageSource::Size());
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/mock/
H A Dmock_abs_image_decoder.h49 uint32_t GetImageSize(uint32_t index, Size &size) in GetImageSize() function in OHOS::ImagePlugin::MockAbsImageDecoder
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dimage_source_ohos.h39 Size GetImageSize() override;
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dpixel_yuv_ext_utils.cpp76 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 Dimage_source.h44 virtual Size GetImageSize() = 0;
/foundation/multimedia/image_framework/plugins/common/libs/image/libheifplugin/include/
H A Dheif_decoder.h37 virtual uint32_t GetImageSize(uint32_t index, Size &size) override;
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/
H A Djs_render_image.cpp293 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 Dheif_decoder.cpp50 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 Dapng_image_decoder.h236 Size GetImageSize();
/foundation/multimedia/image_framework/plugins/common/libs/image/librawplugin/include/
H A Draw_decoder.h37 uint32_t GetImageSize(uint32_t index, Size &size) override;
/foundation/multimedia/image_framework/plugins/common/libs/image/libsvgplugin/include/
H A Dsvg_decoder.h46 uint32_t GetImageSize(uint32_t index, Size &size) override;
/foundation/multimedia/image_framework/plugins/common/libs/image/libbmpplugin/include/
H A Dbmp_decoder.h47 uint32_t GetImageSize(uint32_t index, Size &size) override;
/foundation/multimedia/image_framework/plugins/common/libs/image/libwebpplugin/include/
H A Dwebp_decoder.h49 uint32_t GetImageSize(uint32_t index, Size &size) override;
/foundation/arkui/ace_engine/test/mock/core/image_provider/
H A Dmock_image_loading_context.cpp104 SizeF ImageLoadingContext::GetImageSize() const in GetImageSize() function in OHOS::Ace::NG::ImageLoadingContext

Completed in 14 milliseconds

1234