Home
last modified time | relevance | path

Searched defs:call_once (Results 1 – 25 of 25) 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
288 fn call_once(self, arg: &'a Result<T, E>) -> Self::Output { in call_once() function
[all …]
/external/musl/src/thread/
Dcall_once.c4 void call_once(once_flag *flag, void (*func)(void)) in call_once() function
/external/protobuf/src/google/protobuf/stubs/
Donce.h45 void call_once(Args&&... args ) { in call_once() function
/external/cronet/third_party/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/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/llvm/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/cronet/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/abseil-cpp/absl/base/
Dcall_once.h206 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/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/webrtc/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/tensorflow/third_party/absl/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/rust/crates/grpcio-sys/grpc/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/rust/crates/tracing-core/src/spin/
Donce.rs70 pub fn call_once<'a, F>(&'a self, builder: F) -> &'a T in call_once() method
/external/virglrenderer/src/mesa/compat/c11/
Dthreads_posix.h94 call_once(once_flag *flag, void (*func)(void)) in call_once() function
Dthreads_win32.h192 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/futures-util/src/stream/stream/
Dpeek.rs430 fn call_once(self, next: &Item) -> Self::Output { in call_once() function
/external/rust/crates/spin/src/
Donce.rs170 pub fn call_once<F: FnOnce() -> T>(&self, f: F) -> &T { in call_once() method