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

  /external/gtest/test/
gtest-port_test.cc 109 // Defines StringTypes as the list of all string types that class RE
122 // Tests RE's implicit constructors.
124 const RE empty(TypeParam(""));
127 const RE simple(TypeParam("hello"));
130 const RE normal(TypeParam(".*(\\w+)"));
134 // Tests that RE's constructors reject invalid regular expressions.
137 const RE invalid(TypeParam("?"));
141 // Tests RE::FullMatch().
143 const RE empty(TypeParam(""));
144 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
gtest-death-test_test.cc 443 // Tests that any value convertible to an RE works as a second
449 const testing::internal::RE regex(regex_c_str);
721 const ::testing::internal::RE* regex,
836 const ::testing::internal::RE* regex,
    [all...]
  /external/protobuf/gtest/test/
gtest-port_test.cc 167 // Defines StringTypes as the list of all string types that class RE
180 // Tests RE's implicit constructors.
182 const RE empty(TypeParam(""));
185 const RE simple(TypeParam("hello"));
188 const RE normal(TypeParam(".*(\\w+)"));
192 // Tests that RE's constructors reject invalid regular expressions.
195 const RE invalid(TypeParam("?"));
199 // Tests RE::FullMatch().
201 const RE empty(TypeParam(""));
202 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
gtest-death-test_test.cc 438 // Tests that any value convertible to an RE works as a second
444 const testing::internal::RE regex(regex_c_str);
722 const ::testing::internal::RE* regex,
837 const ::testing::internal::RE* /*regex*/,
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-death-test-internal.h 76 static bool Create(const char* statement, const RE* regex,
131 virtual bool Create(const char* statement, const RE* regex,
138 virtual bool Create(const char* statement, const RE* regex,
151 const ::testing::internal::RE& gtest_regex = (regex); \
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/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...]
gtest-death-test-internal.h 81 static bool Create(const char* statement, const RE* regex,
141 virtual bool Create(const char* statement, const RE* regex,
148 virtual bool Create(const char* statement, const RE* regex,
161 const ::testing::internal::RE& gtest_regex = (regex); \
  /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...]
gtest-death-test.cc 80 "\"threadsafe\" (child process re-executes the test binary "
312 bool DeathTest::Create(const char* statement, const RE* regex,
333 DeathTestImpl(const char* statement, const RE* regex)
343 const RE* regex() const { return regex_; }
357 const RE* const regex_;
400 const RE* regex,
641 ForkingDeathTest(const char* statement, const RE* regex);
661 ForkingDeathTest::ForkingDeathTest(const char* statement, const RE* regex)
673 // TODO(vladl@google.com): Re-factor the code to merge common parts after
830 if (RE::PartialMatch(error_message, *regex()))
    [all...]
  /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...]
gtest-death-test.cc 80 "\"threadsafe\" (child process re-executes the test binary "
292 bool DeathTest::Create(const char* statement, const RE* regex,
311 DeathTestImpl(const char* statement, const RE* regex)
327 const RE* regex() const { return regex_; }
351 const RE* const regex_;
468 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
523 const RE* regex,
694 ForkingDeathTest(const char* statement, const RE* regex);
708 ForkingDeathTest::ForkingDeathTest(const char* statement, const RE* regex)
731 NoExecDeathTest(const char* statement, const RE* regex)
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-death-test-internal.h 77 static bool Create(const char* statement, const RE* regex,
137 virtual bool Create(const char* statement, const RE* regex,
144 virtual bool Create(const char* statement, const RE* regex,
157 const ::testing::internal::RE& gtest_regex = (regex); \
263 ::testing::internal::RE::PartialMatch(".*", (regex)); \
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...]
  /external/openssl/ssl/
install.com 51 $ SET FILE/PROT=WORLD:RE WRK_SSLINCLUDE:'EXHEADER'
62 $ SET FILE/PROT=W:RE WRK_SSLXEXE:'E'.EXE
78 $ SET FILE/PROT=W:RE WRK_SSLXLIB:'E'.OLB
84 $ SET FILE/PROT=W:RE WRK_SSLXLIB:'E'.EXE
  /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...]
gtest-death-test.cc 64 "\"threadsafe\" (child process re-executes the test binary "
228 bool DeathTest::Create(const char* statement, const RE* regex,
243 ForkingDeathTest(const char* statement, const RE* regex);
260 const RE* const regex_;
275 ForkingDeathTest::ForkingDeathTest(const char* statement, const RE* regex)
405 if (RE::PartialMatch(error_message, *regex_)) {
445 NoExecDeathTest(const char* statement, const RE* regex) :
491 // A concrete death test class that forks and re-executes the main
496 ExecDeathTest(const char* statement, const RE* regex,
589 // The AssumeRole process for a fork-and-exec death test. It re-executes th
    [all...]
  /external/openssl/apps/
install.com 52 $ SET FILE/PROT=W:RE WRK_SSLEXE:'E'.EXE
60 $ SET FILE/PROT=W:RE WRK_SSLEXE:CA.COM
  /external/openssl/crypto/
install.com 130 $ SET FILE/PROT=WORLD:RE WRK_SSLINCLUDE:'tmp'
143 $ SET FILE/PROT=W:RE WRK_SSLLIB:'E'.OLB
149 $ SET FILE/PROT=W:RE WRK_SSLLIB:'E'.EXE
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 

Completed in 350 milliseconds