/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/util/ |
H A D | lazy.rs | 52 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/ |
D | lib.rs | 714 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/ |
D | lazy.rs | 41 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
|
D | lib.rs | 120 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/ |
D | lazy.rs | 19 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/ |
D | lazy.rs | 9 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/ |
D | lazy.rs | 15 pub struct Lazy<T> { struct 22 impl<T> Lazy<T> { impl
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/ |
D | lazy.rs | 8 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 D | inline_lazy.rs | 19 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 D | core_lazy.rs | 12 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/ |
D | inline_lazy.rs | 19 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
|
D | core_lazy.rs | 12 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/ |
D | lazy.rs | 41 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 D | Lazy.java | 27 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 D | module.c | 28 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 D | dfa.rs | 2081 struct Lazy<'i, 'c> { struct 2086 impl<'i, 'c> Lazy<'i, 'c> { argument
|
/aosp_15_r20/external/dagger2/java/dagger/ |
H A D | Lazy.java | 145 public interface Lazy<T> { interface
|
/aosp_15_r20/system/tools/hidl/test/lazy_test/ |
D | hidl_lazy_test_server.cpp | 28 class Lazy : public ILazy { class
|
/aosp_15_r20/packages/services/Car/service/src/com/android/car/storagemonitoring/ |
D | IoStatsTracker.java | 38 private abstract static class Lazy<T> { class in IoStatsTracker
|
/aosp_15_r20/frameworks/compile/mclinker/include/mcld/MC/ |
D | ZOption.h | 38 Lazy, enumerator
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnit.cpp | 50 bool Lazy) { in addUnitsForDWOSection() 64 bool Lazy, DWARFSectionKind SectionKind) { in addUnitsImpl()
|
/aosp_15_r20/external/llvm/lib/LTO/ |
H A D | LTO.cpp | 24 LLVMContext &Context, bool Lazy) { in loadModuleFromBuffer()
|
/aosp_15_r20/external/pytorch/c10/core/ |
H A D | DeviceType.h | 54 Lazy = 17, // Lazy Tensors enumerator
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DomTreeUpdater.h | 28 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 D | DomTreeUpdater.h | 30 enum class UpdateStrategy : unsigned char { Eager = 0, Lazy = 1 }; enumerator
|