HomeSort by relevance Sort by last modified time
    Searched refs:cout (Results 1 - 25 of 958) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/asan/TestCases/Windows/
dll_cerr.cc 13 // 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/
MatrixBase_identity.cpp 0 cout << Matrix<double, 3, 4>::Identity() << endl;
MatrixBase_identity_int_int.cpp 0 cout << MatrixXd::Identity(4, 3) << endl;
MatrixBase_ones_int_int.cpp 0 cout << MatrixXi::Ones(2,3) << endl;
MatrixBase_random.cpp 0 cout << 100 * Matrix2i::Random() << endl;
MatrixBase_random_int.cpp 0 cout << VectorXi::Random(2) << endl;
MatrixBase_random_int_int.cpp 0 cout << MatrixXi::Random(2,3) << endl;
MatrixBase_zero_int_int.cpp 0 cout << MatrixXi::Zero(2,3) << endl;
MatrixBase_replicate.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "m.replicate<3,2>() = ..." << endl;
4 cout << m.replicate<3,2>() << endl;
MatrixBase_replicate_int_int.cpp 2 cout << "Here is the vector v:" << endl << v << endl;
3 cout << "v.replicate(2,5) = ..." << endl;
4 cout << v.replicate(2,5) << endl;
Cwise_plus.cpp 2 cout << v+5 << endl;
DenseBase_LinSpaced.cpp 0 cout << VectorXi::LinSpaced(4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(5,0.0,1.0).transpose() << endl;
MatrixBase_ones.cpp 0 cout << Matrix2d::Ones() << endl;
2 cout << 6 * RowVector4i::Ones() << endl;
MatrixBase_ones_int.cpp 0 cout << 6 * RowVectorXi::Ones(4) << endl;
2 cout << VectorXf::Ones(2) << endl;
MatrixBase_zero.cpp 0 cout << Matrix2d::Zero() << endl;
2 cout << RowVector4i::Zero() << endl;
MatrixBase_zero_int.cpp 0 cout << RowVectorXi::Zero(4) << endl;
2 cout << VectorXf::Zero(2) << endl;
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;
Cwise_minus.cpp 2 cout << v-5 << endl;
DenseBase_LinSpacedInt.cpp 0 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;
  /external/ImageMagick/Magick++/tests/
exceptions.cpp 23 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.flush()
    [all...]
  /external/clang/utils/perf-training/cxx/
hello_world.cpp 6 std::cout << "Hello, World!"; member in class:std
  /external/libcxx/test/std/input.output/iostream.objects/narrow.stream.objects/
cout.pass.cpp 14 // 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;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.objects/narrow.stream.objects/
cin.pass.cpp 20 std::cout << "Hello World!\n";
22 std::cout << "Enter a number: ";
24 std::cout << "The number is : " << i << '\n';
26 assert(std::cin.tie() == &std::cout);
cout.pass.cpp 12 // istream cout;
19 std::cout << "Hello World!\n";
21 std::cout << "Enter a number: ";
23 std::cout << "The number is : " << i << '\n';
25 (void)std::cout;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.objects/narrow.stream.objects/
cout.pass.cpp 14 // 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;

Completed in 521 milliseconds

1 2 3 4 5 6 7 8 91011>>