Lines Matching refs:bottom
65 // 5. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner of rect
67 // 6. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner of rect
126 // 5. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner of rect
128 // 6. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner of rect
357 // 2. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner of rect
359 // 3. Call OH_Drawing_RectGetRight to get the x-coordinate of the bottom-right corner of rect, Returns the value set
401 // 3. Call OH_Drawing_RectGetRight to get the x-coordinate of the bottom-right corner of rect, Returns the value set
420 // 2. Loop to call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner of rect 10 times (each
424 // 3. Loop to call OH_Drawing_RectGetRight to get the x-coordinate of the bottom-right corner of rect 10 times,
429 // 3. Loop to call OH_Drawing_RectGetRight to get the x-coordinate of the bottom-right corner of rect 10 times, Each
433 // 3. Loop to call OH_Drawing_RectGetRight to get the x-coordinate of the bottom-right corner of rect 10 times,
445 * @tc.desc: Test for setting and getting the bottom coordinate of a rectangle with normal parameters.
453 // 2. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner of rect
455 // 3. Call OH_Drawing_RectGetBottom to get the y-coordinate of the bottom-right corner of rect, 3. Returns the value
457 float bottom = OH_Drawing_RectGetBottom(rect);
458 EXPECT_TRUE(IsScalarAlmostEqual(bottom, 300));
466 * @tc.desc: Test for setting the bottom coordinate of a rectangle with NULL parameters.
487 * @tc.desc: Test for setting the bottom coordinate of a rectangle with abnormal parameters.
497 // 3. Call OH_Drawing_RectGetBottom to get the y-coordinate of the bottom-right corner of rect
498 float bottom = OH_Drawing_RectGetBottom(rect);
499 EXPECT_TRUE(IsScalarAlmostEqual(bottom, 100));
507 * @tc.desc: Test for repeatedly setting and getting the bottom coordinate of a rectangle.
517 float bottom = OH_Drawing_RectGetBottom(rect);
518 EXPECT_TRUE(IsScalarAlmostEqual(bottom, i * 10));
611 // 2. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner of rect
613 // 3. Call OH_Drawing_RectGetRight to get the x-coordinate of the bottom-right corner of rect
642 * @tc.desc: Test for setting and getting the bottom coordinate of a rectangle with normal parameters.
650 // 2. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner of rect
652 // 3. Call OH_Drawing_RectGetBottom to get the y-coordinate of the bottom-right corner of rect, the return value
654 float bottom = OH_Drawing_RectGetBottom(rect);
655 EXPECT_TRUE(IsScalarAlmostEqual(bottom, 300));
663 * @tc.desc: Test for getting the bottom coordinate of a rectangle with NULL parameters.
694 // 4. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner of rect
696 // 5. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner of rect
699 // y-coordinate of the bottom-right corner and the y-coordinate of the top-left corner
740 // 4. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner
742 // 5. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner
745 // x-coordinate of the bottom-right corner and the x-coordinate of the top-left corner
788 // 4. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner
790 // 5. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner
793 // x-coordinate of the bottom-right corner and the x-coordinate of the top-left corner
817 // 5. Call OH_Drawing_RectSetRight to set the x-coordinate of the bottom-right corner of src
819 // 6. Call OH_Drawing_RectSetBottom to set the y-coordinate of the bottom-right corner of src
831 // 10. Call OH_Drawing_RectGetRight to get the x-coordinate of the bottom-right corner of dst, which should be the
835 // 11. Call OH_Drawing_RectGetBottom to get the y-coordinate of the bottom-right corner of dst, which should be the
837 float bottom = OH_Drawing_RectGetBottom(dst);
838 EXPECT_TRUE(IsScalarAlmostEqual(bottom, 300));