OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:endl
(Results
176 - 200
of
1131
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/tests/build/c++-stl-source-extensions/jni/
main.cc
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.cp
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.cpp
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.cxx
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
/system/extras/tests/bionic/libc/common/
hello_world.cpp
6
cout << "Hello World" <<
endl
;
local
/external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp
14
cout << "(a > 0).all() = " << (a > 0).all() <<
endl
;
15
cout << "(a > 0).any() = " << (a > 0).any() <<
endl
;
16
cout << "(a > 0).count() = " << (a > 0).count() <<
endl
;
17
cout <<
endl
;
local
18
cout << "(a > 2).all() = " << (a > 2).all() <<
endl
;
19
cout << "(a > 2).any() = " << (a > 2).any() <<
endl
;
20
cout << "(a > 2).count() = " << (a > 2).count() <<
endl
;
Tutorial_ArrayClass_addition.cpp
19
cout << "a + b = " <<
endl
<< a + b <<
endl
<<
endl
;
local
22
cout << "a - 2 = " <<
endl
<< a - 2 <<
endl
;
Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp
18
cout << "v.squaredNorm() = " << v.squaredNorm() <<
endl
;
19
cout << "v.norm() = " << v.norm() <<
endl
;
20
cout << "v.lpNorm<1>() = " << v.lpNorm<1>() <<
endl
;
21
cout << "v.lpNorm<Infinity>() = " << v.lpNorm<Infinity>() <<
endl
;
23
cout <<
endl
;
local
24
cout << "m.squaredNorm() = " << m.squaredNorm() <<
endl
;
25
cout << "m.norm() = " << m.norm() <<
endl
;
26
cout << "m.lpNorm<1>() = " << m.lpNorm<1>() <<
endl
;
27
cout << "m.lpNorm<Infinity>() = " << m.lpNorm<Infinity>() <<
endl
;
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
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
;
tut_arithmetic_redux_basic.cpp
10
cout << "Here is mat.sum(): " << mat.sum() <<
endl
;
11
cout << "Here is mat.prod(): " << mat.prod() <<
endl
;
12
cout << "Here is mat.mean(): " << mat.mean() <<
endl
;
13
cout << "Here is mat.minCoeff(): " << mat.minCoeff() <<
endl
;
14
cout << "Here is mat.maxCoeff(): " << mat.maxCoeff() <<
endl
;
15
cout << "Here is mat.trace(): " << mat.trace() <<
endl
;
Tutorial_ArrayClass_mult.cpp
15
cout << "a * b = " <<
endl
<< a * b <<
endl
;
local
/external/eigen/doc/snippets/
FullPivLU_solve.cpp
3
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "Here is the matrix y:" <<
endl
<< y <<
endl
;
variable
8
cout << "Here is a solution x to the equation mx=y:" <<
endl
<< x <<
endl
;
variable
11
cout << "The equation mx=y does not have any solution." <<
endl
;
variable
LLT_example.cpp
3
cout << "The matrix A is" <<
endl
<< A <<
endl
;
variable
9
cout << "The Cholesky factor L is" <<
endl
<< L <<
endl
;
variable
10
cout << "To check this, let us compute L * L.transpose()" <<
endl
;
variable
11
cout << L * L.transpose() <<
endl
;
12
cout << "This should equal the matrix A" <<
endl
;
variable
Matrix_resize_int_int.cpp
3
cout << "here's the 2x3 matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "let's resize m to 3x2. This is a conservative resizing because 2*3==3*2." <<
endl
;
variable
6
cout << "here's the 3x2 matrix m:" <<
endl
<< m <<
endl
;
variable
7
cout << "now let's resize m to size 2x2. This is NOT a conservative resizing, so it becomes uninitialized:" <<
endl
;
variable
9
cout << m <<
endl
;
variable
class_FullPivLU.cpp
4
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
variable
7
<<
endl
<< lu.matrixLU() <<
endl
;
8
cout << "Here is the L part:" <<
endl
;
variable
11
cout << l <<
endl
;
variable
12
cout << "Here is the U part:" <<
endl
;
variable
14
cout << u <<
endl
;
variable
15
cout << "Let us now reconstruct the original matrix m:" <<
endl
;
variable
16
cout << lu.permutationP().inverse() * l * u * lu.permutationQ().inverse() <<
endl
;
[
all
...]
FullPivLU_image.cpp
5
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
variable
7
<< "columns are linearly dependent." <<
endl
;
variable
9
<<
endl
<< m.fullPivLu().image(m) <<
endl
;
AngleAxis_mimic_euler.cpp
5
cout << m <<
endl
<< "is unitary: " << m.isUnitary() <<
endl
;
ComplexEigenSolver_eigenvalues.cpp
4
<<
endl
<< ces.eigenvalues() <<
endl
;
ComplexEigenSolver_eigenvectors.cpp
4
<<
endl
<< ces.eigenvectors().col(1) <<
endl
;
EigenSolver_eigenvalues.cpp
4
<<
endl
<< es.eigenvalues() <<
endl
;
EigenSolver_eigenvectors.cpp
4
<<
endl
<< es.eigenvectors().col(1) <<
endl
;
MatrixBase_eigenvalues.cpp
3
cout << "The eigenvalues of the 3x3 matrix of ones are:" <<
endl
<< eivals <<
endl
;
variable
SelfAdjointEigenSolver_eigenvalues.cpp
4
<<
endl
<< es.eigenvalues() <<
endl
;
/external/zlib/src/contrib/iostream2/
zstream_test.cpp
17
cout << x <<
endl
<< y <<
endl
<< z <<
endl
;
20
out << setw(50) << setfill('#') << setprecision(20) << x <<
endl
<< y <<
endl
<< z <<
endl
;
21
out << z <<
endl
<< y <<
endl
<< x <<
endl
;
22
out << 1.1234567890123456789 <<
endl
;
[
all
...]
Completed in 176 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>