Home
last modified time | relevance | path

Searched refs:is_array (Results 1 – 12 of 12) sorted by relevance

/wasmtime-44.0.1/crates/c-api/tests/
H A Dgc.cc217 EXPECT_TRUE(eq.is_array(cx)); in TEST()
247 EXPECT_FALSE(any.is_array(cx)); in TEST()
275 EXPECT_FALSE(any.is_array(cx)); in TEST()
303 EXPECT_TRUE(any.is_array(cx)); in TEST()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/disabled/
H A Deqref.rs89 pub fn is_array(&self, _store: impl AsContext) -> Result<bool> { in is_array() method
H A Danyref.rs142 pub fn is_array(&self, _store: impl AsContext) -> Result<bool> { in is_array() method
/wasmtime-44.0.1/crates/c-api/include/wasmtime/
H A Dgc.hh100 bool is_array(Store::Context cx) const { in is_array() function in wasmtime::EqRef
455 inline bool AnyRef::is_array(Store::Context cx) const { in is_array() function in wasmtime::AnyRef
H A Dval.hh196 inline bool is_array(Store::Context cx) const;
/wasmtime-44.0.1/crates/wast/src/
H A Dcore.rs174 if x.is_array(store)? { in match_val()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/enabled/
H A Deqref.rs412 pub fn is_array(&self, store: impl AsContext) -> Result<bool> { in is_array() method
H A Danyref.rs626 pub fn is_array(&self, store: impl AsContext) -> Result<bool> { in is_array() method
/wasmtime-44.0.1/crates/c-api/src/
H A Dref.rs917 Some(eqref) => eqref.is_array(&cx).expect("OwnedRooted always in scope"), in wasmtime_eqref_is_array()
1007 Some(anyref) => anyref.is_array(&cx).expect("OwnedRooted always in scope"), in wasmtime_anyref_is_array()
/wasmtime-44.0.1/tests/all/
H A Darrays.rs182 assert!(anyref.is_array(&store)?); in anyref_as_array()
187 assert!(!anyref.is_array(&store)?); in anyref_as_array()
/wasmtime-44.0.1/crates/environ/src/
H A Dtypes.rs1232 pub fn is_array(&self) -> bool { in is_array() method
1417 pub fn is_array(&self) -> bool { in is_array() method
1418 self.composite_type.inner.is_array() && !self.composite_type.shared in is_array()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dtypes.rs2349 debug_assert!(registered_type.is_array()); in from_registered_type()