HomeSort by relevance Sort by last modified time
    Searched full:cout (Results 76 - 100 of 770) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
MatrixBase_template_int_bottomRows.cpp 2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.bottomRows<2>():" << endl;
4 cout << a.bottomRows<2>() << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_template_int_int_bottomLeftCorner.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.bottomLeftCorner<2,2>():" << endl;
4 cout << m.bottomLeftCorner<2,2>() << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
MatrixBase_template_int_int_bottomRightCorner.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.bottomRightCorner<2,2>():" << endl;
4 cout << m.bottomRightCorner<2,2>() << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
MatrixBase_template_int_int_topLeftCorner.cpp 2 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;
MatrixBase_template_int_int_topRightCorner.cpp 2 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;
MatrixBase_template_int_leftCols.cpp 2 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;
MatrixBase_template_int_rightCols.cpp 2 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;
MatrixBase_template_int_topRows.cpp 2 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;
MatrixBase_topLeftCorner_int_int.cpp 2 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;
MatrixBase_topRightCorner_int_int.cpp 2 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;
MatrixBase_topRows_int.cpp 2 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;
Matrix_setConstant_int_int.cpp 3 cout << m << endl;
TopicAliasing_mult1.cpp 4 cout << matA;
tut_arithmetic_transpose_conjugate.cpp 2 cout << "Here is the matrix a\n" << a << endl;
4 cout << "Here is the matrix a^T\n" << a.transpose() << endl;
7 cout << "Here is the conjugate of a\n" << a.conjugate() << endl;
10 cout << "Here is the matrix a^*\n" << a.adjoint() << endl;
MatrixBase_reverse.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the reverse of m:" << endl << m.reverse() << endl;
4 cout << "Here is the coefficient (1,0) in the reverse of m:" << endl
6 cout << "Let us overwrite this coefficient with the value 4." << endl;
8 cout << "Now the matrix m is:" << endl << m << endl;
MatrixBase_transpose.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the transpose of m:" << endl << m.transpose() << endl;
4 cout << "Here is the coefficient (1,0) in the transpose of m:" << endl
6 cout << "Let us overwrite this coefficient with the value 0." << endl;
8 cout << "Now the matrix m is:" << endl << m << endl;
  /ndk/tests/build/c++-stl-source-extensions/jni/
main.C 4 std::cout << "Hello World!" << std::endl;
main.CPP 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.cp 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;
  /system/extras/tests/bionic/libc/common/
hello_world.cpp 6 cout << "Hello World" << endl;
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp 14 cout << "(a > 0).all() = " << (a > 0).all() << endl;
15 cout << "(a > 0).any() = " << (a > 0).any() << endl;
16 cout << "(a > 0).count() = " << (a > 0).count() << endl;
17 cout << endl;
18 cout << "(a > 2).all() = " << (a > 2).all() << endl;
19 cout << "(a > 2).any() = " << (a > 2).any() << endl;
20 cout << "(a > 2).count() = " << (a > 2).count() << endl;

Completed in 2652 milliseconds

1 2 34 5 6 7 8 91011>>