HomeSort by relevance Sort by last modified time
    Searched refs:cout (Results 151 - 175 of 777) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/eigen/doc/snippets/
Tridiagonalization_compute.cpp 5 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;
Tutorial_commainit_01.cpp 5 std::cout << m;
Tutorial_solve_multiple_rhs.cpp 7 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;
Tutorial_solve_reuse_decomposition.cpp 8 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;
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;
  /ndk/tests/build/c++-stl-source-extensions/jni/
main.C 4 std::cout << "Hello World!" << std::endl;
main.c++ 4 std::cout << "Hello World!" << std::endl;
main.cc 4 std::cout << "Hello World!" << std::endl;
main.cpp 4 std::cout << "Hello World!" << std::endl;
main.cxx 4 std::cout << "Hello World!" << std::endl;
  /ndk/tests/build/prebuild-stlport/jni/
build_stlport.cpp 20 std::cout << "Hello Stlport!" << std::endl;
  /ndk/tests/device/issue22165-typeinfo/jni/
main.cpp 10 std::cout << "call throw_an_exception()" << std::endl;
15 std::cout << "my_exception caught!" << std::endl;
17 std::cout << "ERROR: exception caught!" << std::endl;
21 std::cout << "finished" << std::endl;
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_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...]

Completed in 317 milliseconds

1 2 3 4 5 67 8 91011>>