Home
last modified time | relevance | path

Searched defs:call_once (Results 1 – 23 of 23) sorted by relevance

/external/rust/crates/futures-util/src/
Dfns.rs6 fn call_once(self, arg: A) -> Self::Output; in call_once() method
14 fn call_once(self, arg: A) -> R { in call_once() function
84 fn call_once(self, arg: A) -> Self::Output { in call_once() method
100 fn call_once(self, arg: A) -> Self::Output { in call_once() function
131 fn call_once(self, arg: Result<T, T>) -> Self::Output { in call_once() method
149 fn call_once(self, arg: A) -> Self::Output { in call_once() function
186 fn call_once(self, arg: Result<T, E>) -> Self::Output { in call_once() function
218 fn call_once(self, arg: Result<T, E>) -> Self::Output { in call_once() function
250 fn call_once(self, arg: &'a Result<T, E>) -> Self::Output { in call_once() function
282 fn call_once(self, arg: &'a Result<T, E>) -> Self::Output { in call_once() function
[all …]
/external/protobuf/src/google/protobuf/stubs/
Donce.h45 void call_once(Args&&... args ) { in call_once() function
/external/clang/test/CodeGenObjC/
Dreturn-objc-object.mm14 void call_once() { function
/external/llvm-project/clang/test/CodeGenObjC/
Dreturn-objc-object.mm14 void call_once() { function
/external/llvm-project/libc/src/threads/linux/
Dcall_once.cpp25 void LLVM_LIBC_ENTRYPOINT(call_once)(once_flag *flag, __call_once_func_t func) { in LLVM_LIBC_ENTRYPOINT() argument
/external/llvm/include/llvm/Support/
DThreading.h91 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { in call_once() function
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DThreading.h91 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { in call_once() function
/external/python/cpython3/Lib/test/test_zoneinfo/
D_support.py13 def call_once(f): function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DThreading.h118 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { in call_once() function
/external/llvm-project/clang/test/Analysis/
Dcall_once.cpp44 void call_once(once_flag &o, Callable&& func, Args&&... args) {}; in call_once() function
47 void call_once(once_flag &o, Callable func, Args&&... args) {}; in call_once() function
293 int call_once() { in call_once() function
/external/llvm-project/llvm/include/llvm/Support/
DThreading.h119 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { in call_once() function
/external/abseil-cpp/absl/base/
Dcall_once.h213 void call_once(absl::once_flag& flag, Callable&& fn, Args&&... args) { in call_once() function
/external/angle/third_party/abseil-cpp/absl/base/
Dcall_once.h206 void call_once(absl::once_flag& flag, Callable&& fn, Args&&... args) { in call_once() function
/external/libtextclassifier/abseil-cpp/absl/base/
Dcall_once.h213 void call_once(absl::once_flag& flag, Callable&& fn, Args&&... args) { in call_once() function
/external/webrtc/third_party/abseil-cpp/absl/base/
Dcall_once.h213 void call_once(absl::once_flag& flag, Callable&& fn, Args&&... args) { in call_once() function
/external/openscreen/third_party/abseil/src/absl/base/
Dcall_once.h213 void call_once(absl::once_flag& flag, Callable&& fn, Args&&... args) { in call_once() function
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/base/
Dcall_once.h213 void call_once(absl::once_flag& flag, Callable&& fn, Args&&... args) { in call_once() function
/external/virglrenderer/src/gallium/include/c11/
Dthreads_posix.h94 call_once(once_flag *flag, void (*func)(void)) in call_once() function
Dthreads_win32.h297 call_once(once_flag *flag, void (*func)(void)) in call_once() function
/external/mesa3d/include/c11/
Dthreads_posix.h94 call_once(once_flag *flag, void (*func)(void)) in call_once() function
Dthreads_win32.h301 call_once(once_flag *flag, void (*func)(void)) in call_once() function
/external/rust/crates/parking_lot/src/
Donce.rs157 pub fn call_once<F>(&self, f: F) in call_once() method
/external/rust/crates/spin/src/
Donce.rs138 pub fn call_once<F: FnOnce() -> T>(&self, f: F) -> &T { in call_once() method