Lines Matching refs:self
73 def run(self):
74 doc = self.state.document
76 raise self.warning("docutils: file insertion disabled")
84 '--dir', os.path.join(srctree, 'Documentation', self.arguments[0]),
87 if 'rst' in self.options:
91 nodeList = self.nestedParse(lines, self.arguments[0])
94 def nestedParse(self, lines, fname):
95 env = self.state.document.settings.env
99 if "debug" in self.options:
119 self.do_parse(content, node)
132 kernellog.info(self.state.document.settings.env.app, "%s: parsed %i lines" % (fname, n))
135 self.do_parse(content, node)
139 def do_parse(self, content, node):
140 with switch_source_input(self.state, content):
141 self.state.nested_parse(content, 0, node, match_titles=1)