Lines Matching refs:MapScalars
204 * @tc.desc: Test the function MapScalars of the classes Matrix4.
210 * @tc.steps: initialize the input parameters of the function MapScalars.
221 matrix4Obj1.MapScalars(srcVec, dstVec);
230 matrix4Obj1.MapScalars(srcVec, srcVec);
239 * @tc.desc: Test the function MapScalars of the classes Matrix4N.
245 * @tc.steps: initialize the input parameters of the function MapScalars.
255 * function MapScalars with single parameter.
258 std::vector<double> dstVec = matrix4NObj1.MapScalars(srcVec);
267 * function MapScalars with single parameter.
270 dstVec = matrix4NObj1.MapScalars(srcVec);
278 * function MapScalars with two parameters.
282 EXPECT_FALSE(matrix4NObj1.MapScalars(srcVec, dstVec));
287 * function MapScalars with two parameters.
290 EXPECT_TRUE(matrix4NObj1.MapScalars(srcVec, dstVec));
300 * @tc.desc: Test the function MapScalars of the classes MatrixN4.
306 * @tc.steps: initialize the input parameters of the function MapScalars.
315 * @tc.steps: Test the function MapScalars with given the vector srcVec whose size is invalid.
318 std::vector<double> dstVec = matrixN4Obj1.MapScalars(srcVec);
327 * @tc.steps: Test the function MapScalars with given the vector srcVec whose size is valid.
330 dstVec = matrixN4Obj1.MapScalars(srcVec);