Searched refs:Nullary (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-function-mocker_test.cc | 85 virtual int Nullary() = 0; 145 MOCK_METHOD(int, Nullary, ()); // NOLINT 216 MOCK_METHOD0(Nullary, int()); // NOLINT 303 EXPECT_CALL(this->mock_foo_, Nullary()) in TYPED_TEST() 307 EXPECT_EQ(0, this->foo_->Nullary()); in TYPED_TEST() 308 EXPECT_EQ(1, this->foo_->Nullary()); in TYPED_TEST()
|
H A D | gmock-more-actions_test.cc | 73 int Nullary() { return 1; } in Nullary() function 153 int Nullary() const { return value_; } in Nullary() function in testing::gmock_more_actions_test::Foo 203 TEST(InvokeTest, Nullary) { in TEST() argument 204 Action<int()> a = Invoke(Nullary); // NOLINT in TEST() 335 TEST(InvokeMethodTest, Nullary) { in TEST() argument 337 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT in TEST() 449 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST() 708 EXPECT_EQ(1, a.Perform(std::make_tuple(2, &Nullary))); in TEST()
|
H A D | gmock-actions_test.cc | 1187 int Nullary() { return 1; } in Nullary() function 1221 int Nullary() const { return value_; } in Nullary() function in testing::__anon10e2b6f40111::Foo 1230 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT in TEST() 1234 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT in TEST() 1266 InvokeWithoutArgs(&foo, &Foo::Nullary); in TEST()
|
H A D | gmock-internal-utils_test.cc | 659 TEST(FunctionTest, Nullary) { in TEST() argument
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfoVPseudos.td | 993 // Nullary for pseudo instructions. They are expanded in
|