Home
last modified time | relevance | path

Searched defs:scope_exit (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/pytorch/c10/util/
H A DScopeExit.h19 explicit scope_exit(Fp&& F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function
21 scope_exit(scope_exit&& Rhs) noexcept in scope_exit() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/
DScopeExit.h32 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function
34 scope_exit(scope_exit &&Rhs) in scope_exit() function
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DScopeExit.h31 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function
33 scope_exit(scope_exit &&Rhs) in scope_exit() function
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
H A DScopeExit.h32 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function
34 scope_exit(scope_exit &&Rhs) in scope_exit() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/
DScopeExit.h32 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function
34 scope_exit(scope_exit &&Rhs) in scope_exit() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/
DScopeExit.h32 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function
34 scope_exit(scope_exit &&Rhs) in scope_exit() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/
DScopeExit.h32 explicit scope_exit(Fp &&F) : ExitFunction(std::forward<Fp>(F)) {} in scope_exit() function
34 scope_exit(scope_exit &&Rhs) in scope_exit() function
/aosp_15_r20/external/cronet/third_party/libc++/src/src/filesystem/
H A Doperations.cpp758 struct scope_exit { struct
759 explicit scope_exit(Cleanup const& cleanup) : cleanup_(cleanup) {} in scope_exit() function
761 ~scope_exit() { cleanup_(); } in ~scope_exit()
764 Cleanup cleanup_;
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
H A Dimport_model.cc2413 auto scope_exit = llvm::make_scope_exit([&]() { in Convert() local