HomeSort by relevance Sort by last modified time
    Searched defs:endl (Results 276 - 300 of 908) sorted by null

<<11121314151617181920>>

  /external/ImageMagick/Magick++/tests/
averageImages.cpp 50 << averaged.signature() << endl;
58 cout << "Caught exception: " << error_.what() << endl;
63 cout << "Caught exception: " << error_.what() << endl;
69 cout << failures << " failures" << endl; local
coalesceImages.cpp 45 cout << "Caught exception: " << error_.what() << endl;
50 cout << "Caught exception: " << error_.what() << endl;
56 cout << failures << " failures" << endl; local
exceptions.cpp 42 cout << "Throwing 'Magick::WarningResourceLimit' exception" << endl; local
48 cout << "Successfully caught 'Magick::WarningResourceLimit' exception" << endl;
66 cout << "Throwing library 'Magick::Exception' exception" << endl; local
72 cout << "Successfully caught library 'Magick::Exception' exception" << endl;
81 cout << "Bogus catch: Caught exception: " << error_.what() << endl;
87 cout << "Bogus catch: Caught exception: " << error_.what() << endl;
94 cout << failures << " failures" << endl; local
98 cout << "Exception testing passed!" << endl; local
geometry.cpp 41 << endl; local
50 << endl; local
55 cout << "Caught exception: " << error_.what() << endl;
60 cout << "Caught exception: " << error_.what() << endl;
66 cout << failures << " failures" << endl; local
morphImages.cpp 48 << " rather than 21 as expected." << endl;
54 cout << "Caught exception: " << error_.what() << endl;
59 cout << "Caught exception: " << error_.what() << endl;
65 cout << failures << " failures" << endl; local
  /external/eigen/doc/examples/
MatrixBase_cwise_const.cpp 11 cout << "Here is the matrix m:" << endl << m << endl; local
13 cout << "And here is the matrix n:" << endl << n << endl; local
14 cout << "The coefficient-wise product of m and n is:" << endl; local
15 cout << m.cwise() * n << endl; local
16 cout << "Taking the cube of the coefficients of m yields:" << endl; local
17 cout << m.cwise().pow(3) << endl;
TemplateKeyword_flexible.cpp 17 std::cout << "m2 before copy:" << std::endl; member in class:std
18 std::cout << m2 << std::endl << std::endl; member in class:std
20 std::cout << "m2 after copy:" << std::endl; member in class:std
21 std::cout << m2 << std::endl << std::endl; member in class:std
TemplateKeyword_simple.cpp 15 std::cout << "m2 before copy:" << std::endl; member in class:std
16 std::cout << m2 << std::endl << std::endl; member in class:std
18 std::cout << "m2 after copy:" << std::endl; member in class:std
19 std::cout << m2 << std::endl << std::endl; member in class:std
TutorialLinAlgComputeTwice.cpp 13 cout << "Here is the matrix A:\n" << A << endl; local
14 cout << "Here is the right hand side b:\n" << b << endl; local
15 cout << "Computing LLT decomposition..." << endl; local
17 cout << "The solution is:\n" << llt.solve(b) << endl;
19 cout << "The matrix A is now:\n" << A << endl; local
20 cout << "Computing LLT decomposition..." << endl; local
22 cout << "The solution is now:\n" << llt.solve(b) << endl;
TutorialLinAlgExSolveColPivHouseholderQR.cpp 13 cout << "Here is the matrix A:\n" << A << endl; local
14 cout << "Here is the vector b:\n" << b << endl; local
16 cout << "The solution is:\n" << x << endl; local
TutorialLinAlgExSolveLDLT.cpp 12 cout << "Here is the matrix A:\n" << A << endl; local
13 cout << "Here is the right hand side b:\n" << b << endl; local
15 cout << "The solution is:\n" << x << endl; local
Tutorial_PartialLU_solve.cpp 14 cout << "Here is the matrix A:" << endl << A << endl; local
15 cout << "Here is the vector b:" << endl << b << endl; local
17 cout << "The solution is:" << endl << x << endl; local
function_taking_ref.cpp 15 cout << "matrix m:" << endl << m << endl << endl; local
16 cout << "inv_cond(m): " << inv_cond(m) << endl;
17 cout << "inv_cond(m(1:3,1:3)): " << inv_cond(m.topLeftCorner(3,3)) << endl;
18 cout << "inv_cond(m+I): " << inv_cond(m+Matrix4f::Identity()) << endl;
  /external/eigen/doc/snippets/
