Lines Matching refs:async
139 async = 1,
189 async(launch __policy, _Fn&& __fn, _Args&&... __args);
193 async(_Fn&& __fn, _Args&&... __args);
356 // This call is a no-op by default except on an async future,
357 // in which case the async thread is joined. It's also not a
569 // Wait for completion of async function.
767 async(launch, _Fn&&, _Args&&...);
810 async(launch, _Fn&&, _Args&&...);
853 async(launch, _Fn&&, _Args&&...);
1588 // Shared state created by std::async().
1635 // [futures.async]:
1638 // shares the shared state created by this async call shall block until
1653 // Shared state created by std::async().
1709 /// async
1712 async(launch __policy, _Fn&& __fn, _Args&&... __args)
1715 if ((__policy & launch::async) == launch::async)
1742 /// async, potential overload
1745 async(_Fn&& __fn, _Args&&... __args)
1747 return std::async(launch::async|launch::deferred,