Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/c-api/tests/
H A Dgc.cc150 EXPECT_TRUE(eq.is_struct(cx)); in TEST()
218 EXPECT_FALSE(eq.is_struct(cx)); in TEST()
246 EXPECT_FALSE(any.is_struct(cx)); in TEST()
274 EXPECT_TRUE(any.is_struct(cx)); in TEST()
302 EXPECT_FALSE(any.is_struct(cx)); in TEST()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/disabled/
H A Deqref.rs69 pub fn is_struct(&self, _store: impl AsContext) -> Result<bool> { in is_struct() method
H A Danyref.rs122 pub fn is_struct(&self, _store: impl AsContext) -> Result<bool> { in is_struct() method
/wasmtime-44.0.1/crates/c-api/include/wasmtime/
H A Dgc.hh95 bool is_struct(Store::Context cx) const { in is_struct() function in wasmtime::EqRef
452 inline bool AnyRef::is_struct(Store::Context cx) const { in is_struct() function in wasmtime::AnyRef
H A Dval.hh193 inline bool is_struct(Store::Context cx) const;
/wasmtime-44.0.1/crates/wast/src/
H A Dcore.rs167 if x.is_struct(store)? { in match_val()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/enabled/
H A Deqref.rs344 pub fn is_struct(&self, store: impl AsContext) -> Result<bool> { in is_struct() method
H A Danyref.rs558 pub fn is_struct(&self, store: impl AsContext) -> Result<bool> { in is_struct() method
/wasmtime-44.0.1/tests/all/
H A Dstructs.rs102 assert!(anyref.is_struct(&store)?); in anyref_as_struct()
108 assert!(!anyref.is_struct(&store)?); in anyref_as_struct()
/wasmtime-44.0.1/crates/c-api/src/
H A Dref.rs746 Some(eqref) => eqref.is_struct(&cx).expect("OwnedRooted always in scope"), in wasmtime_eqref_is_struct()
977 Some(anyref) => anyref.is_struct(&cx).expect("OwnedRooted always in scope"), in wasmtime_anyref_is_struct()
/wasmtime-44.0.1/crates/environ/src/
H A Dtypes.rs1268 pub fn is_struct(&self) -> bool { in is_struct() method
1437 pub fn is_struct(&self) -> bool { in is_struct() method
1438 self.composite_type.inner.is_struct() && !self.composite_type.shared in is_struct()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dtypes.rs2108 debug_assert!(registered_type.is_struct()); in from_registered_type()