Home
last modified time | relevance | path

Searched defs:ObjCMethod (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/bindgen/bindgen/ir/
Dobjc.rs50 pub(crate) struct ObjCMethod { struct
53 name: String,
57 rust_name: String,
59 signature: FunctionSig,
62 is_class_method: bool,
104 pub(crate) fn methods(&self) -> &Vec<ObjCMethod> { in methods()
119 pub(crate) fn class_methods(&self) -> &Vec<ObjCMethod> { in class_methods()
205 fn add_method(&mut self, method: ObjCMethod) { in add_method()
214 impl ObjCMethod { implementation
219 ) -> ObjCMethod { in new()
/third_party/rust/crates/bindgen/bindgen/codegen/
Dmod.rs4592 method: &ObjCMethod, in objc_method_codegen()