Home
last modified time | relevance | path

Searched refs:SimpleRef (Results 1 – 25 of 76) sorted by relevance

1234

/dports/lang/spidermonkey78/firefox-78.9.0/xpcom/base/
H A DnsAutoRef.h115 typedef nsSimpleRef<T> SimpleRef; typedef
175 temp.SimpleRef::operator=(*this); in swap()
176 SimpleRef::operator=(aOther); in swap()
177 aOther.SimpleRef::operator=(temp); in swap()
184 SimpleRef::operator=(empty); in reset()
218 typedef nsSimpleRef<T> SimpleRef; typedef
227 SimpleRef::operator=(aRefToCopy); in nsCountedRef()
236 SimpleRef::operator=(aRefToCopy);
493 typedef nsSimpleRef<T> SimpleRef; typedef
550 SimpleRef::operator=(empty); in disown()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/xpcom/base/
H A DnsAutoRef.h115 typedef nsSimpleRef<T> SimpleRef; typedef
173 temp.SimpleRef::operator=(*this); in swap()
174 SimpleRef::operator=(aOther); in swap()
175 aOther.SimpleRef::operator=(temp); in swap()
182 SimpleRef::operator=(empty); in reset()
216 typedef nsSimpleRef<T> SimpleRef; typedef
225 SimpleRef::operator=(aRefToCopy); in nsCountedRef()
234 SimpleRef::operator=(aRefToCopy);
491 typedef nsSimpleRef<T> SimpleRef; typedef
548 SimpleRef::operator=(empty); in disown()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/xpcom/base/
H A DnsAutoRef.h113 typedef nsSimpleRef<T> SimpleRef; typedef
189 temp.SimpleRef::operator=(*this); in swap()
190 SimpleRef::operator=(aOther); in swap()
199 SimpleRef::operator=(empty); in reset()
237 typedef nsSimpleRef<T> SimpleRef; typedef
249 SimpleRef::operator=(aRefToCopy); in nsCountedRef()
556 typedef nsSimpleRef<T> SimpleRef; typedef
584 : SimpleRef(aRefToRelease) in nsAutoRefBase()
613 : SimpleRef(aRawRef) in LocalSimpleRef()
641 SimpleRef::operator=(empty); in disown()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/xpcom/base/
H A DnsAutoRef.h115 typedef nsSimpleRef<T> SimpleRef; typedef
173 temp.SimpleRef::operator=(*this); in swap()
174 SimpleRef::operator=(aOther); in swap()
175 aOther.SimpleRef::operator=(temp); in swap()
182 SimpleRef::operator=(empty); in reset()
408 typedef nsSimpleRef<T> SimpleRef; typedef
409 typedef typename SimpleRef::RawRef RawRef;
432 : SimpleRef(aReturning.mReturnRef.disown()) {} in nsAutoRefBase()
439 class LocalSimpleRef : public SimpleRef {
463 SimpleRef::operator=(empty); in disown()
[all …]
/dports/www/firefox/firefox-99.0/xpcom/base/
H A DnsAutoRef.h115 typedef nsSimpleRef<T> SimpleRef; typedef
173 temp.SimpleRef::operator=(*this); in swap()
174 SimpleRef::operator=(aOther); in swap()
175 aOther.SimpleRef::operator=(temp); in swap()
182 SimpleRef::operator=(empty); in reset()
408 typedef nsSimpleRef<T> SimpleRef; typedef
409 typedef typename SimpleRef::RawRef RawRef;
432 : SimpleRef(aReturning.mReturnRef.disown()) {} in nsAutoRefBase()
439 class LocalSimpleRef : public SimpleRef {
463 SimpleRef::operator=(empty); in disown()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/xpcom/base/
H A DnsAutoRef.h115 typedef nsSimpleRef<T> SimpleRef; typedef
173 temp.SimpleRef::operator=(*this); in swap()
174 SimpleRef::operator=(aOther); in swap()
175 aOther.SimpleRef::operator=(temp); in swap()
182 SimpleRef::operator=(empty); in reset()
408 typedef nsSimpleRef<T> SimpleRef; typedef
409 typedef typename SimpleRef::RawRef RawRef;
432 : SimpleRef(aReturning.mReturnRef.disown()) {} in nsAutoRefBase()
439 class LocalSimpleRef : public SimpleRef {
463 SimpleRef::operator=(empty); in disown()
[all …]
/dports/audio/lewton/lewton-0.10.2/cargo-crates/rental-0.5.5/tests/
H A Dgeneric.rs20 pub struct SimpleRef<T: 'static> {
31 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in new()
34 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.try_borrow()); in new()
38 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.fail_borrow()); in new()
47 let sr = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in read()
H A Dsimple_ref.rs32 pub struct SimpleRef {
43 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in new()
46 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
50 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
59 let mut sr = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in read()
/dports/www/firefox/firefox-99.0/third_party/rust/rental/tests/
H A Dgeneric.rs20 pub struct SimpleRef<T: 'static> {
31 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in new()
34 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.try_borrow()); in new()
38 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.fail_borrow()); in new()
47 let sr = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in read()
H A Dsimple_ref.rs32 pub struct SimpleRef {
43 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in new()
46 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
50 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
59 let mut sr = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in read()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/rental/tests/
H A Dgeneric.rs20 pub struct SimpleRef<T: 'static> {
31 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in new()
34 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.try_borrow()); in new()
38 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.fail_borrow()); in new()
47 let sr = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in read()
H A Dsimple_ref.rs32 pub struct SimpleRef {
43 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in new()
46 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
50 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
59 let mut sr = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in read()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/rental/tests/
H A Dgeneric.rs20 pub struct SimpleRef<T: 'static> {
31 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in new()
34 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.try_borrow()); in new()
38 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.fail_borrow()); in new()
47 let sr = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in read()
H A Dsimple_ref.rs32 pub struct SimpleRef {
43 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in new()
46 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
50 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
59 let mut sr = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in read()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/rental/tests/
H A Dgeneric.rs20 pub struct SimpleRef<T: 'static> {
31 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in new()
34 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.try_borrow()); in new()
38 let sr = rentals::SimpleRef::try_new(Box::new(foo), |foo| foo.fail_borrow()); in new()
47 let sr = rentals::SimpleRef::new(Box::new(foo), |foo| &foo.t); in read()
H A Dsimple_ref.rs32 pub struct SimpleRef {
43 let _ = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in new()
46 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
50 …let sr: rental::RentalResult<rentals::SimpleRef, (), _> = rentals::SimpleRef::try_new(Box::new(foo… in new()
59 let mut sr = rentals::SimpleRef::new(Box::new(foo), |foo| FooRef{ iref: &foo.i, misc: 12 }); in read()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/uuid-0.7.4/src/adapter/core_support/
H A Dmod.rs36 impl<'a> fmt::Display for super::SimpleRef<'a> { implementation
76 impl<'a> fmt::LowerHex for super::SimpleRef<'a> { implementation
79 f.write_str(self.encode_lower(&mut [0; super::SimpleRef::LENGTH])) in fmt()
115 impl<'a> fmt::UpperHex for super::SimpleRef<'a> { implementation
118 f.write_str(self.encode_upper(&mut [0; super::SimpleRef::LENGTH])) in fmt()
156 impl<'a> From<&'a Uuid> for super::SimpleRef<'a> { implementation
159 super::SimpleRef::from_uuid_ref(f) in from()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/uuid-0.7.4/src/adapter/core_support/
H A Dmod.rs36 impl<'a> fmt::Display for super::SimpleRef<'a> { implementation
76 impl<'a> fmt::LowerHex for super::SimpleRef<'a> { implementation
79 f.write_str(self.encode_lower(&mut [0; super::SimpleRef::LENGTH])) in fmt()
115 impl<'a> fmt::UpperHex for super::SimpleRef<'a> { implementation
118 f.write_str(self.encode_upper(&mut [0; super::SimpleRef::LENGTH])) in fmt()
156 impl<'a> From<&'a Uuid> for super::SimpleRef<'a> { implementation
159 super::SimpleRef::from_uuid_ref(f) in from()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/uuid-0.7.4/src/adapter/core_support/
H A Dmod.rs36 impl<'a> fmt::Display for super::SimpleRef<'a> { implementation
76 impl<'a> fmt::LowerHex for super::SimpleRef<'a> { implementation
79 f.write_str(self.encode_lower(&mut [0; super::SimpleRef::LENGTH])) in fmt()
115 impl<'a> fmt::UpperHex for super::SimpleRef<'a> { implementation
118 f.write_str(self.encode_upper(&mut [0; super::SimpleRef::LENGTH])) in fmt()
156 impl<'a> From<&'a Uuid> for super::SimpleRef<'a> { implementation
159 super::SimpleRef::from_uuid_ref(f) in from()
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/uuid-0.7.4/src/adapter/core_support/
H A Dmod.rs36 impl<'a> fmt::Display for super::SimpleRef<'a> { implementation
76 impl<'a> fmt::LowerHex for super::SimpleRef<'a> { implementation
79 f.write_str(self.encode_lower(&mut [0; super::SimpleRef::LENGTH])) in fmt()
115 impl<'a> fmt::UpperHex for super::SimpleRef<'a> { implementation
118 f.write_str(self.encode_upper(&mut [0; super::SimpleRef::LENGTH])) in fmt()
156 impl<'a> From<&'a Uuid> for super::SimpleRef<'a> { implementation
159 super::SimpleRef::from_uuid_ref(f) in from()
/dports/misc/xd-rust/delan-xd-4bdbb191ed6d/cargo-crates/uuid-0.7.4/src/adapter/core_support/
H A Dmod.rs36 impl<'a> fmt::Display for super::SimpleRef<'a> { implementation
76 impl<'a> fmt::LowerHex for super::SimpleRef<'a> { implementation
79 f.write_str(self.encode_lower(&mut [0; super::SimpleRef::LENGTH])) in fmt()
115 impl<'a> fmt::UpperHex for super::SimpleRef<'a> { implementation
118 f.write_str(self.encode_upper(&mut [0; super::SimpleRef::LENGTH])) in fmt()
156 impl<'a> From<&'a Uuid> for super::SimpleRef<'a> { implementation
159 super::SimpleRef::from_uuid_ref(f) in from()
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/uuid-0.7.4/src/adapter/core_support/
H A Dmod.rs36 impl<'a> fmt::Display for super::SimpleRef<'a> { implementation
76 impl<'a> fmt::LowerHex for super::SimpleRef<'a> { implementation
79 f.write_str(self.encode_lower(&mut [0; super::SimpleRef::LENGTH])) in fmt()
115 impl<'a> fmt::UpperHex for super::SimpleRef<'a> { implementation
118 f.write_str(self.encode_upper(&mut [0; super::SimpleRef::LENGTH])) in fmt()
156 impl<'a> From<&'a Uuid> for super::SimpleRef<'a> { implementation
159 super::SimpleRef::from_uuid_ref(f) in from()
/dports/sysutils/rsfetch/rsfetch-2.0.0/cargo-crates/uuid-0.7.4/src/adapter/core_support/
H A Dmod.rs36 impl<'a> fmt::Display for super::SimpleRef<'a> { implementation
76 impl<'a> fmt::LowerHex for super::SimpleRef<'a> { implementation
79 f.write_str(self.encode_lower(&mut [0; super::SimpleRef::LENGTH])) in fmt()
115 impl<'a> fmt::UpperHex for super::SimpleRef<'a> { implementation
118 f.write_str(self.encode_upper(&mut [0; super::SimpleRef::LENGTH])) in fmt()
156 impl<'a> From<&'a Uuid> for super::SimpleRef<'a> { implementation
159 super::SimpleRef::from_uuid_ref(f) in from()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/uuid-0.7.4/src/adapter/
H A Dmod.rs54 pub struct SimpleRef<'a>(&'a Uuid); struct
139 pub fn to_simple_ref(&self) -> SimpleRef { in to_simple_ref() argument
140 SimpleRef::from_uuid_ref(self) in to_simple_ref()
149 pub const fn to_simple_ref(&self) -> SimpleRef { in to_simple_ref() argument
150 SimpleRef::from_uuid_ref(self) in to_simple_ref()
610 impl<'a> SimpleRef<'a> { implementation
622 SimpleRef(uuid) in from_uuid_ref()
631 SimpleRef(uuid) in from_uuid_ref()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/uuid-0.7.4/src/adapter/
H A Dmod.rs54 pub struct SimpleRef<'a>(&'a Uuid); struct
139 pub fn to_simple_ref(&self) -> SimpleRef { in to_simple_ref() argument
140 SimpleRef::from_uuid_ref(self) in to_simple_ref()
149 pub const fn to_simple_ref(&self) -> SimpleRef { in to_simple_ref() argument
150 SimpleRef::from_uuid_ref(self) in to_simple_ref()
610 impl<'a> SimpleRef<'a> { impl
622 SimpleRef(uuid) in from_uuid_ref()
631 SimpleRef(uuid) in from_uuid_ref()

1234