Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/src/
H A Dgtest-port.cc958 return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_.c_str(), str); in FullMatch()
969 full_pattern_.clear(); in Init()
984 full_pattern_.reserve(pattern_.size() + 2); in Init()
987 full_pattern_.push_back('^'); // Makes sure full_pattern_ starts with '^'. in Init()
990 full_pattern_.append(pattern_); in Init()
993 full_pattern_.push_back('$'); // Makes sure full_pattern_ ends with '$'. in Init()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1015 std::string full_pattern_; // For FullMatch(); variable