HomeSort by relevance Sort by last modified time
    Searched defs:endl (Results 126 - 150 of 897) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/eigen/doc/snippets/
TopicAliasing_cwise.cpp 3 cout << "Here is the matrix mat:\n" << mat << endl << endl; variable
6 cout << "After 'mat = 2 * mat', mat = \n" << mat << endl << endl; variable
10 cout << "After the subtraction, it becomes\n" << mat << endl << endl; variable
15 cout << "After squaring, it becomes\n" << arr << endl << endl; variable
20 cout << "Doing everything at once yields\n" << mat << endl << endl; variable
    [all...]
TopicAliasing_mult2.cpp 6 cout << matB << endl << endl; variable
Tutorial_AdvancedInitialization_Block.cpp 5 std::cout << matB << std::endl; member in class:std
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_LinSpaced.cpp 7 std::cout << table << std::endl; member in class:std
Tutorial_AdvancedInitialization_ThreeWays.cpp 7 std::cout << mat1 << std::endl << std::endl; member in class:std
14 std::cout << mat2 << std::endl << std::endl; member in class:std
19 std::cout << mat3 << std::endl; member in class:std
Tutorial_SlicingVec.cpp 2 cout << "Input:" << endl << v << endl; variable
4 cout << "Even:" << v2 << endl variable
Vectorwise_reverse.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the rowwise reverse of m:" << endl << m.rowwise().reverse() << endl;
4 cout << "Here is the colwise reverse of m:" << endl << m.colwise().reverse() << endl;
6 cout << "Here is the coefficient (1,0) in the rowise reverse of m:" << endl
7 << m.rowwise().reverse()(1,0) << endl;
8 cout << "Let us overwrite this coefficient with the value 4." << endl; variable
10 cout << "Now the matrix m is:" << endl << m << endl variable
    [all...]
tut_arithmetic_transpose_aliasing.cpp 2 cout << "Here is the matrix a:\n" << a << endl; variable
5 cout << "and the result of the aliasing effect:\n" << a << endl variable
tut_arithmetic_transpose_conjugate.cpp 2 cout << "Here is the matrix a\n" << a << endl; variable
4 cout << "Here is the matrix a^T\n" << a.transpose() << endl;
7 cout << "Here is the conjugate of a\n" << a.conjugate() << endl;
10 cout << "Here is the matrix a^*\n" << a.adjoint() << endl;
  /external/tensorflow/tensorflow/contrib/makefile/test/
test_main.cc 23 std::cout << "Running main() from test_main.cc" << std::endl; member in class:std
  /external/zlib/src/contrib/iostream/
test.cpp 12 os << "Hello, Mommy" << endl; local
15 os << "hello, hello, hi, ho!" << endl; local
18 << "I'm compressing again" << endl;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/thin_heap_/
trace_fn_imps.hpp 48 std::cerr << std::endl; member in class:std
49 std::cerr << "m_p_max " << m_p_max << std::endl; member in class:std
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/thin_heap_/
trace_fn_imps.hpp 48 std::cerr << std::endl; member in class:std
49 std::cerr << "m_p_max " << m_p_max << std::endl; member in class:std
  /toolchain/binutils/binutils-2.27/zlib/contrib/iostream/
test.cpp 12 os << "Hello, Mommy" << endl; local
15 os << "hello, hello, hi, ho!" << endl; local
18 << "I'm compressing again" << endl;
  /art/test/656-annotation-lookup-generic-jni/
test.cc 25 std::cout << "Java_Test_nativeMethodWithAnnotation" << std::endl; member in class:art::std
  /external/ImageMagick/Magick++/demo/
detrans.cpp 21 cout << "Usage: " << argv[0] << " background_color file..." << endl; local
35 cout << error_.what() << endl;
53 cout << error_.what() << endl;
flip.cpp 38 // cout << "Total scenes: " << imageList.size() << endl;
49 cout << "Writing image \"flip_out.miff\" ..." << endl; local
55 cout << "Caught exception: " << error_.what() << endl;
shapes.cpp 103 cout << "Writing image \"shapes_out.miff\" ..." << endl; local
108 // cout << "Display image..." << endl;
114 cout << "Caught exception: " << error_.what() << endl;
  /external/clang/test/Modules/Inputs/PR24954/
A.h 8 os << B::endl; member in class:Expr::B
  /external/eigen/doc/examples/
DenseBase_middleCols_int.cpp 12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(1..3,:) =\n" << A.middleCols(1,3) << endl;
DenseBase_middleRows_int.cpp 12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(2..3,:) =\n" << A.middleRows(2,2) << endl;
DenseBase_template_int_middleCols.cpp 12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(:,1..3) =\n" << A.middleCols<3>(1) << endl;
DenseBase_template_int_middleRows.cpp 12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(1..3,:) =\n" << A.middleRows<3>(1) << endl;
QuickStart_example2_dynamic.cpp 11 cout << "m =" << endl << m << endl; local
14 cout << "m * v =" << endl << m * v << endl; local

Completed in 702 milliseconds

1 2 3 4 56 7 8 91011>>