Home
last modified time | relevance | path

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

12

/aosp_15_r20/external/rust/android-crates-io/crates/weak-table/src/
Dtraits.rs24 type Strong; typedef
34 fn view(&self) -> Option<Self::Strong>; in view()
70 fn with_key<F, R>(view: &Self::Strong, f: F) -> R in with_key()
74 fn hash<H: Hasher>(view: &Self::Strong, h: &mut H) { in hash()
79 fn equals<Q>(view: &Self::Strong, key: &Q) -> bool in equals()
88 type Strong = rc::Rc<T>; typedef
94 fn view(&self) -> Option<Self::Strong> { in view()
98 fn clone(view: &Self::Strong) -> Self::Strong { in clone()
106 fn with_key<F, R>(view: &Self::Strong, f: F) -> R in with_key()
114 type Strong = sync::Arc<T>; typedef
[all …]
Dweak_weak_hash_map.rs336 fn find_bucket<Q>(&self, key: &Q) -> Option<(usize, K::Strong, V::Strong)> in find_bucket()
393 pub fn get_both<Q>(&self, key: &Q) -> Option<(K::Strong, V::Strong)> in get_both()
415 pub fn insert(&mut self, key: K::Strong, value: V::Strong) -> Option<V::Strong> { in insert()
448 where F: FnMut(K::Strong, V::Strong) -> bool in retain()
477 F: FnMut(V::Strong, V1::Strong) -> bool, in is_submap_with()
500 V::Strong: PartialEq<V1::Strong>, in is_submap()
608 pub fn or_insert(self, default: V::Strong) -> V::Strong { in or_insert()
617 pub fn or_insert_with<F: FnOnce() -> V::Strong>(self, default: F) -> V::Strong { in or_insert_with()
627 pub fn key(&self) -> &K::Strong { in key()
639 pub fn key(&self) -> &K::Strong { in key()
[all …]
Dptr_weak_weak_hash_map.rs126 pub fn get(&self, key: &K::Strong) -> Option<V::Strong> { in get()
141 pub fn insert(&mut self, key: K::Strong, value: V::Strong) -> Option<V::Strong> { in insert()
148 pub fn remove(&mut self, key: &K::Strong) -> Option<V::Strong> { in remove()
158 where F: FnMut(K::Strong, V::Strong) -> bool in retain()
172 where F: FnMut(V::Strong, V1::Strong) -> bool, in submap_with()
186 V::Strong: PartialEq<V1::Strong>, in is_submap()
Dweak_value_hash_map.rs394 pub fn insert(&mut self, key: K, value: V::Strong) -> Option<V::Strong> { in insert()
456 F: FnMut(V::Strong, V1::Strong) -> bool, in is_submap_with()
479 V::Strong: PartialEq<V1::Strong>, in is_submap()
600 pub fn or_insert(self, default: V::Strong) -> V::Strong { in or_insert()
608 pub fn or_insert_with<F: FnOnce() -> V::Strong>(self, default: F) -> V::Strong { in or_insert_with()
637 pub fn remove_entry(self) -> (K, V::Strong) { in remove_entry()
647 pub fn get(&self) -> &V::Strong { in get()
654 pub fn get_strong(&self) -> V::Strong { in get_strong()
661 pub fn insert(&mut self, value: V::Strong) -> V::Strong { in insert()
669 pub fn remove(self) -> V::Strong { in remove()
[all …]
Dweak_key_hash_map.rs373 fn find_bucket<Q>(&self, key: &Q) -> Option<(usize, K::Strong, HashCode)> in find_bucket()
441 pub fn get_both<Q>(&self, key: &Q) -> Option<(K::Strong, &V)> in get_both()
464 pub fn get_both_mut<Q>(&mut self, key: &Q) -> Option<(K::Strong, &mut V)> in get_both_mut()
477 pub fn insert(&mut self, key: K::Strong, value: V) -> Option<V> { in insert()
512 where F: FnMut(K::Strong, &mut V) -> bool in retain()
721 pub fn key(&self) -> &K::Strong { in key()
733 pub fn key(&self) -> &K::Strong { in key()
740 pub fn remove_entry(self) -> (K::Strong, V) { in remove_entry()
789 pub fn key(&self) -> &K::Strong { in key()
796 pub fn into_key(self) -> K::Strong { in into_key()
Dby_ptr.rs11 type Strong = K::Strong; typedef
17 fn view(&self) -> Option<Self::Strong> { in view()
27 fn with_key<F, R>(view: &Self::Strong, f: F) -> R in with_key()
Dptr_weak_key_hash_map.rs147 pub fn insert(&mut self, key: K::Strong, value: V) -> Option<V> { in insert()
164 where F: FnMut(K::Strong, &mut V) -> bool in retain()
/aosp_15_r20/external/clang/lib/AST/
H A DTypePrinter.cpp267 IncludeStrongLifetimeRAII Strong(Policy); in printBefore() local
291 IncludeStrongLifetimeRAII Strong(Policy); in printBefore() local
331 IncludeStrongLifetimeRAII Strong(Policy); in printPointerBefore() local
341 IncludeStrongLifetimeRAII Strong(Policy); in printPointerAfter() local
364 IncludeStrongLifetimeRAII Strong(Policy); in printLValueReferenceBefore() local
375 IncludeStrongLifetimeRAII Strong(Policy); in printLValueReferenceAfter() local
386 IncludeStrongLifetimeRAII Strong(Policy); in printRValueReferenceBefore() local
397 IncludeStrongLifetimeRAII Strong(Policy); in printRValueReferenceAfter() local
408 IncludeStrongLifetimeRAII Strong(Policy); in printMemberPointerBefore() local
424 IncludeStrongLifetimeRAII Strong(Policy); in printMemberPointerAfter() local
[all …]
/aosp_15_r20/frameworks/native/libs/binder/rust/src/
H A Dbinder.rs391 pub struct Strong<I: FromIBinder + ?Sized>(Box<I>); struct
393 impl<I: FromIBinder + ?Sized> Strong<I> { implementation
425 impl<I: FromIBinder + ?Sized> Clone for Strong<I> { implementation
434 impl<I: FromIBinder + ?Sized> Borrow<I> for Strong<I> { implementation
440 impl<I: FromIBinder + ?Sized> AsRef<I> for Strong<I> { implementation
446 impl<I: FromIBinder + ?Sized> Deref for Strong<I> { implementation
454 impl<I: FromIBinder + fmt::Debug + ?Sized> fmt::Debug for Strong<I> { implementation
460 impl<I: FromIBinder + ?Sized> Ord for Strong<I> { implementation
466 impl<I: FromIBinder + ?Sized> PartialOrd for Strong<I> { implementation
472 impl<I: FromIBinder + ?Sized> PartialEq for Strong<I> { implementation
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/rsc.io/markdown/
Dinline.go165 type Strong struct { struct
166 Marker string
167 Inner []Inline
170 func (x *Strong) Inline() {
173 func (x *Strong) PrintHTML(buf *bytes.Buffer) {
181 func (x *Strong) printMarkdown(buf *bytes.Buffer) {
189 func (x *Strong) PrintText(buf *bytes.Buffer) {
/aosp_15_r20/frameworks/native/libs/binder/rust/src/parcel/
H A Dparcelable.rs840 impl<T: Serialize + FromIBinder + ?Sized> Serialize for Strong<T> { implementation
846 impl<T: SerializeOption + FromIBinder + ?Sized> SerializeOption for Strong<T> { implementation
852 impl<T: Serialize + FromIBinder + ?Sized> SerializeArray for Strong<T> {} implementation
854 impl<T: FromIBinder + ?Sized> Deserialize for Strong<T> { implementation
878 impl<T: FromIBinder + ?Sized> DeserializeOption for Strong<T> { implementation
885 impl<T: FromIBinder + ?Sized> DeserializeArray for Strong<T> {} implementation
/aosp_15_r20/external/llvm/lib/CodeGen/
H A DStackProtector.cpp120 bool Strong, in ContainsProtectableArray()
212 bool Strong = false; in RequiresStackProtector() local
H A DSpillPlacement.cpp278 void SpillPlacement::addPrefSpill(ArrayRef<unsigned> Blocks, bool Strong) { in addPrefSpill()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DStackProtector.cpp118 bool Strong, in ContainsProtectableArray()
252 bool Strong = false; in RequiresStackProtector() local
H A DSpillPlacement.cpp286 void SpillPlacement::addPrefSpill(ArrayRef<unsigned> Blocks, bool Strong) { in addPrefSpill()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
H A DStackProtector.cpp125 bool Strong, in ContainsProtectableArray()
286 bool Strong = false; in RequiresStackProtector() local
H A DSpillPlacement.cpp281 void SpillPlacement::addPrefSpill(ArrayRef<unsigned> Blocks, bool Strong) { in addPrefSpill()
/aosp_15_r20/external/cronet/base/types/
H A Dexpected_unittest.cc29 struct Strong { struct
30 constexpr explicit Strong(T value) : value(std::move(value)) {} in Strong() function
31 T value;
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/weak/
Dpointer.go73 func (p Pointer[T]) Strong() *T { func
/aosp_15_r20/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-objc.m14 @property (strong) NSObject *Strong; property
/aosp_15_r20/trusty/user/app/sample/hwcryptohal/server/
Dcrypto_operation_context.rs56 impl From<BinderCryptoOperationContext> for binder::Strong<dyn ICryptoOperationContext> { implementation
Dopaque_key.rs533 impl From<OpaqueKey> for binder::Strong<dyn IOpaqueKey> { implementation
/aosp_15_r20/external/clang/lib/ARCMigrate/
H A DTransforms.h88 enum AttrKind { Weak, Strong } Kind; enumerator
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h267 Strong, enumerator
/aosp_15_r20/external/clang/include/clang/AST/
H A DASTContext.h2536 Strong ///< Strong definition. enumerator

12