HomeSort by relevance Sort by last modified time
    Searched defs:RE (Results 1 - 3 of 3) sorted by null

  /external/gtest/src/
gtest-port.cc 78 // Implements RE. Currently only needed for death tests.
80 RE::~RE() {
86 // Returns true iff regular expression re matches the entire str.
87 bool RE::FullMatch(const char* str, const RE& re) {
88 if (!re.is_valid_) return false;
91 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
94 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 119 // RE - a simple regular expression class using the POSIX
524 // Defines RE.
528 class RE {
530 // Constructs an RE from a string.
532 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
536 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
539 RE(const char* regex) { Init(regex); } // NOLINT
540 ~RE();
545 // FullMatch(str, re) returns true iff regular expression re matche
    [all...]
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 

Completed in 2101 milliseconds