/ohos5.0/foundation/arkui/ace_engine/test/unittest/base/ |
H A D | matrix3_test.cpp | 394 matrixObj1.SetEntry(-1, 2, 5.0f); 396 matrixObj1.SetEntry(10, 2, 5.0f); 398 matrixObj1.SetEntry(0, -1, 5.0f); 400 matrixObj1.SetEntry(0, 10, 5.0f); 402 matrixObj1.SetEntry(0, 2, 5.0f); 410 bool ret = matrix3NObj1.SetEntry(10, 2, 5.0f); 413 bool ret2 = matrix3NObj1.SetEntry(0, 3, 5.0f); 416 bool ret3 = matrix3NObj1.SetEntry(0, 2, 5.0f); 424 bool ret4 = matrixN3Obj1.SetEntry(3, 2, 5.0f); 427 bool ret5 = matrixN3Obj1.SetEntry(0, 10, 5.0f); [all …]
|
H A D | matrix4_test.cpp | 472 matrix4Obj.SetEntry(-1, 0, 1.0f); 474 matrix4Obj.SetEntry(10.0, 0, 1.0f); 476 matrix4Obj.SetEntry(1.0, -1, 1.0f); 478 matrix4Obj.SetEntry(1.0, 10.0, 1.0f); 484 bool ret3 = mtrix4NObj.SetEntry(-1, 0, 1.0f); 486 bool ret4 = mtrix4NObj.SetEntry(10.0, 0, 1.0f); 488 bool ret5 = mtrix4NObj.SetEntry(1.0, -1, 1.0f); 497 bool ret7 = mtrixN4Obj.SetEntry(-1, 0, 1.0f); 499 bool ret8 = mtrixN4Obj.SetEntry(ROW_NUM, 0, 1.0f); 501 bool ret9 = mtrixN4Obj.SetEntry(1.0, -1, 1.0f); [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/ |
H A D | matrix3.h | 35 void SetEntry(int32_t row, int32_t col, double value); 103 bool SetEntry(int32_t row, int32_t col, double value); 170 bool SetEntry(int32_t row, int32_t col, double value);
|
H A D | matrix4.h | 68 void SetEntry(int32_t row, int32_t col, double value); 130 bool SetEntry(int32_t row, int32_t col, double value); 187 bool SetEntry(int32_t row, int32_t col, double value);
|
H A D | matrix3.cpp | 19 void Matrix3::SetEntry(int32_t row, int32_t col, double value) in SetEntry() function in OHOS::Ace::Matrix3 128 bool Matrix3N::SetEntry(int32_t row, int32_t col, double value) in SetEntry() function in OHOS::Ace::Matrix3N 203 bool MatrixN3::SetEntry(int32_t row, int32_t col, double value) in SetEntry() function in OHOS::Ace::MatrixN3
|
H A D | matrix4.cpp | 181 void Matrix4::SetEntry(int32_t row, int32_t col, double value) in SetEntry() function in OHOS::Ace::Matrix4 446 bool Matrix4N::SetEntry(int32_t row, int32_t col, double value) in SetEntry() function in OHOS::Ace::Matrix4N 467 matrix4.SetEntry(i, j, value); in operator *() 521 bool MatrixN4::SetEntry(int32_t row, int32_t col, double value) in SetEntry() function in OHOS::Ace::MatrixN4
|