Searched refs:matches_glob (Results 1 - 3 of 3) sorted by relevance
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | expand_test.cpp | 70 set_md_var("descr", "Tests the matches_glob function by using plain " 75 using atf::expand::matches_glob; 77 ATF_REQUIRE( matches_glob("", "")); 78 ATF_REQUIRE(!matches_glob("a", "")); 79 ATF_REQUIRE(!matches_glob("", "a")); 81 ATF_REQUIRE( matches_glob("ab", "ab")); 82 ATF_REQUIRE(!matches_glob("abc", "ab")); 83 ATF_REQUIRE(!matches_glob("ab", "abc")); 89 set_md_var("descr", "Tests the matches_glob function by using the '*' " 94 using atf::expand::matches_glob; [all...] |
H A D | expand.hpp | 57 bool matches_glob(const std::string&, const std::string&); 73 if (matches_glob(glob, *iter))
|
H A D | expand.cpp | 78 impl::matches_glob(const std::string& glob, const std::string& candidate) function in class:impl
|
Completed in 9 milliseconds