Searched defs:endl (Results 1 - 25 of 438) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DCwise_minus_equal.cpp3 cout << v << endl; variable
H A DCwise_plus.cpp2 cout << v+5 << endl; variable
H A DCwise_plus_equal.cpp3 cout << v << endl; variable
H A DCwise_quotient.cpp2 cout << v/w << endl; variable
H A DCwise_slash_equal.cpp3 cout << v << endl; variable
H A DCwise_times_equal.cpp3 cout << v << endl; variable
H A DMatrixBase_array.cpp4 cout << v << endl; variable
H A DMatrixBase_isOrthogonal.cpp3 cout << "Here's the vector v:" << endl << v << endl; variable
4 cout << "Here's the vector w:" << endl << w << endl; variable
5 cout << "v.isOrthogonal(w) returns: " << v.isOrthogonal(w) << endl;
6 cout << "v.isOrthogonal(w,1e-3) returns: " << v.isOrthogonal(w,1e-3) << endl;
H A DMatrixBase_select.cpp6 cout << m << endl; variable
H A DMatrix_resize_int_int.cpp3 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
H A DTopicAliasing_block.cpp3 cout << "Here is the matrix mat:\n" << mat << endl; variable
7 cout << "After the assignment, mat = \n" << mat << endl; variable
H A DTopicAliasing_block_correct.cpp3 cout << "Here is the matrix mat:\n" << mat << endl; variable
7 cout << "After the assignment, mat = \n" << mat << endl; variable
H A Dtut_arithmetic_transpose_inplace.cpp2 cout << "Here is the initial matrix a:\n" << a << endl; variable
6 cout << "and after being transposed:\n" << a << endl variable
H A Dtut_matrix_assignment_resizing.cpp2 std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl; member in class:std
5 std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl; member in class:std
/external/chromium_org/tools/gyp/test/library_dirs/subdir/
H A Dhello.cc9 std::cout << "Hello " << my_foo(99) << std::endl; member in class:std
/external/chromium_org/tools/gyp/test/mac/libraries/subdir/
H A Dhello.cc8 std::cout << "Hello, world!" << std::endl; member in class:std
/external/eigen/doc/examples/
H A DQuickStart_example.cpp13 std::cout << m << std::endl; member in class:std
H A DTutorial_ArrayClass_accessors.cpp16 cout << m << endl << endl; local
23 cout << m << endl; local
H A DTutorial_ArrayClass_addition.cpp19 cout << "a + b = " << endl << a + b << endl << endl; local
22 cout << "a - 2 = " << endl << a - 2 << endl;
H A DTutorial_ArrayClass_interop.cpp19 cout << "-- Combination 1: --" << endl << result << endl << endl; local
21 cout << "-- Combination 2: --" << endl << result << endl << endl; local
H A DTutorial_ArrayClass_interop_matrix.cpp19 cout << "-- Matrix m*n: --" << endl << result << endl << endl; local
21 cout << "-- Array m*n: --" << endl << result << endl << endl; local
23 cout << "-- With cwiseProduct: --" << endl << result << endl << endl; local
25 cout << "-- Array m + 4: --" << endl << resul local
[all...]
H A DTutorial_ArrayClass_mult.cpp15 cout << "a * b = " << endl << a * b << endl; local
H A DTutorial_BlockOperations_colrow.cpp12 cout << "Here is the matrix m:" << endl << m << endl; local
13 cout << "2nd Row: " << m.row(1) << endl;
16 cout << m << endl; local
H A DTutorial_BlockOperations_print_block.cpp13 cout << "Block in the middle" << endl; local
14 cout << m.block<2,2>(1,1) << endl << endl; local
17 cout << "Block of size " << i << "x" << i << endl; local
18 cout << m.block(0,0,i,i) << endl << endl; local
H A DTutorial_BlockOperations_vector.cpp10 cout << "v.head(3) =" << endl << v.head(3) << endl << endl; local
11 cout << "v.tail<3>() = " << endl << v.tail<3>() << endl << endl; local
13 cout << "after 'v.segment(1,4) *= 2', v =" << endl << v << endl; local

Completed in 627 milliseconds

1234567891011>>