Lines Matching refs:Passed
720 // Passed() wrapper support.
721 // - Passed() can be constructed from a pointer to scoper.
722 // - Passed() can be constructed from a scoper rvalue.
723 // - Using Passed() gives Callback Ownership.
729 // Tests the Passed() function's support for pointers.
732 Bind(&PassThru<scoped_ptr<DeleteCounter> >, Passed(&ptr));
740 // Tests the Passed() function's support for rvalues.
745 Passed(scoped_ptr<DeleteCounter>(counter)));
772 // Tests the Passed() function's support for pointers.
775 Bind(&PassThru<std::unique_ptr<DeleteCounter>>, Passed(&ptr));
783 // Tests the Passed() function's support for rvalues.
788 Passed(std::unique_ptr<DeleteCounter>(counter)));