Home
last modified time | relevance | path

Searched defs:Lazy (Results 1 – 25 of 526) sorted by relevance

12345678910>>...22

/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/util/
H A Dlazy.rs52 pub struct Lazy<T, F = fn() -> T>(lazy::Lazy<T, F>); struct
54 impl<T, F> Lazy<T, F> { impl
64 impl<T, F: Fn() -> T> Lazy<T, F> { implementation
83 impl<T, F: Fn() -> T> core::ops::Deref for Lazy<T, F> { implementation
91 impl<T: fmt::Debug, F: Fn() -> T> fmt::Debug for Lazy<T, F> { implementation
120 pub(super) struct Lazy<T, F> { struct
121 data: AtomicPtr<T>,
122 create: F,
130 owned: PhantomData<Box<T>>,
144 unsafe impl<T: Send + Sync, F: Send + Sync> Sync for Lazy<T, F> {} implementation
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/once_cell/src/
Dlib.rs714 pub struct Lazy<T, F = fn() -> T> { struct
719 impl<T, F: RefUnwindSafe> RefUnwindSafe for Lazy<T, F> where OnceCell<T>: RefUnwindSafe {} implementation
721 impl<T: fmt::Debug, F> fmt::Debug for Lazy<T, F> { implementation
727 impl<T, F> Lazy<T, F> { impl
733 /// use once_cell::unsync::Lazy;
758 impl<T, F: FnOnce() -> T> Lazy<T, F> { implementation
840 impl<T, F: FnOnce() -> T> Deref for Lazy<T, F> { implementation
847 impl<T, F: FnOnce() -> T> DerefMut for Lazy<T, F> { implementation
853 impl<T: Default> Default for Lazy<T> { implementation
1255 pub struct Lazy<T, F = fn() -> T> { struct
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/spin/src/
Dlazy.rs41 pub struct Lazy<T, F = fn() -> T, R = Spin> { struct
46 impl<T: fmt::Debug, F, R> fmt::Debug for Lazy<T, F, R> { argument
60 unsafe impl<T, F: Send> Sync for Lazy<T, F> where Once<T>: Sync {} implementation
63 impl<T, F, R> Lazy<T, F, R> { impl
82 impl<T, F: FnOnce() -> T, R: RelaxStrategy> Lazy<T, F, R> { implementation
105 impl<T, F: FnOnce() -> T, R: RelaxStrategy> Deref for Lazy<T, F, R> { implementation
113 impl<T: Default, R> Default for Lazy<T, fn() -> T, R> { implementation
Dlib.rs120 pub type Lazy<T, F = fn() -> T> = crate::lazy::Lazy<T, F>; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/tracing-core/src/
Dlazy.rs19 pub(crate) struct Lazy<T, F = fn() -> T> { struct
20 cell: Once<T>,
21 init: Cell<Option<F>>,
24 impl<T: fmt::Debug, F> fmt::Debug for Lazy<T, F> { implementation
37 unsafe impl<T, F: Send> Sync for Lazy<T, F> where Once<T>: Sync {} implementation
40 impl<T, F> Lazy<T, F> { implementation
50 impl<T, F: FnOnce() -> T> Lazy<T, F> { implementation
63 impl<T, F: FnOnce() -> T> Deref for Lazy<T, F> { implementation
70 impl<T: Default> Default for Lazy<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/future/
Dlazy.rs9 pub struct Lazy<F> { struct
14 impl<F> Unpin for Lazy<F> {} argument
42 impl<F, R> FusedFuture for Lazy<F> implementation
51 impl<F, R> Future for Lazy<F> implementation
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/protobuf/src/
Dlazy.rs15 pub struct Lazy<T> { struct
22 impl<T> Lazy<T> { impl
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/
Dlazy.rs8 pub struct Lazy<T> { struct
12 impl<T> Lazy<T> { impl
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/lazy_static-1.4.0/src/
H A Dinline_lazy.rs19 pub struct Lazy<T: Sync>(Cell<Option<T>>, Once); struct
21 impl<T: Sync> Lazy<T> { implementation
49 unsafe impl<T: Sync> Sync for Lazy<T> {} implementation
H A Dcore_lazy.rs12 pub struct Lazy<T: Sync>(Once<T>); struct
14 impl<T: Sync> Lazy<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/lazy_static/src/
Dinline_lazy.rs19 pub struct Lazy<T: Sync>(Cell<Option<T>>, Once); struct
21 impl<T: Sync> Lazy<T> { impl
49 unsafe impl<T: Sync> Sync for Lazy<T> {} implementation
Dcore_lazy.rs12 pub struct Lazy<T: Sync>(Once<T>); struct
14 impl<T: Sync> Lazy<T> { impl
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/common/
Dlazy.rs41 impl<F, R> Started for Lazy<F, R> implementation
54 impl<F, R> Future for Lazy<F, R> implementation
/aosp_15_r20/external/aws-sdk-java-v2/utils/src/main/java/software/amazon/awssdk/utils/
H A DLazy.java27 public class Lazy<T> implements SdkAutoCloseable { class
32 public Lazy(Supplier<T> initializer) { in Lazy() method in Lazy
/aosp_15_r20/external/llvm/tools/llvm-c-test/
H A Dmodule.c28 LLVMModuleRef llvm_load_module(bool Lazy, bool New) { in llvm_load_module()
65 int llvm_module_dump(bool Lazy, bool New) { in llvm_module_dump()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/hybrid/
H A Ddfa.rs2081 struct Lazy<'i, 'c> { struct
2086 impl<'i, 'c> Lazy<'i, 'c> { argument
/aosp_15_r20/external/dagger2/java/dagger/
H A DLazy.java145 public interface Lazy<T> { interface
/aosp_15_r20/system/tools/hidl/test/lazy_test/
Dhidl_lazy_test_server.cpp28 class Lazy : public ILazy { class
/aosp_15_r20/packages/services/Car/service/src/com/android/car/storagemonitoring/
DIoStatsTracker.java38 private abstract static class Lazy<T> { class in IoStatsTracker
/aosp_15_r20/frameworks/compile/mclinker/include/mcld/MC/
DZOption.h38 Lazy, enumerator
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp50 bool Lazy) { in addUnitsForDWOSection()
64 bool Lazy, DWARFSectionKind SectionKind) { in addUnitsImpl()
/aosp_15_r20/external/llvm/lib/LTO/
H A DLTO.cpp24 LLVMContext &Context, bool Lazy) { in loadModuleFromBuffer()
/aosp_15_r20/external/pytorch/c10/core/
H A DDeviceType.h54 Lazy = 17, // Lazy Tensors enumerator
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DDomTreeUpdater.h28 enum class UpdateStrategy : unsigned char { Eager = 0, Lazy = 1 }; enumerator
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/
H A DDomTreeUpdater.h30 enum class UpdateStrategy : unsigned char { Eager = 0, Lazy = 1 }; enumerator

12345678910>>...22