HomeSort by relevance Sort by last modified time
    Searched refs:Matrix3F (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/ui/gfx/
matrix3_unittest.cc 16 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::FromOuterProduct
    [all...]
matrix3_f.h 13 class UI_EXPORT Matrix3F {
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* eigenvectors) const
    [all...]
matrix3_f.cc 33 // This routine is separated from the Matrix3F::Determinant because in
52 Matrix3F::Matrix3F() {
55 Matrix3F::~Matrix3F() {
59 Matrix3F Matrix3F::Zeros() {
60 Matrix3F matrix;
66 Matrix3F Matrix3F::Ones()
    [all...]
color_analysis.h 103 UI_EXPORT gfx::Matrix3F ComputeColorCovariance(const SkBitmap& bitmap);
color_analysis.cc 404 gfx::Matrix3F ComputeColorCovariance(const SkBitmap& bitmap) {
407 gfx::Matrix3F covariance = gfx::Matrix3F::Zeros();
554 gfx::Matrix3F covariance = ComputeColorCovariance(source_bitmap);
555 gfx::Matrix3F eigenvectors = gfx::Matrix3F::Zeros();
color_analysis_unittest.cc 288 EXPECT_EQ(gfx::Matrix3F::Zeros(),
292 gfx::Matrix3F covariance = color_utils::ComputeColorCovariance(bitmap);
294 EXPECT_TRUE(covariance == gfx::Matrix3F::Zeros());
309 gfx::Matrix3F covariance = color_utils::ComputeColorCovariance(bitmap);
311 gfx::Matrix3F expected_covariance = gfx::Matrix3F::Zeros();

Completed in 219 milliseconds