Lines Matching defs:length
1125 * @tc.desc: Test for getting the length of a path using normal parameters with detailed length.
1137 // 4. Get the length of the current path by calling OH_Drawing_PathGetLength, with the second parameter set to true.
1138 float length = OH_Drawing_PathGetLength(path, true);
1139 EXPECT_NE(length, 0.0f);
1147 * @tc.desc: Test for getting the length of a path using normal parameters without detailed length.
1159 // 4. Get the length of the current path by calling OH_Drawing_PathGetLength, with the second parameter set to
1161 float length = OH_Drawing_PathGetLength(path, false);
1162 EXPECT_NE(length, 0.0f);
1170 * @tc.desc: Test for getting the length of a path using NULL or invalid parameters.