Searched defs:RE (Results 1 - 6 of 6) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-port.cc50 // Implements RE. Currently only needed for death tests.
52 RE::~RE() {
58 bool RE::PartialMatch(const char* str, const RE& re) {
65 // Initializes an RE from its string representation.
66 void RE::Init(const char* regex) {
/external/protobuf/gtest/src/
H A Dgtest-port.cc109 // Implements RE. Currently only needed for death tests.
111 RE::~RE() {
118 bool RE::FullMatch(const char* str, const RE& re) {
127 bool RE::PartialMatch(const char* str, const RE& re) {
134 // Initializes an RE from its string representation.
135 void RE::Init(const char* regex) {
362 // Implements the RE clas
[all...]
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-port.h96 // RE - a simple regular expression class using the POSIX
331 // Defines RE. Currently only needed for death tests.
335 class RE { class in namespace:testing::internal
337 // Constructs an RE from a string.
339 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
343 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
346 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
347 ~RE();
357 static bool PartialMatch(const ::std::string& str, const RE& re) {
363 static bool PartialMatch(const ::string& str, const RE
[all...]
/external/gtest/src/
H A Dgtest-port.cc78 // Implements RE. Currently only needed for death tests.
80 RE::~RE() {
87 bool RE::FullMatch(const char* str, const RE& re) {
96 bool RE::PartialMatch(const char* str, const RE& re) {
103 // Initializes an RE from its string representation.
104 void RE::Init(const char* regex) {
331 // Implements the RE clas
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-port.h119 // RE - a simple regular expression class using the POSIX
524 // Defines RE.
528 class RE { class in namespace:testing::internal
530 // Constructs an RE from a string.
532 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
536 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
539 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
540 ~RE();
553 static bool FullMatch(const ::std::string& str, const RE& re) {
556 static bool PartialMatch(const ::std::string& str, const RE
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h128 // RE - a simple regular expression class using the POSIX
618 // Defines RE.
622 class RE { class in namespace:testing::internal
624 // Constructs an RE from a string.
626 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
630 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
633 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
634 ~RE();
647 static bool FullMatch(const ::std::string& str, const RE& re) {
650 static bool PartialMatch(const ::std::string& str, const RE
[all...]

Completed in 27 milliseconds