OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testMatrix
(Results
1 - 4
of
4
) sorted by null
/external/eigen/unsupported/test/
matrix_function.cpp
162
void
testMatrix
(const MatrixType& A)
179
testMatrix
(MatrixType::Random(size, size).eval());
180
testMatrix
(randomMatrixWithRealEivals<MatrixType>(size));
181
testMatrix
(randomMatrixWithImagEivals<MatrixType>::run(size));
/external/skia/tests/
SurfaceTest.cpp
61
SkMatrix
testMatrix
;
62
testMatrix
.reset();
63
testMatrix
.setScale(SkIntToScalar(2), SkIntToScalar(3));
127
EXPECT_COPY_ON_WRITE(drawBitmapMatrix(testBitmap,
testMatrix
, NULL))
Matrix44Test.cpp
100
SkMatrix44*
testMatrix
= new(placeholderMatrix) SkMatrix44(SkMatrix44::kUninitialized_Constructor);
101
REPORTER_ASSERT(reporter,
testMatrix
== placeholderMatrix);
102
REPORTER_ASSERT(reporter, !
testMatrix
->isIdentity());
105
REPORTER_ASSERT(reporter, nearly_equal_double(row * col,
testMatrix
->getDouble(row, col)));
110
testMatrix
= 0;
111
testMatrix
= new(placeholderMatrix) SkMatrix44(SkMatrix44::kIdentity_Constructor);
112
REPORTER_ASSERT(reporter,
testMatrix
== placeholderMatrix);
113
REPORTER_ASSERT(reporter,
testMatrix
->isIdentity());
114
REPORTER_ASSERT(reporter, *
testMatrix
== SkMatrix44::I());
CanvasTest.cpp
185
static SkMatrix
testMatrix
() {
191
const SkMatrix kTestMatrix =
testMatrix
();
[
all
...]
Completed in 158 milliseconds