HomeSort by relevance Sort by last modified time
    Searched full:endl (Results 226 - 250 of 1375) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/issue22165-typeinfo/jni/
main.cpp 10 std::cout << "call throw_an_exception()" << std::endl; member in class:std
15 std::cout << "my_exception caught!" << std::endl;
17 std::cout << "ERROR: exception caught!" << std::endl;
21 std::cout << "finished" << std::endl; member in class:std
  /prebuilts/misc/common/swig/include/2.0.11/python/
std_iostream.i 3 %callback(1) endl;
  /external/eigen/doc/examples/
TutorialLinAlgInverseDeterminant.cpp 13 cout << "Here is the matrix A:\n" << A << endl; local
14 cout << "The determinant of A is " << A.determinant() << endl;
15 cout << "The inverse of A is:\n" << A.inverse() << endl;
class_CwiseUnaryOp_ptrfun.cpp 18 cout << m1 << endl << "becomes: " << endl << m1.unaryExpr(ptr_fun(ramp)) << endl;
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;
tut_arithmetic_matrix_mul.cpp 11 std::cout << "Here is mat*mat:\n" << mat*mat << std::endl; member in class:std
12 std::cout << "Here is mat*u:\n" << mat*u << std::endl; member in class:std
13 std::cout << "Here is u^T*mat:\n" << u.transpose()*mat << std::endl; member in class:std
14 std::cout << "Here is u^T*v:\n" << u.transpose()*v << std::endl; member in class:std
15 std::cout << "Here is u*v^T:\n" << u*v.transpose() << std::endl; member in class:std
16 std::cout << "Let's multiply mat by itself" << std::endl; member in class:std
18 std::cout << "Now mat is mat:\n" << mat << std::endl; member in class:std
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
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
TutorialLinAlgSVDSolve.cpp 10 cout << "Here is the matrix A:\n" << A << endl; local
12 cout << "Here is the right hand side b:\n" << b << endl; local
14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
TutorialLinAlgSelfAdjointEigenSolver.cpp 11 cout << "Here is the matrix A:\n" << A << endl; local
14 cout << "The eigenvalues of A are:\n" << eigensolver.eigenvalues() << endl;
17 << eigensolver.eigenvectors() << endl;
Tutorial_ArrayClass_accessors.cpp 16 cout << m << endl << endl; local
23 cout << m << endl; local
tut_arithmetic_dot_cross.cpp 11 cout << "Dot product: " << v.dot(w) << endl;
13 cout << "Dot product via a matrix product: " << dp << endl; local
14 cout << "Cross product:\n" << v.cross(w) << endl;
  /external/eigen/doc/snippets/
MatrixBase_cwiseEqual.cpp 4 cout << "Comparing m with identity matrix:" << endl; variable
5 cout << m.cwiseEqual(MatrixXi::Identity(2,2)) << endl;
7 cout << "Number of coefficients that are equal: " << count << endl; variable
MatrixBase_cwiseNotEqual.cpp 4 cout << "Comparing m with identity matrix:" << endl; variable
5 cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl;
7 cout << "Number of coefficients that are not equal: " << count << endl; variable
Tutorial_AdvancedInitialization_CommaTemporary.cpp 2 std::cout << mat << std::endl << std::endl; member in class:std
4 std::cout << mat << std::endl; member in class:std
Tutorial_AdvancedInitialization_Join.cpp 3 std::cout << "vec1 = " << vec1 << std::endl; member in class:std
7 std::cout << "vec2 = " << vec2 << std::endl; member in class:std
11 std::cout << "joined = " << joined << std::endl; member in class:std
Tutorial_Map_rowmajor.cpp 3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl;
4 cout << "Row-major:\n" << Map<Matrix<int,2,4,RowMajor> >(array) << endl;
6 Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
MatrixBase_marked.cpp 7 cout << "Here is the matrix m:" << endl << m << endl;
10 cout << "Here is the matrix n:" << endl << n << endl;
12 " m is upper-triangular:" << endl
Tutorial_Map_using.cpp 13 cout << "m1: " << m1 << endl; variable
14 cout << "m2: " << m2 << endl; variable
15 cout << "Squared euclidean distance: " << (m1-m2).squaredNorm() << endl;
17 (m1-m2map).squaredNorm() << endl;
19 cout << "Updated m2: " << m2 << endl; variable
20 cout << "m2 coefficient 2, constant accessor: " << m2mapconst(2) << endl;
GeneralizedEigenSolver.cpp 5 cout << "The (complex) numerators of the generalzied eigenvalues are: " << ges.alphas().transpose() << endl;
6 cout << "The (real) denominatore of the generalzied eigenvalues are: " << ges.betas().transpose() << endl;
7 cout << "The (complex) generalzied eigenvalues are (alphas./beta): " << ges.eigenvalues().transpose() << endl;
  /external/opencv3/samples/cpp/
