Home
last modified time | relevance | path

Searched refs:Nullary (Results 1 – 13 of 13) sorted by relevance

/external/google-breakpad/src/testing/test/
Dgmock-generated-function-mockers_test.cc81 virtual int Nullary() = 0;
122 MOCK_METHOD0(Nullary, int()); // NOLINT
175 EXPECT_CALL(mock_foo_, Nullary()) in TEST_F()
179 EXPECT_EQ(0, foo_->Nullary()); in TEST_F()
180 EXPECT_EQ(1, foo_->Nullary()); in TEST_F()
Dgmock-more-actions_test.cc76 int Nullary() { return 1; } in Nullary() function
184 int Nullary() const { return value_; } in Nullary() function in testing::gmock_more_actions_test::Foo
234 TEST(InvokeTest, Nullary) { in TEST() argument
235 Action<int()> a = Invoke(Nullary); // NOLINT in TEST()
364 TEST(InvokeMethodTest, Nullary) { in TEST() argument
366 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST()
473 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
Dgmock-actions_test.cc1015 int Nullary() { return 1; } in Nullary() function
1081 int Nullary() const { return value_; } in Nullary() function in __anon3e4373c20111::Foo
1099 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1103 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1135 InvokeWithoutArgs(&foo, &Foo::Nullary); in TEST()
Dgmock-generated-internal-utils_test.cc74 TEST(FunctionTest, Nullary) { in TEST() argument
Dgmock-generated-actions_test.cc71 int Nullary() { return 1; } in Nullary() function
172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary))); in TEST()
/external/googletest/googlemock/test/
Dgmock-more-actions_test.cc70 int Nullary() { return 1; } in Nullary() function
178 int Nullary() const { return value_; } in Nullary() function in testing::gmock_more_actions_test::Foo
228 TEST(InvokeTest, Nullary) { in TEST() argument
229 Action<int()> a = Invoke(Nullary); // NOLINT in TEST()
362 TEST(InvokeMethodTest, Nullary) { in TEST() argument
364 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST()
475 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
Dgmock-function-mocker_test.cc80 virtual int Nullary() = 0;
129 MOCK_METHOD(int, Nullary, ()); // NOLINT
197 EXPECT_CALL(mock_foo_, Nullary()) in TEST_F()
201 EXPECT_EQ(0, foo_->Nullary()); in TEST_F()
202 EXPECT_EQ(1, foo_->Nullary()); in TEST_F()
Dgmock-generated-function-mockers_test.cc81 virtual int Nullary() = 0;
131 MOCK_METHOD0(Nullary, int()); // NOLINT
200 EXPECT_CALL(mock_foo_, Nullary()) in TEST_F()
204 EXPECT_EQ(0, foo_->Nullary()); in TEST_F()
205 EXPECT_EQ(1, foo_->Nullary()); in TEST_F()
Dgmock-actions_test.cc898 int Nullary() { return 1; } in Nullary() function
932 int Nullary() const { return value_; } in Nullary() function in __anonf784654d0111::Foo
941 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
945 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
977 InvokeWithoutArgs(&foo, &Foo::Nullary); in TEST()
Dgmock-generated-actions_test.cc66 int Nullary() { return 1; } in Nullary() function
143 EXPECT_EQ(1, a.Perform(std::make_tuple(2, &Nullary))); in TEST()
Dgmock-internal-utils_test.cc695 TEST(FunctionTest, Nullary) { in TEST() argument
/external/syzkaller/vendor/github.com/ianlancetaylor/demangle/
Dast.go1820 type Nullary struct { struct
1824 func (n *Nullary) print(ps *printState) { argument
1832 func (n *Nullary) Traverse(fn func(AST) bool) { argument
1838 func (n *Nullary) Copy(fn func(AST) AST, skip func(AST) bool) AST { argument
1846 n = &Nullary{Op: op}
1853 func (n *Nullary) GoString() string { argument
1857 func (n *Nullary) goString(indent int, field string) string { argument
Ddemangle.go1926 return &Nullary{Op: o}