Searched refs:Matrix3F (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/ui/gfx/geometry/
H A Dmatrix3_unittest.cc16 Matrix3F zeros = Matrix3F::Zeros();
17 Matrix3F ones = Matrix3F::Ones();
18 Matrix3F identity = Matrix3F::Identity();
20 Matrix3F product_ones = Matrix3F::FromOuterProduct(
22 Matrix3F product_zeros = Matrix3F
[all...]
H A Dmatrix3_f.h13 class GFX_EXPORT Matrix3F { class in namespace:gfx
15 ~Matrix3F();
17 static Matrix3F Zeros();
18 static Matrix3F Ones();
19 static Matrix3F Identity();
20 static Matrix3F FromOuterProduct(const Vector3dF& a, const Vector3dF& bt);
22 bool IsEqual(const Matrix3F& rhs) const;
25 bool IsNear(const Matrix3F& rhs, float precision) const;
64 Matrix3F Inverse() const;
88 Vector3dF SolveEigenproblem(Matrix3F* eigenvector
[all...]
H A Dmatrix3_f.cc33 // This routine is separated from the Matrix3F::Determinant because in
52 Matrix3F::Matrix3F() { function in class:gfx::Matrix3F
55 Matrix3F::~Matrix3F() {
59 Matrix3F Matrix3F::Zeros() {
60 Matrix3F matrix;
66 Matrix3F Matrix3F
[all...]
/external/chromium_org/ui/gfx/
H A Dcolor_analysis.h111 GFX_EXPORT gfx::Matrix3F ComputeColorCovariance(const SkBitmap& bitmap);
H A Dcolor_analysis.cc419 gfx::Matrix3F ComputeColorCovariance(const SkBitmap& bitmap) {
422 gfx::Matrix3F covariance = gfx::Matrix3F::Zeros();
587 gfx::Matrix3F covariance = ComputeColorCovariance(source_bitmap);
588 gfx::Matrix3F eigenvectors = gfx::Matrix3F::Zeros();
H A Dcolor_analysis_unittest.cc328 EXPECT_EQ(gfx::Matrix3F::Zeros(), ComputeColorCovariance(bitmap));
331 gfx::Matrix3F covariance = ComputeColorCovariance(bitmap);
333 EXPECT_TRUE(covariance == gfx::Matrix3F::Zeros());
348 gfx::Matrix3F covariance = ComputeColorCovariance(bitmap);
350 gfx::Matrix3F expected_covariance = gfx::Matrix3F::Zeros();

Completed in 74 milliseconds