Home
last modified time | relevance | path

Searched refs:regex_matches (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/kyua/utils/text/
H A Dregex.cpp79 struct utils::text::regex_matches::impl : utils::noncopyable {
134 text::regex_matches::regex_matches(std::shared_ptr< impl > pimpl) : in regex_matches() function in text::regex_matches
141 text::regex_matches::~regex_matches(void) in ~regex_matches()
154 text::regex_matches::count(void) const in count()
178 text::regex_matches::get(const std::size_t index) const in get()
193 text::regex_matches::operator bool(void) const in operator bool()
277 text::regex_matches
280 std::shared_ptr< regex_matches::impl > pimpl(new regex_matches::impl( in match()
282 return regex_matches(pimpl); in match()
297 text::regex_matches
H A Dregex.hpp46 class regex_matches { class
53 regex_matches(std::shared_ptr< impl >);
56 ~regex_matches(void);
81 regex_matches match(const std::string&) const;
85 regex_matches match_regex(const std::string&, const std::string&,
H A Dregex_test.cpp41 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
51 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
62 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
74 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
87 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
99 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
115 const text::regex_matches matches = regex.match("my number is 581."); in ATF_TEST_CASE_BODY()
123 const text::regex_matches matches = regex.match("your number is 6"); in ATF_TEST_CASE_BODY()
H A Dregex_fwd.hpp39 class regex_matches;
/freebsd/contrib/kyua/engine/
H A Dtap_parser.cpp91 const text::regex_matches plan_matches = _plan_regex.match(line); in try_parse_plan()
105 const text::regex_matches skip_matches = _skip_regex.match(line); in try_parse_plan()
149 const text::regex_matches result_matches = _result_regex.match(line); in try_parse_result()
/freebsd/contrib/kyua/store/
H A Dlayout.cpp80 const text::regex_matches matches = preg.match(iter->name); in find_latest()