ComplexEigenSolver_compute.cpp 2 cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl; variable
6 cout << "The eigenvalues of A are:" << endl << ces.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << ces.eigenvectors() << endl << endl; variable
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; variable
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl variable
13 cout << "... and A * v = " << endl << A * v << endl << endl; variable
    [all...]
HouseholderQR_solve.cpp 4 cout << "Here is the matrix m:" << endl << m << endl; variable
5 cout << "Here is the matrix y:" << endl << y << endl; variable
9 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl; variable
LLT_solve.cpp 8 cout << xy << endl; variable
MatrixBase_computeInverseAndDetWithCheck.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
7 cout << "Its determinant is " << determinant << endl; variable
9 cout << "It is invertible, and its inverse is:" << endl << inverse << endl; variable
12 cout << "It is not invertible." << endl; variable
Tridiagonalization_Tridiagonalization_MatrixType.cpp 3 cout << "Here is a random symmetric 5x5 matrix:" << endl << A << endl << endl; variable
6 cout << "The orthogonal matrix Q is:" << endl << Q << endl; variable
8 cout << "The tridiagonal matrix T is:" << endl << T << endl << endl; variable
9 cout << "Q * T * Q^T = " << endl << Q * T * Q.transpose() << endl;
    [all...]
  /external/opencv3/modules/cudalegacy/test/
test_main.cpp 84 cout << "Run tests on all supported devices \n" << endl; local
91 cout << "Run tests on device " << device << " [" << info.name() << "] \n" << endl;
110 cerr << e.what() << endl;
115 cerr << "Unknown error" << endl;
  /external/opencv3/samples/cpp/example_cmake/
example.cpp 14 cout << "Built with OpenCV " << CV_VERSION << endl; local
20 cout << "Capture is opened" << endl; local
34 cout << "No capture" << endl; local
  /external/opencv3/samples/cpp/
image_sequence.cpp 16 << endl; local
32 cerr << "Failed to open the image sequence!\n" << endl; local
47 cout << "End of Sequence" << endl; local
imagelist_creator.cpp 12 using std::endl;
21 << "This will serialize this list of images or whatever with opencv's FileStorage framework" << endl; local
36 std::cerr << "fail! Please specify an output file, don't want to overwrite you images!" << endl; local
  /external/parameter-framework/upstream/remote-process/
main.cpp 49 cerr << "Unable to send command to target: " << strError << endl; local
57 cerr << "Unable to received answer from target: " << strError << endl; local
65 cerr << answerMessage.getAnswer() << endl;
70 cout << answerMessage.getAnswer() << endl;
83 cerr << "Missing arguments" << endl; local
84 cerr << "Usage: " << endl; local
85 cerr << "Send a single command:" << endl; local
86 cerr << "\t" << argv[0] << " hostname port command [argument[s]]" << endl; local
101 cerr << "Connection to '" << host << ":" << port << "' failed: " << e.what() << endl;
  /external/parameter-framework/upstream/skeleton-subsystem/test/
main.cpp 37 void info(const std::string &log) override { std::cout << "Info: " << log << std::endl; } member in class:final::std
39 void warning(const std::string &log) override { std::cerr << "Warning: " << log << std::endl; } member in class:final::std
50 std::cout << "Failed to start: " << errorMsg << std::endl; member in class:std
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
cjq4435.cxx 73 cout << "Exiting..." << endl; local

Completed in 1610 milliseconds

<<11121314151617181920>>