Searched refs:cout (Results 126 - 150 of 596) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DMatrixBase_template_int_leftCols.cpp2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.leftCols<2>():" << endl;
4 cout << a.leftCols<2>() << endl;
6 cout << "Now the array a is:" << endl << a << endl;
H A DMatrixBase_template_int_rightCols.cpp2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.rightCols<2>():" << endl;
4 cout << a.rightCols<2>() << endl;
6 cout << "Now the array a is:" << endl << a << endl;
H A DMatrixBase_template_int_topRows.cpp2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.topRows<2>():" << endl;
4 cout << a.topRows<2>() << endl;
6 cout << "Now the array a is:" << endl << a << endl;
H A DMatrixBase_topLeftCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.topLeftCorner(2, 2):" << endl;
4 cout << m.topLeftCorner(2, 2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
H A DMatrixBase_topRightCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.topRightCorner(2, 2):" << endl;
4 cout << m.topRightCorner(2, 2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
H A DMatrixBase_topRows_int.cpp2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.topRows(2):" << endl;
4 cout << a.topRows(2) << endl;
6 cout << "Now the array a is:" << endl << a << endl;
H A DMatrix_setConstant_int.cpp3 cout << v << endl;
H A DMatrix_setConstant_int_int.cpp3 cout << m << endl;
H A DMatrix_setIdentity_int_int.cpp3 cout << m << endl;
H A DMatrix_setOnes_int.cpp3 cout << v << endl;
H A DMatrix_setOnes_int_int.cpp3 cout << m << endl;
H A DMatrix_setRandom_int.cpp3 cout << v << endl;
H A DMatrix_setRandom_int_int.cpp3 cout << m << endl;
H A DMatrix_setZero_int.cpp3 cout << v << endl;
H A DMatrix_setZero_int_int.cpp3 cout << m << endl;
H A DTopicAliasing_mult1.cpp4 cout << matA;
H A DTridiagonalization_compute.cpp5 cout << "The matrix T in the tridiagonal decomposition of A is: " << endl;
6 cout << tri.matrixT() << endl;
8 cout << "The matrix T in the tridiagonal decomposition of 2A is: " << endl;
9 cout << tri.matrixT() << endl;
H A DTutorial_commainit_01.cpp5 std::cout << m;
H A DTutorial_solve_multiple_rhs.cpp7 cout << "The solution with right-hand side (3,3,4) is:" << endl;
8 cout << X.col(0) << endl;
9 cout << "The solution with right-hand side (1,1,1) is:" << endl;
10 cout << X.col(1) << endl;
H A DTutorial_solve_reuse_decomposition.cpp8 cout << "The solution with right-hand side (3,3,4) is:" << endl;
9 cout << x << endl;
12 cout << "The solution with right-hand side (1,1,1) is:" << endl;
13 cout << x << endl;
/external/eigen/doc/examples/
H A DTutorialLinAlgComputeTwice.cpp13 cout << "Here is the matrix A:\n" << A << endl;
14 cout << "Here is the right hand side b:\n" << b << endl;
15 cout << "Computing LLT decomposition..." << endl;
17 cout << "The solution is:\n" << llt.solve(b) << endl;
19 cout << "The matrix A is now:\n" << A << endl;
20 cout << "Computing LLT decomposition..." << endl;
22 cout << "The solution is now:\n" << llt.solve(b) << endl;
H A Dtut_arithmetic_matrix_mul.cpp11 std::cout << "Here is mat*mat:\n" << mat*mat << std::endl;
12 std::cout << "Here is mat*u:\n" << mat*u << std::endl;
13 std::cout << "Here is u^T*mat:\n" << u.transpose()*mat << std::endl;
14 std::cout << "Here is u^T*v:\n" << u.transpose()*v << std::endl;
15 std::cout << "Here is u*v^T:\n" << u*v.transpose() << std::endl;
16 std::cout << "Let's multiply mat by itself" << std::endl;
18 std::cout << "Now mat is mat:\n" << mat << std::endl;
/external/chromium_org/testing/gtest/test/
H A Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure);
60 cout << GTEST_FLAG(catch_exceptions);
65 cout << GTEST_FLAG(color);
70 cout << GTEST_FLAG(death_test_style);
75 cout << GTEST_FLAG(death_test_use_fork);
80 cout << GTEST_FLAG(filter);
85 cout << GTEST_FLAG(output);
90 cout << GTEST_FLAG(print_time);
95 cout << GTEST_FLA
[all...]
/external/gtest/test/
H A Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure);
60 cout << GTEST_FLAG(catch_exceptions);
65 cout << GTEST_FLAG(color);
70 cout << GTEST_FLAG(death_test_style);
75 cout << GTEST_FLAG(death_test_use_fork);
80 cout << GTEST_FLAG(filter);
85 cout << GTEST_FLAG(output);
90 cout << GTEST_FLAG(print_time);
95 cout << GTEST_FLA
[all...]
/external/protobuf/gtest/test/
H A Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure);
60 cout << GTEST_FLAG(catch_exceptions);
65 cout << GTEST_FLAG(color);
70 cout << GTEST_FLAG(death_test_style);
75 cout << GTEST_FLAG(death_test_use_fork);
80 cout << GTEST_FLAG(filter);
85 cout << GTEST_FLAG(output);
90 cout << GTEST_FLAG(print_time);
95 cout << GTEST_FLA
[all...]

Completed in 4988 milliseconds

1234567891011>>