Searched refs:self_template_params (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/bindgen/src/ir/ |
D | template.rs | 111 fn self_template_params(&self, ctx: &BindgenContext) -> Vec<TypeId>; in self_template_params() method 116 self.self_template_params(ctx).len() in num_self_template_params() 141 .flat_map(|id| id.self_template_params(ctx).into_iter()) in all_template_params()
|
D | ty.rs | 567 fn self_template_params(&self, ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() method 568 self.kind.self_template_params(ctx) in self_template_params() 573 fn self_template_params(&self, ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() method 576 ctx.resolve_type(id).self_template_params(ctx) in self_template_params() 578 TypeKind::Comp(ref comp) => comp.self_template_params(ctx), in self_template_params()
|
D | item.rs | 1216 fn self_template_params(&self, ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() function 1218 .map_or(vec![], |item| item.self_template_params(ctx)) in self_template_params() 1223 fn self_template_params(&self, ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() method 1224 self.kind.self_template_params(ctx) in self_template_params() 1229 fn self_template_params(&self, ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() method 1231 ItemKind::Type(ref ty) => ty.self_template_params(ctx), in self_template_params()
|
D | context.rs | 1310 id.self_template_params(self) in find_used_template_parameters() 2749 fn self_template_params(&self, _ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() method
|
D | comp.rs | 1785 fn self_template_params(&self, _ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() method
|
/external/rust/crates/bindgen/src/ir/analysis/ |
D | template_params.rs | 281 let params = decl.self_template_params(self.ctx); in constrain_instantiation() 432 let params = decl.self_template_params(ctx); in new()
|
D | derive.rs | 326 (!info.self_template_params(self.ctx).is_empty() || in constrain_type()
|
/external/rust/crates/bindgen/src/codegen/ |
D | mod.rs | 3695 let def_params = def.self_template_params(ctx); in try_to_rust_ty()
|