HomeSort by relevance Sort by last modified time
    Searched defs:endl (Results 101 - 125 of 908) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/eigen/doc/snippets/
Matrix_setRandom_int_int.cpp 3 cout << m << endl; variable
Matrix_setZero_int.cpp 3 cout << v << endl; variable
Matrix_setZero_int_int.cpp 3 cout << m << endl; variable
PartialRedux_count.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;
PartialRedux_maxCoeff.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the maximum of each column:" << endl << m.colwise().maxCoeff() << endl;
PartialRedux_minCoeff.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the minimum of each column:" << endl << m.colwise().minCoeff() << endl;
PartialRedux_norm.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the norm of each column:" << endl << m.colwise().norm() << endl;
PartialRedux_prod.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the product of each row:" << endl << m.rowwise().prod() << endl;
PartialRedux_squaredNorm.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the square norm of each row:" << endl << m.rowwise().squaredNorm() << endl;
PartialRedux_sum.cpp 2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
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
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/opencv3/samples/gpu/
cascadeclassifier_nvidia_api.cpp 25 std::cout << "CUDA support is required (CMake key 'WITH_CUDA' must be true)." << std::endl; member in class:std
29 std::cout << "Unsupported for ARM CUDA library." << std::endl; member in class:std
158 cout << "OpenCV / NVIDIA Computer Vision" << endl;
159 cout << "Face Detection in video and live feed" << endl;
160 cout << "Syntax: exename <cascade_file> <image_or_video_or_cameraid>" << endl;
161 cout << "=========================================" << endl;
217 "), arch=" << devProp.major << "." << devProp.minor << endl;
  /external/v8/tools/gyp/test/library_dirs/subdir/
hello.cc 9 std::cout << "Hello " << my_foo(99) << std::endl; member in class:std
  /external/v8/tools/gyp/test/mac/libraries/subdir/
hello.cc 8 std::cout << "Hello, world!" << 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;
  /ndk/sources/cxx-stl/llvm-libc++/test/
test_1.cc 28 // #9 std::__1::endl<char, std::__1::char_traits<char> > (__os=...) at jni/../../../libcxx/include/ostream:1181
30 // __pf=0x9e20 <std::__1::endl<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)>, this=0x80080) at jni/../../../libcxx/include/ostream:306
40 std::cout << "Hello World" << std::endl; member in class:std
  /ndk/tests/build/c++-stl-source-extensions/jni/
main.C 4 std::cout << "Hello World!" << std::endl; member in class:std

Completed in 475 milliseconds

1 2 3 45 6 7 8 91011>>