/ndk/tests/device/issue22165-typeinfo/jni/ |
throwable.cpp | 8 std::cout << "throw_an_exception()" << std::endl;
|
/external/eigen/doc/examples/ |
TutorialLinAlgComputeTwice.cpp | 13 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;
|
tut_arithmetic_matrix_mul.cpp | 11 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;
|
DenseBase_middleCols_int.cpp | 12 cout << "A =\n" << A << '\n' << endl; 13 cout << "A(1..3,:) =\n" << A.middleCols(1,3) << endl;
|
DenseBase_middleRows_int.cpp | 12 cout << "A =\n" << A << '\n' << endl; 13 cout << "A(2..3,:) =\n" << A.middleRows(2,2) << endl;
|
DenseBase_template_int_middleCols.cpp | 12 cout << "A =\n" << A << '\n' << endl; 13 cout << "A(:,1..3) =\n" << A.middleCols<3>(1) << endl;
|
DenseBase_template_int_middleRows.cpp | 12 cout << "A =\n" << A << '\n' << endl; 13 cout << "A(1..3,:) =\n" << A.middleRows<3>(1) << endl;
|
/external/chromium/testing/gtest/test/ |
gtest_env_var_test_.cc | 43 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_FLAG(repeat) [all...] |
/external/chromium_org/testing/gtest/test/ |
gtest_env_var_test_.cc | 43 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_FLAG(repeat) [all...] |
/external/gtest/test/ |
gtest_env_var_test_.cc | 43 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_FLAG(repeat) [all...] |
/external/protobuf/gtest/test/ |
gtest_env_var_test_.cc | 43 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_FLAG(repeat) [all...] |
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_env_var_test_.cc | 43 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_FLAG(repeat) [all...] |
/external/eigen/doc/snippets/ |
Tutorial_Map_using.cpp | 13 cout << "m1: " << m1 << endl; 14 cout << "m2: " << m2 << endl; 15 cout << "Squared euclidean distance: " << (m1-m2).squaredNorm() << endl; 16 cout << "Squared euclidean distance, using map: " << 19 cout << "Updated m2: " << m2 << endl; 20 cout << "m2 coefficient 2, constant accessor: " << m2mapconst(2) << endl;
|
ComplexSchur_matrixT.cpp | 2 cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl; 4 cout << "The triangular matrix T is:" << endl << schurOfA.matrixT() << endl;
|
ComplexSchur_matrixU.cpp | 2 cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl; 4 cout << "The unitary matrix U is:" << endl << schurOfA.matrixU() << endl;
|
Cwise_boolean_and.cpp | 2 cout << ((v<w) && (v<0)) << endl;
|
Cwise_boolean_or.cpp | 2 cout << ((v<w) || (v<0)) << endl;
|
Cwise_cos.cpp | 2 cout << v.cos() << endl;
|
Cwise_max.cpp | 2 cout << v.max(w) << endl;
|
Cwise_min.cpp | 2 cout << v.min(w) << endl;
|
Cwise_sin.cpp | 2 cout << v.sin() << endl;
|
Cwise_tan.cpp | 2 cout << v.tan() << endl;
|
MatrixBase_cwiseMax.cpp | 2 cout << v.cwiseMax(w) << endl;
|
MatrixBase_cwiseMin.cpp | 2 cout << v.cwiseMin(w) << endl;
|
MatrixBase_cwiseQuotient.cpp | 2 cout << v.cwiseQuotient(w) << endl;
|