Home
last modified time | relevance | path

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

/external/rust/crates/spin/src/
Dlazy.rs41 pub struct Lazy<T, F = fn() -> T> { struct
46 impl<T: fmt::Debug, F> fmt::Debug for Lazy<T, F> { implementation
57 unsafe impl<T, F: Send> Sync for Lazy<T, F> where Once<T>: Sync {} implementation
60 impl<T, F> Lazy<T, F> { impl
68 impl<T, F: FnOnce() -> T> Lazy<T, F> { implementation
91 impl<T, F: FnOnce() -> T> Deref for Lazy<T, F> { implementation
98 impl<T: Default> Default for Lazy<T> { implementation
/external/rust/crates/futures-util/src/future/
Dlazy.rs9 pub struct Lazy<F> { struct
14 impl<F> Unpin for Lazy<F> {} argument
41 impl<F, R> FusedFuture for Lazy<F> implementation
47 impl<F, R> Future for Lazy<F> implementation
/external/rust/crates/once_cell/src/
Dlib.rs570 pub struct Lazy<T, F = fn() -> T> { struct
576 impl<T, F: RefUnwindSafe> RefUnwindSafe for Lazy<T, F> where OnceCell<T>: RefUnwindSafe {} implementation
578 impl<T: fmt::Debug, F> fmt::Debug for Lazy<T, F> { implementation
584 impl<T, F> Lazy<T, F> { implementation
590 /// use once_cell::unsync::Lazy;
615 impl<T, F: FnOnce() -> T> Lazy<T, F> { implementation
638 impl<T, F: FnOnce() -> T> Deref for Lazy<T, F> { implementation
645 impl<T, F: FnOnce() -> T> DerefMut for Lazy<T, F> { implementation
652 impl<T: Default> Default for Lazy<T> { implementation
966 pub struct Lazy<T, F = fn() -> T> { struct
[all …]
/external/rust/crates/lazy_static/src/
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
Dcore_lazy.rs12 pub struct Lazy<T: Sync>(Once<T>); struct
14 impl<T: Sync> Lazy<T> { implementation
/external/rust/crates/protobuf/src/
Dlazy.rs15 pub struct Lazy<T> { struct
22 impl<T> Lazy<T> { argument
/external/llvm-project/llvm/tools/llvm-c-test/
Dmodule.c27 LLVMModuleRef llvm_load_module(bool Lazy, bool New) { in llvm_load_module()
64 int llvm_module_dump(bool Lazy, bool New) { in llvm_module_dump()
/external/llvm/tools/llvm-c-test/
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()
/external/dagger2/java/dagger/
DLazy.java145 public interface Lazy<T> { interface
/external/llvm/lib/LTO/
DLTO.cpp24 LLVMContext &Context, bool Lazy) { in loadModuleFromBuffer()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DDomTreeUpdater.h28 enum class UpdateStrategy : unsigned char { Eager = 0, Lazy = 1 }; enumerator
/external/llvm-project/llvm/include/llvm/Analysis/
DDomTreeUpdater.h30 enum class UpdateStrategy : unsigned char { Eager = 0, Lazy = 1 }; enumerator
/external/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()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFUnit.cpp49 bool Lazy) { in addUnitsForDWOSection()
63 bool Lazy, DWARFSectionKind SectionKind) { in addUnitsImpl()
DDWARFContext.cpp975 void DWARFContext::parseDWOUnits(bool Lazy) { in parseDWOUnits()
/external/llvm/include/llvm/Object/
DMachO.h146 enum class Kind { Regular, Lazy, Weak }; enumerator
/external/llvm/tools/obj2yaml/
Dmacho2yaml.cpp267 ArrayRef<uint8_t> OpcodeBuffer, bool Lazy) { in dumpBindOpcodes()
/external/llvm-project/llvm/tools/obj2yaml/
Dmacho2yaml.cpp395 ArrayRef<uint8_t> OpcodeBuffer, bool Lazy) { in dumpBindOpcodes()
/external/llvm-project/llvm/include/llvm/Object/
DMachO.h213 enum class Kind { Regular, Lazy, Weak }; enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DMachO.h213 enum class Kind { Regular, Lazy, Weak }; enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DThinLTOCodeGenerator.cpp184 bool Lazy, in loadModuleFromInput()
/external/llvm-project/llvm/lib/LTO/
DThinLTOCodeGenerator.cpp189 bool Lazy, in loadModuleFromInput()
/external/golang-protobuf/protoc-gen-go/descriptor/
Ddescriptor.pb.go1769 Lazy *bool `protobuf:"varint,5,opt,name=lazy,def=0" json:"lazy,omitempty"` member
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DDescriptor.cs5475 public bool Lazy { property in Google.Protobuf.Reflection.FieldOptions