Searched refs:cout (Results 1 - 25 of 655) sorted by relevance

1234567891011>>

/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_cerr.cc13 // Just make sure we can use cout.
14 std::cout << "All ok\n"; member in class:std
20 std::cout << 42; member in class:std
/external/eigen/doc/snippets/
H A DMatrixBase_identity.cpp0 cout << Matrix<double, 3, 4>::Identity() << endl;
H A DMatrixBase_identity_int_int.cpp0 cout << MatrixXd::Identity(4, 3) << endl;
H A DMatrixBase_ones_int_int.cpp0 cout << MatrixXi::Ones(2,3) << endl;
H A DMatrixBase_random.cpp0 cout << 100 * Matrix2i::Random() << endl;
H A DMatrixBase_random_int.cpp0 cout << VectorXi::Random(2) << endl;
H A DMatrixBase_random_int_int.cpp0 cout << MatrixXi::Random(2,3) << endl;
H A DMatrixBase_zero_int_int.cpp0 cout << MatrixXi::Zero(2,3) << endl;
H A DMatrixBase_replicate.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "m.replicate<3,2>() = ..." << endl;
4 cout << m.replicate<3,2>() << endl;
H A DMatrixBase_replicate_int_int.cpp2 cout << "Here is the vector v:" << endl << v << endl;
3 cout << "v.replicate(2,5) = ..." << endl;
4 cout << v.replicate(2,5) << endl;
H A DCwise_plus.cpp2 cout << v+5 << endl;
H A DDenseBase_LinSpaced.cpp0 cout << VectorXi::LinSpaced(4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(5,0.0,1.0).transpose() << endl;
H A DMatrixBase_ones.cpp0 cout << Matrix2d::Ones() << endl;
2 cout << 6 * RowVector4i::Ones() << endl;
H A DMatrixBase_ones_int.cpp0 cout << 6 * RowVectorXi::Ones(4) << endl;
2 cout << VectorXf::Ones(2) << endl;
H A DMatrixBase_zero.cpp0 cout << Matrix2d::Zero() << endl;
2 cout << RowVector4i::Zero() << endl;
H A DMatrixBase_zero_int.cpp0 cout << RowVectorXi::Zero(4) << endl;
2 cout << VectorXf::Zero(2) << endl;
H A Dtut_arithmetic_transpose_conjugate.cpp2 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;
H A DCwise_minus.cpp2 cout << v-5 << endl;
H A DDenseBase_LinSpacedInt.cpp0 cout << "Even spacing inputs:" << endl;
2 cout << VectorXi::LinSpaced(8,1,4).transpose() << endl;
3 cout << VectorXi::LinSpaced(8,1,8).transpose() << endl;
4 cout << VectorXi::LinSpaced(8,1,15).transpose() << endl;
5 cout << "Uneven spacing inputs:" << endl;
6 cout << VectorXi::LinSpaced(8,1,7).transpose() << endl;
7 cout << VectorXi::LinSpaced(8,1,9).transpose() << endl;
8 cout << VectorXi::LinSpaced(8,1,16).transpose() << endl;
H A DMatrixBase_asDiagonal.cpp0 cout << Matrix3i(Vector3i(2,5,6).asDiagonal()) << endl;
H A DTopicStorageOrders_example.cpp5 cout << "The matrix A:" << endl;
6 cout << Acolmajor << endl << endl;
8 cout << "In memory (column-major):" << endl;
10 cout << *(Acolmajor.data() + i) << " ";
11 cout << endl << endl;
14 cout << "In memory (row-major):" << endl;
16 cout << *(Arowmajor.data() + i) << " ";
17 cout << endl;
/external/ImageMagick/Magick++/tests/
H A Dexceptions.cpp23 cout << "Checking for working exceptions (may crash) ... ";
24 cout.flush();
42 cout << "Throwing 'Magick::WarningResourceLimit' exception" << endl;
43 cout.flush();
48 cout << "Successfully caught 'Magick::WarningResourceLimit' exception" << endl;
49 cout.flush();
66 cout << "Throwing library 'Magick::Exception' exception" << endl;
67 cout.flush();
72 cout << "Successfully caught library 'Magick::Exception' exception" << endl;
73 cout
[all...]
/external/clang/utils/perf-training/cxx/
H A Dhello_world.cpp6 std::cout << "Hello, World!"; member in class:std
/external/libcxx/test/std/input.output/iostream.objects/narrow.stream.objects/
H A Dcout.pass.cpp14 // istream cout;
21 std::cout << "Hello World!\n";
23 std::cout << "Enter a number: ";
25 std::cout << "The number is : " << i << '\n';
27 (void)std::cout;
/external/eigen/doc/examples/
H A DTutorialInplaceLU.cpp3 init() { std::cout << "[" << "init" << "]" << std::endl; }
17 cout << "Here is the input matrix A before decomposition:\n" << A << endl;
18 cout << "[init]" << endl;
20 cout << "[declaration]" << endl;
22 cout << "Here is the input matrix A after decomposition:\n" << A << endl;
23 cout << "[declaration]" << endl;
25 cout << "[matrixLU]" << endl;
26 cout << "Here is the matrix storing the L and U factors:\n" << lu.matrixLU() << endl;
27 cout << "[matrixLU]" << endl;
29 cout << "[solv
[all...]

Completed in 257 milliseconds

1234567891011>>