Home
last modified time | relevance | path

Searched refs:full_pattern_ (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/googletest/googletest/src/
H A Dgtest-port.cc932 return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_.c_str(), str); in FullMatch()
943 full_pattern_.clear(); in Init()
958 full_pattern_.reserve(pattern_.size() + 2); in Init()
961 full_pattern_.push_back('^'); // Makes sure full_pattern_ starts with '^'. in Init()
964 full_pattern_.append(pattern_); in Init()
967 full_pattern_.push_back('$'); // Makes sure full_pattern_ ends with '$'. in Init()
/freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1007 std::string full_pattern_; // For FullMatch(); variable