Lines Matching refs:lvalue
206 // It's possible to provide an int. If it's given to an lvalue, the result is
760 // implicitly convertible from decltype(x) but requires a non-const lvalue
1343 // actions should receive only lvalue references.
1348 // lvalue reference, and the final action an rvalue reference.
1366 // Mock action accepts by const lvalue reference: both actions should receive
1367 // a const lvalue reference.
1386 // Mock action accepts by non-const lvalue reference: both actions should get
1387 // a non-const lvalue reference if they want them.
1405 // a non-const lvalue reference if it wants it, and the final action an rvalue
1852 auto lvalue = make(6);
1857 EXPECT_EQ(42, mock.TakeUnique(lvalue, make(7)));
1978 // possible to hand an lvalue reference to a copyable action to WillOnce.