Home
last modified time | relevance | path

Searched refs:wrap_static_fns_suffix (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/bindgen/bindgen-cli/
Doptions.rs366 wrap_static_fns_suffix: Option<String>, field
492 wrap_static_fns_suffix, in builder_from_flags()
1007 if let Some(suffix) = wrap_static_fns_suffix { in builder_from_flags()
1008 builder = builder.wrap_static_fns_suffix(suffix); in builder_from_flags()
/third_party/rust/crates/bindgen/bindgen/
Dlib.rs671 if let Some(ref suffix) = self.options.wrap_static_fns_suffix { in command_line_flags()
1832 pub fn wrap_static_fns_suffix<T: AsRef<str>>(mut self, suffix: T) -> Self { in wrap_static_fns_suffix() method
1833 self.options.wrap_static_fns_suffix = Some(suffix.as_ref().to_owned()); in wrap_static_fns_suffix()
2179 wrap_static_fns_suffix: Option<String>, field
2375 wrap_static_fns_suffix, in default()
/third_party/rust/crates/bindgen/bindgen/codegen/
Dserialize.rs106 let wrap_name = format!("{}{}", name, ctx.wrap_static_fns_suffix()); in serialize()
Dmod.rs4171 let name = canonical_name.clone() + ctx.wrap_static_fns_suffix(); in codegen()
/third_party/rust/crates/bindgen/bindgen/ir/
Dcontext.rs2797 pub(crate) fn wrap_static_fns_suffix(&self) -> &str { in wrap_static_fns_suffix() method
2799 .wrap_static_fns_suffix in wrap_static_fns_suffix()