Searched defs:ArrayRef (Results 1 – 9 of 9) sorted by relevance
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/disabled/ |
| H A D | arrayref.rs | 12 pub enum ArrayRef {} enum 14 impl GcRefImpl for ArrayRef {} implementation 16 impl ArrayRef { impl
|
| H A D | eqref.rs | 97 pub fn as_array(&self, _store: impl AsContext) -> Result<Option<ArrayRef>> { in as_array() 101 pub(crate) fn _as_array(&self, _store: &StoreOpaque) -> Result<Option<ArrayRef>> { in _as_array() 105 pub fn unwrap_array(&self, _store: impl AsContext) -> Result<ArrayRef> { in unwrap_array()
|
| H A D | anyref.rs | 150 pub fn as_array(&self, _store: impl AsContext) -> Result<Option<ArrayRef>> { in as_array() 154 pub(crate) fn _as_array(&self, _store: &StoreOpaque) -> Result<Option<ArrayRef>> { in _as_array() 158 pub fn unwrap_array(&self, _store: impl AsContext) -> Result<ArrayRef> { in unwrap_array()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/enabled/ |
| H A D | arrayref.rs | 183 pub struct ArrayRef { struct 187 unsafe impl GcRefImpl for ArrayRef { argument 263 impl ArrayRef { implementation 301 ) -> Result<Rooted<ArrayRef>> { in new() 354 ) -> Result<Rooted<ArrayRef>> { in new_async() 374 ) -> Result<Rooted<ArrayRef>> { in _new_async() 389 ) -> Result<Rooted<ArrayRef>> { in new_from_iter() 470 ) -> Result<Rooted<ArrayRef>> { in new_fixed() 524 ) -> Result<Rooted<ArrayRef>> { in new_fixed_async() 535 ) -> Result<Rooted<ArrayRef>> { in _new_fixed_async()
|
| H A D | eqref.rs | 438 pub fn as_array(&self, store: impl AsContext) -> Result<Option<Rooted<ArrayRef>>> { in as_array() 442 pub(crate) fn _as_array(&self, store: &StoreOpaque) -> Result<Option<Rooted<ArrayRef>>> { in _as_array() 461 pub fn unwrap_array(&self, store: impl AsContext) -> Result<Rooted<ArrayRef>> { in unwrap_array() 465 pub(crate) fn _unwrap_array(&self, store: &StoreOpaque) -> Result<Rooted<ArrayRef>> { in _unwrap_array()
|
| H A D | anyref.rs | 652 pub fn as_array(&self, store: impl AsContext) -> Result<Option<Rooted<ArrayRef>>> { in as_array() 656 pub(crate) fn _as_array(&self, store: &StoreOpaque) -> Result<Option<Rooted<ArrayRef>>> { in _as_array() 675 pub fn unwrap_array(&self, store: impl AsContext) -> Result<Rooted<ArrayRef>> { in unwrap_array() 679 pub(crate) fn _unwrap_array(&self, store: &StoreOpaque) -> Result<Rooted<ArrayRef>> { in _unwrap_array()
|
| /wasmtime-44.0.1/crates/c-api/include/wasmtime/ |
| H A D | gc.hh | 351 class ArrayRef { class 360 explicit ArrayRef(wasmtime_arrayref_t val) : val(val) {} in ArrayRef() function in wasmtime::ArrayRef 363 ArrayRef(const ArrayRef &other) { wasmtime_arrayref_clone(&other.val, &val); } in ArrayRef() function in wasmtime::ArrayRef 373 ArrayRef(ArrayRef &&other) { in ArrayRef() function in wasmtime::ArrayRef
|
| /wasmtime-44.0.1/crates/c-api/tests/ |
| H A D | gc.cc | 164 TEST(ArrayRef, CreateAndReadElements) { in TEST() argument 201 TEST(ArrayRef, UpcastAndDowncast) { in TEST() argument
|
| /wasmtime-44.0.1/crates/environ/src/ |
| H A D | gc.rs | 473 ArrayRef = 0b101010 << 26, enumerator
|