Searched refs:bmp_filename (Results 1 – 13 of 13) sorted by relevance
/third_party/boost/libs/gil/test/extension/io/ |
D | bmp_test.cpp | 39 backend_t backend = read_image_info( bmp_filename in BOOST_AUTO_TEST_CASE() 48 ifstream in( bmp_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE() 61 FILE* file = fopen( bmp_filename.c_str(), "rb" ); in BOOST_AUTO_TEST_CASE() 74 fs::path my_path( bmp_filename ); in BOOST_AUTO_TEST_CASE() 91 read_image( bmp_filename, img, tag_t() ); in BOOST_AUTO_TEST_CASE() 98 ifstream in( bmp_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE() 108 FILE* file = fopen( bmp_filename.c_str(), "rb" ); in BOOST_AUTO_TEST_CASE() 118 fs::path my_path( bmp_filename ); in BOOST_AUTO_TEST_CASE() 132 read_and_convert_image( bmp_filename, img, tag_t() ); in BOOST_AUTO_TEST_CASE() 139 ifstream in( bmp_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE() [all …]
|
D | make.cpp | 37 …d< const char*, bmp_tag >::type backend_char = make_reader_backend( bmp_filename.c_str(), bmp_ta… in BOOST_AUTO_TEST_CASE() 38 …kend< std::string, bmp_tag >::type backend_string = make_reader_backend( bmp_filename, bmp_tag() ); in BOOST_AUTO_TEST_CASE() 40 FILE* file = fopen( bmp_filename.c_str(), "rb" ); in BOOST_AUTO_TEST_CASE() 43 ifstream in( bmp_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE() 46 fs::path my_path( bmp_filename ); in BOOST_AUTO_TEST_CASE() 52 …d< const char*, bmp_tag >::type backend_char = make_reader_backend( bmp_filename.c_str(), image_… in BOOST_AUTO_TEST_CASE() 53 …d< std::string, bmp_tag >::type backend_string = make_reader_backend( bmp_filename, image_read_set… in BOOST_AUTO_TEST_CASE() 55 FILE* file = fopen( bmp_filename.c_str(), "rb" ); in BOOST_AUTO_TEST_CASE() 58 ifstream in( bmp_filename.c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE() 61 fs::path my_path( bmp_filename ); in BOOST_AUTO_TEST_CASE() [all …]
|
D | bmp_old_test.cpp | 28 boost::gil::point_t dim = bmp_read_dimensions(bmp_filename); in BOOST_AUTO_TEST_CASE() 36 bmp_read_image( bmp_filename, img ); in BOOST_AUTO_TEST_CASE() 45 bmp_read_and_convert_image( bmp_filename, img ); in BOOST_AUTO_TEST_CASE() 54 bmp_read_view( bmp_filename, view( img ) ); in BOOST_AUTO_TEST_CASE() 60 bmp_read_and_convert_view( bmp_filename, view( img ) ); in BOOST_AUTO_TEST_CASE() 87 bmp_read_image( bmp_filename.c_str() in BOOST_AUTO_TEST_CASE()
|
D | all_formats_test.cpp | 34 read_image( bmp_filename, img, bmp_tag() ); in BOOST_AUTO_TEST_CASE()
|
D | paths.hpp | 61 static const std::string bmp_filename(bmp_in + "test.bmp"); variable
|
D | simple_all_formats.cpp | 28 gil::read_image(bmp_filename, img, gil::bmp_tag()); in test_bmp()
|
D | bmp_read_test.cpp | 44 backend_t backend = read_image_info( bmp_filename in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/gil/test/extension/io/bmp/ |
D | bmp_test.cpp | 32 backend_t backend = read_image_info(bmp_filename, gil::bmp_tag()); in test_read_image_info_using_string() 38 std::ifstream in(bmp_filename.c_str(), std::ios::binary); in test_read_image_info_using_string() 46 FILE *file = fopen(bmp_filename.c_str(), "rb"); in test_read_image_info_using_string() 54 fs::path my_path(bmp_filename); in test_read_image_info_using_string() 67 read_image(bmp_filename, img, gil::bmp_tag()); in test_read_image() 73 std::ifstream in(bmp_filename.c_str(), std::ios::binary); in test_read_image() 82 FILE *file = fopen(bmp_filename.c_str(), "rb"); in test_read_image() 91 fs::path my_path(bmp_filename); in test_read_image() 105 read_and_convert_image(bmp_filename, img, gil::bmp_tag()); in test_read_and_convert_image() 111 std::ifstream in(bmp_filename.c_str(), std::ios::binary); in test_read_and_convert_image() [all …]
|
D | bmp_make.cpp | 36 gil::make_reader_backend(bmp_filename.c_str(), gil::bmp_tag()); in test_make_reader_backend() 38 gil::make_reader_backend(bmp_filename, gil::bmp_tag()); in test_make_reader_backend() 40 FILE* file = fopen(bmp_filename.c_str(), "rb"); in test_make_reader_backend() 44 std::ifstream in(bmp_filename.c_str(), std::ios::binary); in test_make_reader_backend() 48 fs::path my_path(bmp_filename); in test_make_reader_backend() 56 … gil::make_reader_backend(bmp_filename.c_str(), gil::image_read_settings<gil::bmp_tag>()); in test_make_reader_backend() 58 gil::make_reader_backend(bmp_filename, gil::image_read_settings<gil::bmp_tag>()); in test_make_reader_backend() 60 FILE* file = fopen(bmp_filename.c_str(), "rb"); in test_make_reader_backend() 64 std::ifstream in(bmp_filename.c_str(), std::ios::binary); in test_make_reader_backend() 68 fs::path my_path(bmp_filename); in test_make_reader_backend() [all …]
|
D | bmp_old_test.cpp | 22 boost::gil::point_t dim = gil::bmp_read_dimensions(bmp_filename); in test_old_read_dimensions() 30 gil::bmp_read_image(bmp_filename, img); in test_old_read_image() 39 gil::bmp_read_and_convert_image(bmp_filename, img); in test_old_read_and_convert_image() 48 gil::bmp_read_view(bmp_filename, view(img)); in test_old_read_view() 54 gil::bmp_read_and_convert_view(bmp_filename, view(img)); in test_old_read_and_convert_view() 75 gil::bmp_read_image(bmp_filename.c_str(), image); in test_old_dynamic_image()
|
D | bmp_read_test.cpp | 30 backend_t backend = gil::read_image_info(bmp_filename, gil::bmp_tag()); in test_read_header()
|
/third_party/boost/libs/gil/doc/html/_sources/ |
D | io.rst.txt | 179 backend_t backend = read_image_info( bmp_filename
|
/third_party/boost/libs/gil/doc/ |
D | io.rst | 179 backend_t backend = read_image_info( bmp_filename
|