HomeSort by: relevance | last modified time | path
    Searched defs:scope_exit (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ScopeExit.h 25 template <typename Callable> class scope_exit { class in namespace:llvm::detail
31 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} function in class:llvm::detail::scope_exit
33 scope_exit(scope_exit &&Rhs) function in class:llvm::detail::scope_exit
37 scope_exit(const scope_exit &) = delete;
38 scope_exit &operator=(scope_exit &&) = delete;
39 scope_exit &operator=(const scope_exit &) = delete
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
scope-exit.h 25 /* scope_exit is a general-purpose scope guard that calls its exit
26 function at the end of the current scope. A scope_exit may be
30 ScopeGuard/SCOPE_EXIT.
41 - If you don't need to cancel the guard, you can use the SCOPE_EXIT
44 SCOPE_EXIT
52 /* CRTP base class for cancelable scope_exit-like classes. Implements
88 /* The scope_exit class. */
91 class scope_exit : public scope_exit_base<scope_exit<EF>> class in inherits:scope_exit_base
94 friend scope_exit_base<scope_exit<EF>>
100 scope_exit (EFP &&f) function in class:scope_exit
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
scope-exit.h 25 /* scope_exit is a general-purpose scope guard that calls its exit
26 function at the end of the current scope. A scope_exit may be
30 ScopeGuard/SCOPE_EXIT.
41 - If you don't need to cancel the guard, you can use the SCOPE_EXIT
44 SCOPE_EXIT
52 /* CRTP base class for cancelable scope_exit-like classes. Implements
88 /* The scope_exit class. */
91 class scope_exit : public scope_exit_base<scope_exit<EF>> class in inherits:scope_exit_base
94 friend scope_exit_base<scope_exit<EF>>
100 scope_exit (EFP &&f) function in class:scope_exit
    [all...]

Completed in 43 milliseconds