Lines Matching full:template
21 template = self.environment.get_template("declaration/close.j2")
22 print(template.render(name=node.name))
26 template = self.environment.get_template("definition/open.j2")
27 print(template.render(name=node.name))
29 template = self.environment.get_template("definition/enumerator.j2")
31 print(template.render(name=enumerator.name, value=enumerator.value))
33 template = self.environment.get_template("definition/close.j2")
34 print(template.render(name=node.name))
38 template = self.environment.get_template("decoder/enum.j2")
39 print(template.render(name=node.name))
43 template = self.environment.get_template("encoder/enum.j2")
44 print(template.render(name=node.name))