Lines Matching refs:write
41 def write(self, out):
42 out.write('.. {}:: {}\n'.format(self.domain, self.name))
43 out.write('\n')
45 out.write(' {}\n'.format(line))
54 def write(self, out):
56 out.write('.. type:: {}\n'.format(self.name))
57 out.write('\n')
59 out.write(' {}\n'.format(line))
60 out.write('\n')
62 out.write(' .. {}:: {}\n'.format(self.member_domain, name))
63 out.write('\n')
65 out.write(' {}\n'.format(line))
66 out.write('\n')
74 def write(self, out):
76 out.write('.. type:: {}\n'.format(self.name))
77 out.write('\n')
79 out.write(' {}\n'.format(line))
80 out.write('\n')
82 out.write(' .. enum:: {}\n'.format(name))
83 out.write('\n')
85 out.write(' {}\n'.format(line))
86 out.write('\n')
93 def write(self, out):
94 out.write('''.. macro:: {}\n'''.format(self.name))
95 out.write('\n')
97 out.write(' {}\n'.format(line))
103 def write(self, out):
104 out.write('\n')
106 out.write(c)
107 out.write('\n')
108 out.write('-' * len(c))
109 out.write('\n\n')
116 def write(self, out):
117 out.write('''.. type:: {}\n'''.format(self.name))
118 out.write('\n')
120 out.write(' {}\n'.format(line))
153 indexfile.write('''
171 indexfile.write(' {}\n'.format(doc.funcname))
173 macrosfile.write('''
178 doc.write(macrosfile)
180 enumsfile.write('''
185 doc.write(enumsfile)
187 typesfile.write('''
192 doc.write(typesfile)
196 f.write('''
207 doc.write(f)