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

/gem5/src/systemc/tests/systemc/misc/examples/a2901/
H A Da2901_alu_inputs.cpp53 RE.write(Av);
58 RE.write(0x0);
61 RE.write(D.read());
H A Da2901_alu_inputs.h58 sig4& RE; local
79 RE( RE_ ),
H A Da2901.h52 sig4 RE, S, F, Q, A; local
81 I_, RE, S, C0_,
87 RE, S, A ) );
H A Da2901_alu.h49 const sig4& RE; local
87 RE( RE_ ),
102 sensitive << RE; local
H A Da2901_alu.cpp45 R_ext_v = (I53 == 0x1) ? sc_int<5> (0xf & ~(RE.read()))
46 : sc_int<5>( RE.read() );
/gem5/ext/googletest/googletest/test/
H A Dgtest-port_test.cc405 // Defines StringTypes as the list of all string types that class RE
416 // Tests RE's implicit constructors.
418 const RE empty(TypeParam(""));
421 const RE simple(TypeParam("hello"));
424 const RE normal(TypeParam(".*(\\w+)"));
428 // Tests that RE's constructors reject invalid regular expressions.
431 const RE invalid(TypeParam("?"));
435 // Tests RE::FullMatch().
437 const RE empty(TypeParam(""));
438 EXPECT_TRUE(RE
[all...]
H A Dgtest-death-test_test.cc497 // Tests that any value convertible to an RE works as a second
503 const testing::internal::RE regex(regex_c_str);
884 const ::testing::internal::RE* regex,
1000 const ::testing::internal::RE* /*regex*/,
H A Dgtest-printers_test.cc208 using ::testing::internal::RE;
/gem5/ext/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.h224 // RE - a simple regular expression class using the POSIX
1152 // Defines RE.
1156 class GTEST_API_ RE { class in namespace:testing::internal
1160 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
1162 // Constructs an RE from a string.
1163 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
1167 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
1171 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
1172 ~RE();
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc562 // Implements RE. Currently only needed for death tests.
564 RE::~RE() {
577 bool RE::FullMatch(const char* str, const RE& re) {
586 bool RE::PartialMatch(const char* str, const RE& re) {
593 // Initializes an RE from its string representation.
594 void RE::Init(const char* regex) {
822 // Implements the RE clas
[all...]
H A Dgtest-death-test.cc356 bool DeathTest::Create(const char* statement, const RE* regex,
375 DeathTestImpl(const char* a_statement, const RE* a_regex)
391 const RE* regex() const { return regex_; }
415 const RE* const regex_;
566 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
622 const RE* a_regex,
789 ForkingDeathTest(const char* statement, const RE* regex);
803 ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
826 NoExecDeathTest(const char* a_statement, const RE* a_regex) :
881 ExecDeathTest(const char* a_statement, const RE* a_rege
[all...]
/gem5/src/arch/x86/
H A Ddecoder_tables.cc55 const uint8_t RE = Rep; member in namespace:X86ISA
81 /* F*/ LO, 0 , RN, RE, 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1328 MatchesRegexMatcher(const RE* regex, bool full_match)
1349 return full_match_ ? RE::FullMatch(s2, *regex_) :
1350 RE::PartialMatch(s2, *regex_);
1366 const internal::linked_ptr<const RE> regex_;
4006 const internal::RE* regex) {
4011 return MatchesRegex(new internal::RE(regex));
4017 const internal::RE* regex) {
4022 return ContainsRegex(new internal::RE(regex));
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc151 using testing::internal::RE;
1510 const Matcher<const string&> m2 = MatchesRegex(new RE("a.*z"));
1520 Matcher<const char*> m2 = MatchesRegex(new RE("a.*"));
1532 const Matcher<const string&> m2 = ContainsRegex(new RE("a.*z"));
1542 Matcher<const char*> m2 = ContainsRegex(new RE("a.*"));

Completed in 80 milliseconds