Home
last modified time | relevance | path

Searched refs:self_template_params (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/bindgen/src/ir/
Dtemplate.rs111 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()
Dty.rs567 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()
Ditem.rs1216 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()
Dcontext.rs1310 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
Dcomp.rs1785 fn self_template_params(&self, _ctx: &BindgenContext) -> Vec<TypeId> { in self_template_params() method
/external/rust/crates/bindgen/src/ir/analysis/
Dtemplate_params.rs281 let params = decl.self_template_params(self.ctx); in constrain_instantiation()
432 let params = decl.self_template_params(ctx); in new()
Dderive.rs326 (!info.self_template_params(self.ctx).is_empty() || in constrain_type()
/external/rust/crates/bindgen/src/codegen/
Dmod.rs3695 let def_params = def.self_template_params(ctx); in try_to_rust_ty()