/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/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/libvpx/libvpx/third_party/googletest/src/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...] |
/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;
|
MatrixBase_diagonal_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
|
MatrixBase_diagonal_template_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
|
Matrix_resize_int.cpp | 5 cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" << endl; 6 cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" << endl;
|
PartialRedux_count.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;
|
/external/eigen/doc/examples/ |
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;
|