Home
last modified time | relevance | path

Searched refs:iends_with (Results 1 – 25 of 137) sorted by relevance

123456

/dports/www/wt/wt-4.6.1/examples/wt-homepage/
H A DSourceView.C67 if (boost::iends_with(fileName, ".h") in getLanguageFromFileExtension()
68 || boost::iends_with(fileName, ".C") in getLanguageFromFileExtension()
69 || boost::iends_with(fileName, ".cpp")) in getLanguageFromFileExtension()
71 else if (boost::iends_with(fileName, ".xml")) in getLanguageFromFileExtension()
73 else if (boost::iends_with(fileName, ".html")) in getLanguageFromFileExtension()
75 else if (boost::iends_with(fileName, ".java")) in getLanguageFromFileExtension()
77 else if (boost::iends_with(fileName, ".js")) in getLanguageFromFileExtension()
79 else if (boost::iends_with(fileName, ".css")) in getLanguageFromFileExtension()
170 if (!boost::iends_with(fileName, ".jar") in renderView()
171 && !boost::iends_with(fileName, ".war") in renderView()
[all …]
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/FileParsers/
H A DGeneralFileReader.h60 if (boost::algorithm::iends_with(path, ".maegz")) { in determineFormat()
64 } else if (boost::algorithm::iends_with(path, ".sdfgz")) { in determineFormat()
68 } else if (boost::algorithm::iends_with(path, ".gz")) { in determineFormat()
71 } else if (boost::algorithm::iends_with(path, ".zst") || in determineFormat()
72 boost::algorithm::iends_with(path, ".bz2") || in determineFormat()
73 boost::algorithm::iends_with(path, ".7z")) { in determineFormat()
82 if (boost::algorithm::iends_with(basename, "." + suffix)) { in determineFormat()
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/systems/base/
H A Dvoice_cache.cc46 using boost::iends_with;
94 if (iends_with(file_str, "ovk")) { in FindArchive()
96 } else if (iends_with(file_str, "nwk")) { in FindArchive()
98 } else if (iends_with(file_str, "koe")) { in FindArchive()
118 if (iends_with(file_str, "ogg")) { in FindUnpackedSample()
/dports/biology/pbbam/pbbam-0.18.0/src/
H A DDataSetIO.cpp83 if (boost::algorithm::iends_with(uri, ".xml")) in FromUri()
85 else if (boost::algorithm::iends_with(uri, ".bam")) in FromUri()
87 else if (boost::algorithm::iends_with(uri, ".fofn")) in FromUri()
89 else if (boost::algorithm::iends_with(uri, ".fasta") || in FromUri()
90 boost::algorithm::iends_with(uri, ".fa")) { in FromUri()
H A DDataSet.cpp117 if (boost::algorithm::iends_with(filename, ".fofn") || in DataSet()
118 boost::algorithm::iends_with(filename, ".bam") || in DataSet()
119 boost::algorithm::iends_with(filename, ".fasta") || in DataSet()
120 boost::algorithm::iends_with(filename, ".fa")) { in DataSet()
/dports/games/widelands/widelands-build21/src/editor/ui_menus/
H A Dmain_menu_save_map_make_directory.cc93 const bool has_map_extension = boost::iends_with(text, kWidelandsMapExtension) || in edit_changed()
94 boost::iends_with(text, kS2MapExtension1) || in edit_changed()
95 boost::iends_with(text, kS2MapExtension2); in edit_changed()
/dports/multimedia/aegisub/aegisub-3.2.2/src/
H A Dsubtitle_format_txt.cpp63 …return boost::iends_with(str, ".txt") && !(boost::iends_with(str, ".encore.txt") || boost::iends_w… in CanWriteFile()
H A Dass_attachment.cpp46 if (boost::iends_with(filename.get(), ".ttf")) in AssAttachment()
67 if (raw || !boost::iends_with(filename.get(), ".ttf")) return filename; in GetFileName()
/dports/graphics/openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/testrender/
H A Dtestrender.cpp241 if (Strutil::iends_with (imagefile, ".jpg") || in main()
242 Strutil::iends_with (imagefile, ".jpeg") || in main()
243 Strutil::iends_with (imagefile, ".gif") || in main()
244 Strutil::iends_with (imagefile, ".png")) { in main()
/dports/graphics/py-openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/testrender/
H A Dtestrender.cpp241 if (Strutil::iends_with (imagefile, ".jpg") || in main()
242 Strutil::iends_with (imagefile, ".jpeg") || in main()
243 Strutil::iends_with (imagefile, ".gif") || in main()
244 Strutil::iends_with (imagefile, ".png")) { in main()
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/slic3r/GUI/
H A D3DBed.cpp178 …return !texture.empty() && (boost::algorithm::iends_with(texture, ".png") || boost::algorithm::ien… in set_shape()
182 …return !model.empty() && boost::algorithm::iends_with(model, ".stl") && boost::filesystem::exists(… in set_shape()
376 if (boost::algorithm::iends_with(m_texture_filename, ".svg")) { in render_texture()
394 else if (boost::algorithm::iends_with(m_texture_filename, ".png")) { in render_texture()
432 … shader->set_uniform("svg_source", boost::algorithm::iends_with(m_texture.get_source(), ".svg")); in render_texture()
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/modules/
H A Dmodule_bgr.cc52 using boost::iends_with;
95 if (iends_with(path.string(), "hik")) { in operator ()()
277 if (iends_with(path.string(), "hik")) { in operator ()()
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/libreallive/
H A Darchive.cc44 using boost::iends_with;
140 iends_with(filename, ".txt") && isdigit(filename[4]) && in ReadOverrides()
/dports/devel/boost-docs/boost_1_72_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/databases/percona57-server/boost_1_59_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/databases/xtrabackup/boost_1_59_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/databases/percona57-client/boost_1_59_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/devel/boost-libs/boost_1_72_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/devel/boost-python-libs/boost_1_72_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/devel/hyperscan/boost_1_75_0/libs/algorithm/string/test/
H A Dpredicate_test.cpp45 BOOST_CHECK( iends_with( "aBCxXx", "XXX" ) ); in predicate_test()
46 BOOST_CHECK( !iends_with( "aBCxxX", "xXXX" ) ); in predicate_test()
/dports/misc/openvdb/openvdb-9.0.0/openvdb/openvdb/cmd/
H A Dopenvdb_render.cc255 if (boost::iends_with(fname, ".ppm")) return; in isExtensionSupported()
256 else if (boost::iends_with(fname, ".exr")) in isExtensionSupported()
263 else if (boost::iends_with(fname, ".png")) in isExtensionSupported()
283 if (!boost::iends_with(filename, ".exr")) filename += ".exr"; in saveEXR()
514 if (boost::iends_with(imgFilename, ".ppm")) { in render()
519 } else if (boost::iends_with(imgFilename, ".exr")) { in render()
522 } else if (boost::iends_with(imgFilename, ".png")) { in render()
/dports/biology/lamarc/lamarc-2.1.8/boost/algorithm/string/
H A Dpredicate.hpp180 inline bool iends_with( in iends_with() function
371 using algorithm::iends_with;

123456