Home
last modified time | relevance | path

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

/third_party/rust/crates/lazy-static.rs/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
/third_party/rust/crates/once_cell/src/
Dlib.rs684 pub struct Lazy<T, F = fn() -> T> { struct
689 impl<T, F: RefUnwindSafe> RefUnwindSafe for Lazy<T, F> where OnceCell<T>: RefUnwindSafe {} implementation
691 impl<T: fmt::Debug, F> fmt::Debug for Lazy<T, F> { implementation
697 impl<T, F> Lazy<T, F> { implementation
703 /// use once_cell::unsync::Lazy;
728 impl<T, F: FnOnce() -> T> Lazy<T, F> { implementation
804 impl<T, F: FnOnce() -> T> Deref for Lazy<T, F> { implementation
811 impl<T, F: FnOnce() -> T> DerefMut for Lazy<T, F> { implementation
818 impl<T: Default> Default for Lazy<T> { implementation
1220 pub struct Lazy<T, F = fn() -> T> { struct
[all …]
/third_party/typescript/tests/cases/conformance/types/typeAliases/
DgenericTypeAliases.ts14 type Lazy<T> = T | (() => T); alias
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DDomTreeUpdater.h28 enum class UpdateStrategy : unsigned char { Eager = 0, Lazy = 1 }; enumerator
/third_party/node/deps/v8/src/codegen/
Dsource-position-table.h63 inline bool Lazy() const { return mode_ == LAZY_SOURCE_POSITIONS; } in Lazy() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFUnit.cpp50 bool Lazy) { in addUnitsForDWOSection()
64 bool Lazy, DWARFSectionKind SectionKind) { in addUnitsImpl()
DDWARFContext.cpp917 void DWARFContext::parseDWOUnits(bool Lazy) { in parseDWOUnits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DMachO.h213 enum class Kind { Regular, Lazy, Weak }; enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DThinLTOCodeGenerator.cpp184 bool Lazy, in loadModuleFromInput()
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DDescriptor.cs6647 public bool Lazy { property in Google.Protobuf.Reflection.FieldOptions