OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cout
(Results
276 - 300
of
687
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/using/h/
iostream.h
8
#if !defined(
cout
)
9
using _STLP_OLD_IO_NAMESPACE::
cout
;
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/using/h/
iostream.h
8
#if !defined(
cout
)
9
using _STLP_OLD_IO_NAMESPACE::
cout
;
/external/srec/tools/grxmlcompile/
testhashmap.cpp
49
std::
cout
<< "Index 1 has value= " << value <<std::endl;
51
std::
cout
<< "value " << value << " has index " << i <<std::endl;
54
std::
cout
<< "index " << i << " has numeric index " << j <<std::endl;
56
std::
cout
<< "value " << value << " has numeric index " << j <<std::endl;
76
std::
cout
<< "Index 1 has value= " << value <<std::endl;
78
std::
cout
<< "value " << value << " has index " << i <<std::endl;
81
std::
cout
<< "index " << i << " has numeric index " << j <<std::endl;
83
std::
cout
<< "value " << value << " has numeric index " << j <<std::endl;
87
std::
cout
<< "First iterator values are " << i <<", " << value <<std::endl;
89
std::
cout
<< "Iterator values are " << i <<", " << value <<std::endl
[
all
...]
/external/eigen/bench/btl/generic_bench/utils/
utilities.h
21
# define HEREWEARE
cout
<<flush ; cerr << __FILE__ << " [" << __LINE__ << "] : " << flush ;
23
# define PYSCRIPT(chain) {
cout
<<flush ; cerr << "---PYSCRIPT--- " << chain << endl ;}
44
cout
<< __FILE__ ;\
45
cout
<< " [" << __LINE__ << "] : " ;\
46
cout
<< "COMPILED with " << COMPILER ;\
47
cout
<< ", " << __DATE__ ; \
48
cout
<< " at " << __TIME__ << endl ;\
49
cout
<< "\n\n" ;\
50
cout
<< flush ;\
57
# define HERE
cout
<<flush ; cerr << "- Trace " << __FILE__ << " [" << __LINE__ << "] : " << flush
[
all
...]
/external/eigen/doc/examples/
QuickStart_example2_dynamic.cpp
11
cout
<< "m =" << endl << m << endl;
14
cout
<< "m * v =" << endl << m * v << endl;
QuickStart_example2_fixed.cpp
11
cout
<< "m =" << endl << m << endl;
14
cout
<< "m * v =" << endl << m * v << endl;
TutorialLinAlgSetThreshold.cpp
13
cout
<< "By default, the rank of A is found to be " << lu.rank() << endl;
15
cout
<< "With threshold 1e-5, the rank of A is found to be " << lu.rank() << endl;
Tutorial_ArrayClass_accessors.cpp
16
cout
<< m << endl << endl;
23
cout
<< m << endl;
Tutorial_ArrayClass_addition.cpp
19
cout
<< "a + b = " << endl << a + b << endl << endl;
22
cout
<< "a - 2 = " << endl << a - 2 << endl;
Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp
22
cout
<< "Nearest neighbour is column " << index << ":" << endl;
23
cout
<< m.col(index) << endl;
Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp
19
std::
cout
<< "Broadcasting result: " << std::endl;
20
std::
cout
<< mat << std::endl;
Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp
18
std::
cout
<< "Broadcasting result: " << std::endl;
19
std::
cout
<< mat << std::endl;
tut_matrix_coefficient_accessors.cpp
13
std::
cout
<< "Here is the matrix m:\n" << m << std::endl;
17
std::
cout
<< "Here is the vector v:\n" << v << std::endl;
/external/eigen/doc/snippets/
ComplexSchur_compute.cpp
4
cout
<< "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl;
6
cout
<< "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;
EigenSolver_compute.cpp
4
cout
<< "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
6
cout
<< "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
HessenbergDecomposition_compute.cpp
4
cout
<< "The matrix H in the decomposition of A is:" << endl << hd.matrixH() << endl;
6
cout
<< "The matrix H in the decomposition of 2A is:" << endl << hd.matrixH() << endl;
Jacobi_makeGivens.cpp
4
cout
<< "Here is the vector v:" << endl << v << endl;
6
cout
<< "Here is the vector J' * v:" << endl << v << endl
Jacobi_makeJacobi.cpp
5
cout
<< "Here is the matrix m:" << endl << m << endl;
8
cout
<< "Here is the matrix J' * m * J:" << endl << m << endl
Matrix_resize_NoChange_int.cpp
3
cout
<< "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
Matrix_resize_int_NoChange.cpp
3
cout
<< "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
RealSchur_compute.cpp
4
cout
<< "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl;
6
cout
<< "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;
SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp
5
cout
<< "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
7
cout
<< "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
SelfAdjointEigenSolver_compute_MatrixType.cpp
5
cout
<< "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
7
cout
<< "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
Tridiagonalization_householderCoefficients.cpp
3
cout
<< "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
6
cout
<< "The vector of Householder coefficients is:" << endl << hc << endl;
Tutorial_AdvancedInitialization_LinSpaced.cpp
6
std::
cout
<< " Degrees Radians Sine Cosine\n";
member in class:std
7
std::
cout
<< table << std::endl;
Completed in 295 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>