Searched refs:endl (Results 226 - 250 of 636) sorted by relevance

1234567891011>>

/external/eigen/doc/examples/
H A DTutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp15 std::cout << "Maximum sum at position " << maxIndex << std::endl; member in class:std
17 std::cout << "The corresponding vector is: " << std::endl; member in class:std
18 std::cout << mat.col( maxIndex ) << std::endl; member in class:std
19 std::cout << "And its sum is is: " << maxNorm << std::endl; member in class:std
H A Dtut_matrix_resize.cpp11 << m.rows() << "x" << m.cols() << std::endl; member in class:std
12 std::cout << "It has " << m.size() << " coefficients" << std::endl; member in class:std
15 std::cout << "The vector v is of size " << v.size() << std::endl; member in class:std
17 << v.rows() << "x" << v.cols() << std::endl; member in class:std
H A DTutorialLinAlgExSolveColPivHouseholderQR.cpp13 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
H A DTutorialLinAlgExSolveLDLT.cpp12 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
H A DTutorialLinAlgSVDSolve.cpp10 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;
H A DTutorialLinAlgSelfAdjointEigenSolver.cpp11 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;
H A DTutorial_ArrayClass_accessors.cpp16 cout << m << endl << endl; local
23 cout << m << endl; local
H A Dclass_CwiseUnaryOp_ptrfun.cpp18 cout << m1 << endl << "becomes: " << endl << m1.unaryExpr(ptr_fun(ramp)) << endl;
H A Dtut_arithmetic_dot_cross.cpp11 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;
H A Dtut_arithmetic_add_sub.cpp14 std::cout << "a + b =\n" << a + b << std::endl; member in class:std
15 std::cout << "a - b =\n" << a - b << std::endl;
16 std::cout << "Doing a += b;" << std::endl; member in class:std
18 std::cout << "Now a =\n" << a << std::endl; member in class:std
21 std::cout << "-v + w - v =\n" << -v + w - v << std::endl;
/external/eigen/doc/snippets/
H A DDenseBase_setLinSpaced.cpp3 cout << v << endl; variable
H A DMatrixBase_array.cpp4 cout << v << endl; variable
H A DMatrixBase_col.cpp3 cout << m << endl; variable
H A DMatrixBase_row.cpp3 cout << m << endl; variable
H A DMatrixBase_setIdentity.cpp3 cout << m << endl; variable
H A DMatrixBase_setOnes.cpp3 cout << m << endl; variable
H A DMatrixBase_setRandom.cpp3 cout << m << endl; variable
H A DMatrixBase_setZero.cpp3 cout << m << endl; variable
H A DSelfAdjointEigenSolver_compute_MatrixType2.cpp7 cout << "The eigenvalues of the pencil (A,B) are:" << endl << es.eigenvalues() << endl;
9 cout << "The eigenvalues of the pencil (B,A) are:" << endl << es.eigenvalues() << endl;
H A DSelfAdjointView_operatorNorm.cpp3 << ones.selfadjointView<Lower>().operatorNorm() << endl;
H A DGeneralizedEigenSolver.cpp5 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;
H A DTutorial_AdvancedInitialization_Join.cpp3 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
H A DTutorial_Map_rowmajor.cpp3 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;
/external/lzma/CPP/7zip/UI/Console/
H A DMainAr.cpp62 (*g_StdStream) << endl << kUserBreak;
67 (*g_StdStream) << kExceptionErrorMessage << e << endl;
79 (*g_StdStream) << endl << kUserBreak;
84 (*g_StdStream) << endl << endl << "System error:" << endl << message << endl;
89 (*g_StdStream) << kInternalExceptionMessage << exitCode << endl;
95 (*g_StdStream) << endl << multipleErrors.NumErrors << " errors" << endl;
[all...]
/external/lldb/test/lang/cpp/stl/
H A Dmain.cpp16 std::cout << hello_world << std::endl; member in class:std
17 std::cout << hello_world.length() << std::endl; member in class:std
18 std::cout << hello_world[11] << std::endl; member in class:std
21 std::cout << "size of upon construction associative_array: " << associative_array.size() << std::endl; member in class:std
26 std::cout << "size of associative_array: " << associative_array.size() << std::endl; member in class:std

Completed in 125 milliseconds

1234567891011>>