Searched refs:RE (Results 1 - 24 of 24) sorted by relevance

/prebuilts/ndk/current/sources/third_party/googletest/googletest/test/
H A Dgtest-port_test.cc410 // Defines StringTypes as the list of all string types that class RE
421 // Tests RE's implicit constructors.
423 const RE empty(TypeParam(""));
426 const RE simple(TypeParam("hello"));
429 const RE normal(TypeParam(".*(\\w+)"));
433 // Tests that RE's constructors reject invalid regular expressions.
436 const RE invalid(TypeParam("?"));
440 // Tests RE::FullMatch().
442 const RE empty(TypeParam(""));
443 EXPECT_TRUE(RE
[all...]
H A Dgtest-death-test_test.cc503 // Tests that any value convertible to an RE works as a second
509 const testing::internal::RE regex(regex_c_str);
820 const ::testing::internal::RE* regex,
936 const ::testing::internal::RE* /*regex*/,
H A Dgtest-printers_test.cc203 using ::testing::internal::RE;
1124 EXPECT_PRED2(RE::FullMatch, Print(msg),
1136 EXPECT_PRED2(RE::FullMatch, Print(msg),
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
H A Dgtest-port_test.cc410 // Defines StringTypes as the list of all string types that class RE
421 // Tests RE's implicit constructors.
423 const RE empty(TypeParam(""));
426 const RE simple(TypeParam("hello"));
429 const RE normal(TypeParam(".*(\\w+)"));
433 // Tests that RE's constructors reject invalid regular expressions.
436 const RE invalid(TypeParam("?"));
440 // Tests RE::FullMatch().
442 const RE empty(TypeParam(""));
443 EXPECT_TRUE(RE
[all...]
H A Dgtest-death-test_test.cc503 // Tests that any value convertible to an RE works as a second
509 const testing::internal::RE regex(regex_c_str);
820 const ::testing::internal::RE* regex,
936 const ::testing::internal::RE* /*regex*/,
H A Dgtest-printers_test.cc203 using ::testing::internal::RE;
1124 EXPECT_PRED2(RE::FullMatch, Print(msg),
1136 EXPECT_PRED2(RE::FullMatch, Print(msg),
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
H A Dgtest-port_test.cc410 // Defines StringTypes as the list of all string types that class RE
421 // Tests RE's implicit constructors.
423 const RE empty(TypeParam(""));
426 const RE simple(TypeParam("hello"));
429 const RE normal(TypeParam(".*(\\w+)"));
433 // Tests that RE's constructors reject invalid regular expressions.
436 const RE invalid(TypeParam("?"));
440 // Tests RE::FullMatch().
442 const RE empty(TypeParam(""));
443 EXPECT_TRUE(RE
[all...]
H A Dgtest-death-test_test.cc503 // Tests that any value convertible to an RE works as a second
509 const testing::internal::RE regex(regex_c_str);
820 const ::testing::internal::RE* regex,
936 const ::testing::internal::RE* /*regex*/,
H A Dgtest-printers_test.cc203 using ::testing::internal::RE;
1124 EXPECT_PRED2(RE::FullMatch, Print(msg),
1136 EXPECT_PRED2(RE::FullMatch, Print(msg),
/prebuilts/ndk/current/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
308 ::testing::internal::RE::PartialMatch(".*", (regex)); \
H A Dgtest-port.h160 // RE - a simple regular expression class using the POSIX
926 // Defines RE.
930 class GTEST_API_ RE { class in namespace:testing::internal
934 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
936 // Constructs an RE from a string.
937 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
941 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
945 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
946 ~RE();
[all...]
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
308 ::testing::internal::RE::PartialMatch(".*", (regex)); \
H A Dgtest-port.h160 // RE - a simple regular expression class using the POSIX
922 // Defines RE.
926 class GTEST_API_ RE { class in namespace:testing::internal
930 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
932 // Constructs an RE from a string.
933 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
937 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
941 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
942 ~RE();
[all...]
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
308 ::testing::internal::RE::PartialMatch(".*", (regex)); \
H A Dgtest-port.h160 // RE - a simple regular expression class using the POSIX
926 // Defines RE.
930 class GTEST_API_ RE { class in namespace:testing::internal
934 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
936 // Constructs an RE from a string.
937 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
941 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
945 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
946 ~RE();
[all...]
/prebuilts/ndk/current/sources/third_party/googletest/googletest/src/
H A Dgtest-port.cc138 // Implements RE. Currently only needed for death tests.
140 RE::~RE() {
153 bool RE::FullMatch(const char* str, const RE& re) {
162 bool RE::PartialMatch(const char* str, const RE& re) {
169 // Initializes an RE from its string representation.
170 void RE::Init(const char* regex) {
398 // Implements the RE clas
[all...]
H A Dgtest-death-test.cc345 bool DeathTest::Create(const char* statement, const RE* regex,
364 DeathTestImpl(const char* a_statement, const RE* a_regex)
380 const RE* regex() const { return regex_; }
404 const RE* const regex_;
555 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
611 const RE* a_regex,
778 ForkingDeathTest(const char* statement, const RE* regex);
792 ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
815 NoExecDeathTest(const char* a_statement, const RE* a_regex) :
870 ExecDeathTest(const char* a_statement, const RE* a_rege
[all...]
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/src/
H A Dgtest-port.cc138 // Implements RE. Currently only needed for death tests.
140 RE::~RE() {
153 bool RE::FullMatch(const char* str, const RE& re) {
162 bool RE::PartialMatch(const char* str, const RE& re) {
169 // Initializes an RE from its string representation.
170 void RE::Init(const char* regex) {
398 // Implements the RE clas
[all...]
H A Dgtest-death-test.cc345 bool DeathTest::Create(const char* statement, const RE* regex,
364 DeathTestImpl(const char* a_statement, const RE* a_regex)
380 const RE* regex() const { return regex_; }
404 const RE* const regex_;
555 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
611 const RE* a_regex,
778 ForkingDeathTest(const char* statement, const RE* regex);
792 ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
815 NoExecDeathTest(const char* a_statement, const RE* a_regex) :
870 ExecDeathTest(const char* a_statement, const RE* a_rege
[all...]
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/src/
H A Dgtest-port.cc138 // Implements RE. Currently only needed for death tests.
140 RE::~RE() {
153 bool RE::FullMatch(const char* str, const RE& re) {
162 bool RE::PartialMatch(const char* str, const RE& re) {
169 // Initializes an RE from its string representation.
170 void RE::Init(const char* regex) {
398 // Implements the RE clas
[all...]
H A Dgtest-death-test.cc345 bool DeathTest::Create(const char* statement, const RE* regex,
364 DeathTestImpl(const char* a_statement, const RE* a_regex)
380 const RE* regex() const { return regex_; }
404 const RE* const regex_;
555 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
611 const RE* a_regex,
778 ForkingDeathTest(const char* statement, const RE* regex);
792 ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
815 NoExecDeathTest(const char* a_statement, const RE* a_regex) :
870 ExecDeathTest(const char* a_statement, const RE* a_rege
[all...]
/prebuilts/tools/common/netbeans-visual/
H A Dorg-openide-util.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/netbeans/ org/netbeans/modules/ org/netbeans/modules/openide/ ...
/prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...
/prebuilts/tools/common/m2/repository/xalan/xalan/2.7.1/
H A Dxalan-2.7.1.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...

Completed in 841 milliseconds