Lines Matching refs:comment
34 def __init__(self, name, type, comment): argument
37 self.comment = comment.strip()
42 doxygen2rst(indent(self.comment, 2)))
48 def __init__(self, name, comment): argument
50 self.comment = comment.strip()
57 def __init__(self, name, comment): argument
59 self.comment = comment.strip()
65 doxygen2rst(indent(self.comment, 2)))
78 comment = ''
89 comment = clean_comment_line(line)
95 comment += clean_comment_line(line)
99 enum = Enum(name, comment)
103 option = Option(str(field_name), str(field_type), comment)
110 comment = clean_comment_line(line)
118 comment += clean_comment_line(line)
121 enum.values.append(EnumValue(line.replace(',', ''), comment))