Searched refs:Foo (Results 1 - 9 of 9) sorted by relevance
/gem5/ext/googletest/googletest/test/ |
H A D | gtest_break_on_failure_unittest_.cc | 52 TEST(Foo, Bar) {
|
H A D | gtest_list_tests_unittest_.cc | 44 TEST(Foo, Bar1) { 47 TEST(Foo, Bar2) { 50 TEST(Foo, DISABLED_Bar3) {
|
H A D | gtest-printers_test.cc | 558 struct Foo { struct in namespace:testing::gtest_printers_test 560 virtual ~Foo() {} 568 EXPECT_TRUE(HasPrefix(Print(&Foo::value), 569 Print(sizeof(&Foo::value)) + "-byte object ")); 570 int (Foo::*p) = NULL; // NOLINT 580 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), 581 Print(sizeof(&Foo::MyMethod)) + "-byte object ")); 583 HasPrefix(Print(&Foo::MyVirtualMethod), 584 Print(sizeof((&Foo::MyVirtualMethod))) + "-byte object ")); 585 int (Foo [all...] |
H A D | gtest_unittest.cc | 1008 EXPECT_FALSE(String::EndsWithCaseInsensitive("foobar", "Foo")); 4568 EXPECT_STREQ("Foo", StreamableToString("Foo").c_str()); 4992 class Foo { class in namespace:__anon67 4994 Foo() {} function in class:__anon67::Foo 5008 ASSERT_EQ(1, Foo().Bar()); 5014 Foo foo; 6385 L"--gtest_filter=Foo*", 6400 expected_flags.filter = "Foo*";
|
/gem5/ext/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 180 class Foo { class in namespace:testing::gmock_more_actions_test 182 Foo() : value_(123) {} function in class:testing::gmock_more_actions_test::Foo 341 Foo foo; 343 Invoke(&foo, &Foo::SumOfLast2); 347 Invoke(&foo, &Foo::SumOfLast2); 367 Foo foo; 368 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT 374 Foo foo; 375 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT 381 Foo fo [all...] |
H A D | gmock-nice-strict_test.cc | 68 class Foo { class in namespace:testing::gmock_nice_strict_test 70 virtual ~Foo() {} 76 class MockFoo : public Foo {
|
H A D | gmock-actions_test.cc | 698 MOCK_METHOD0(Foo, MyNonDefaultConstructible()); 722 EXPECT_CALL(mock, Foo()) 725 EXPECT_ANY_THROW(mock.Foo()); 728 mock.Foo(); 1115 class Foo { class in namespace:__anon14 1117 Foo() : value_(123) {} function in class:__anon14::Foo 1162 Foo foo; 1164 InvokeWithoutArgs(&foo, &Foo::Nullary);
|
H A D | gmock-spec-builders_test.cc | 2198 MOCK_METHOD1(Foo, PrintMeNot(PrintMeNot)); 2211 EXPECT_CALL(helper_, Foo(_)) 2213 helper_.Foo(PrintMeNot()); // This is an expected call. 2218 EXPECT_CALL(helper_, Foo(_)) 2220 helper_.Foo(PrintMeNot()); // This is an expected call. 2225 ON_CALL(helper_, Foo(_)) 2227 helper_.Foo(PrintMeNot()); // This should generate a warning.
|
/gem5/src/python/m5/util/ |
H A D | code_formatter.py | 285 class Foo(dict): class in class:code_formatter 292 l = [ [Foo(x=[Foo(y=9)])] ]
|
Completed in 54 milliseconds