Lines Matching refs:height

145         uint32_t height = 200 + i * 10;
146 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
167 uint32_t height = 2160;
168 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
178 * @tc.desc: Test for getting width and height of an image with normal parameters.
189 constexpr uint32_t height = 200;
190 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
206 * @tc.desc: Test for getting width and height of an image with NULL parameters.
216 uint32_t height = 200;
217 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
230 * @tc.desc: Test for multiple calls of getting width and height of an image.
241 uint32_t height = 200 + i * 10;
242 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
256 * @tc.desc: Test for multiple calls of getting width and height of an boundary value image.
267 uint32_t height = 2160;
268 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
306 uint32_t height = 400;
308 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
331 uint32_t height = 400;
333 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
368 uint32_t height = rand() % 100 + 1;
369 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
389 // 2. OH_Drawing_ImageGetImageInfo creates OH_Drawing_Image_Info with width=-400 and height=-400
392 uint32_t height = -400;
394 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
413 // 2. OH_Drawing_ImageGetImageInfo creates OH_Drawing_Image_Info with width=maximum value and height=maximum value
416 uint32_t height = UINT32_MAX;
418 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);
437 // 2. OH_Drawing_ImageGetImageInfo creates OH_Drawing_Image_Info with width=maximum value and height=maximum value
440 uint32_t height = 2160;
442 OH_Drawing_BitmapBuild(bitmap, width, height, &cFormat);