npr_demo.cpp 33 cout << "usage: " << argv[0] << " <Input image> " << endl; local
43 cout << "Image not found" << endl; local
47 cout << endl; local
48 cout << " Edge Preserve Filter" << endl; local
49 cout << "----------------------" << endl; local
51 cout << "Options: " << endl; local
52 cout << endl; local
54 cout << "1) Edge Preserve Smoothing" << endl; local
55 cout << " -> Using Normalized convolution Filter" << endl; local
56 cout << " -> Using Recursive Filter" << endl; local
57 cout << "2) Detail Enhancement" << endl; local
58 cout << "3) Pencil sketch\/Color Pencil Drawing" << endl; local
59 cout << "4) Stylization" << endl; local
60 cout << endl; local
70 cout << endl; local
    [all...]
cout_mat.cpp 24 << endl; local
33 cout << "I = \n" << I << ";" << endl << endl; local
38 cout << "r (default) = \n" << r << ";" << endl << endl; local
39 cout << "r (matlab) = \n" << format(r, Formatter::FMT_MATLAB) << ";" << endl << endl; local
40 cout << "r (python) = \n" << format(r, Formatter::FMT_PYTHON) << ";" << endl << endl; local
41 cout << "r (numpy) = \n" << format(r, Formatter::FMT_NUMPY) << ";" << endl << endl local
42 cout << "r (csv) = \\n" << format(r, Formatter::FMT_CSV) << ";" << endl << endl; local
43 cout << "r (c) = \\n" << format(r, Formatter::FMT_C) << ";" << endl << endl; local
46 cout << "p = " << p << ";" << endl; local
49 cout << "p3f = " << p3f << ";" << endl; local
62 cout << "points = " << points << ";" << endl; local
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/photo/non_photorealistic_rendering/
npr_demo.cpp 32 cout << "usage: " << argv[0] << " <Input image> " << endl; local
42 cout << "Image not found" << endl; local
46 cout << endl; local
47 cout << " Edge Preserve Filter" << endl; local
48 cout << "----------------------" << endl; local
50 cout << "Options: " << endl; local
51 cout << endl; local
53 cout << "1) Edge Preserve Smoothing" << endl; local
54 cout << " -> Using Normalized convolution Filter" << endl; local
55 cout << " -> Using Recursive Filter" << endl; local
56 cout << "2) Detail Enhancement" << endl; local
57 cout << "3) Pencil sketch\/Color Pencil Drawing" << endl; local
58 cout << "4) Stylization" << endl; local
59 cout << endl; local
69 cout << endl; local
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/core/file_input_output/
file_input_output.cpp 10 cout << endl
11 << av[0] << " shows the usage of the OpenCV serialization functionality." << endl
12 << "usage: " << endl
13 << av[0] << " outputfile.yml.gz" << endl
15 << "specifying this in its extension like xml.gz yaml.gz etc... " << endl
16 << "With FileStorage you can serialize objects in OpenCV by using the << and >> operators" << endl
17 << "For example: - create a class and have it serialized" << endl
18 << " - use it to read and write matrices." << endl; local
96 cout << "Write Done." << endl; local
100 cout << endl << "Reading: " << endl local
110 cerr << "Failed to open " << filename << endl; local
118 cerr << "strings is not a sequence! FAIL" << endl; local
124 cout << (string)*it << endl; local
129 cout << "One " << (int)(n["One"]) << endl << endl; local
140 << "R = " << R << endl; local
141 cout << "T = " << T << endl << endl; local
142 cout << "MyData = " << endl << m << endl << endl; local
147 cout << endl << "NonExisting = " << endl << m << endl; local
151 << "Tip: Open up " << filename << " with a text editor to see the serialized data." << endl; local
    [all...]

Completed in 509 milliseconds

1 2 3 4 5 6 7 8 91011>>