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

  /external/protobuf/gtest/src/
gtest-port.cc 109 // Implements RE. Currently only needed for death tests.
111 RE::~RE() {
117 // Returns true iff regular expression re matches the entire str.
118 bool RE::FullMatch(const char* str, const RE& re) {
119 if (!re.is_valid_) return false;
122 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
125 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 50 // Implements RE. Currently only needed for death tests.
52 RE::~RE() {
57 // Returns true iff str contains regular expression re.
58 bool RE::PartialMatch(const char* str, const RE& re) {
59 if (!re.is_valid_) return false;
62 return regexec(&re.regex_, str, 1, &match, 0) == 0;
65 // Initializes an RE from its string representation
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 96 // RE - a simple regular expression class using the POSIX
331 // Defines RE. Currently only needed for death tests.
335 class RE {
337 // Constructs an RE from a string.
339 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
343 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
346 RE(const char* regex) { Init(regex); } // NOLINT
347 ~RE();
352 // Returns true iff str contains regular expression re.
357 static bool PartialMatch(const ::std::string& str, const RE& re)
    [all...]
  /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...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 128 // RE - a simple regular expression class using the POSIX
618 // Defines RE.
622 class RE {
624 // Constructs an RE from a string.
626 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
630 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
633 RE(const char* regex) { Init(regex); } // NOLINT
634 ~RE();
639 // FullMatch(str, re) returns true iff regular expression re matche
    [all...]
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 

Completed in 169 milliseconds