Lines Matching refs:Passed
721 // Passed() wrapper support.
722 // - Passed() can be constructed from a pointer to scoper.
723 // - Passed() can be constructed from a scoper rvalue.
724 // - Using Passed() gives Callback Ownership.
730 // Tests the Passed() function's support for pointers.
733 Bind(&PassThru<scoped_ptr<DeleteCounter> >, Passed(&ptr));
741 // Tests the Passed() function's support for rvalues.
746 Passed(scoped_ptr<DeleteCounter>(counter)));
773 // Tests the Passed() function's support for pointers.
776 Bind(&PassThru<std::unique_ptr<DeleteCounter>>, Passed(&ptr));
784 // Tests the Passed() function's support for rvalues.
789 Passed(std::unique_ptr<DeleteCounter>(counter)));