Lines Matching refs:getValue
40 int getValue() { in getValue() function in __anond30906860111::Dummy
132 int getValue() const { in getValue() function in MovableButNonCopyable
147 EXPECT_EQ(mbnc.getValue(), -1); in TEST()
150 EXPECT_EQ(mbnc2.getValue(), -1); in TEST()
153 EXPECT_EQ(vector[0].getValue(), 0x1337); in TEST()
154 EXPECT_EQ(vector[1].getValue(), 0xface); in TEST()
155 EXPECT_EQ(vector[2].getValue(), 0xcafe); in TEST()
156 EXPECT_EQ(vector[3].getValue(), 0xd00d); in TEST()
178 int getValue() const { in getValue() function in CopyableButNonMovable
197 EXPECT_EQ(vector[0].getValue(), 0x1337); in TEST()
198 EXPECT_EQ(vector[1].getValue(), 0xface); in TEST()
199 EXPECT_EQ(vector[2].getValue(), 0xcafe); in TEST()
200 EXPECT_EQ(vector[3].getValue(), 0xd00d); in TEST()
232 int getValue() const { in getValue() function in MovableAndCopyable
255 EXPECT_EQ(vector[0].getValue(), 2000); in TEST()
256 EXPECT_EQ(vector[1].getValue(), 4000); in TEST()