• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/doc/

Lines Matching refs:comment

467 		self.last = ('comment', tok)
471 self.last = ('comment', line)
583 self.comment = None
639 def parseTopComment(self, comment):
641 lines = string.split(comment, "\n")
670 if self.comment == None or token[1][0] == '*':
671 self.comment = token[1];
673 self.comment = self.comment + token[1]
676 if string.find(self.comment, "DOC_DISABLE") != -1:
679 if string.find(self.comment, "DOC_ENABLE") != -1:
685 # Parse a comment block associate to a typedef
694 if self.comment == None:
696 self.warning("Missing comment for type %s" % (name))
698 if self.comment[0] != '*':
700 self.warning("Missing * in type comment for %s" % (name))
702 lines = string.split(self.comment, '\n')
707 self.warning("Misformatted type comment for %s" % (name))
726 self.warning("Type comment for %s lack description of the macro" % (name))
730 # Parse a comment block associate to a macro
739 if self.comment == None:
741 self.warning("Missing comment for macro %s" % (name))
743 if self.comment[0] != '*':
745 self.warning("Missing * in macro comment for %s" % (name))
747 lines = string.split(self.comment, '\n')
752 self.warning("Misformatted macro comment for %s" % (name))
766 self.warning("Misformatted macro comment for %s" % (name))
796 self.warning("Macro comment for %s lack description of the macro" % (name))
801 # Parse a comment block and merge the informations found in the
815 if self.comment == None:
817 self.warning("Missing comment for function %s" % (name))
819 if self.comment[0] != '*':
821 self.warning("Missing * in function comment for %s" % (name))
823 lines = string.split(self.comment, '\n')
828 self.warning("Misformatted function comment for %s" % (name))
843 self.warning("Misformatted function comment for %s" % (name))
865 self.warning("Unable to find arg %s from function comment for %s" % (
904 self.warning("Function comment for %s lacks description of arg %s" % (name, args[i][1]))
907 self.warning("Function comment for %s lacks description of return value" % (name))
909 self.warning("Function comment for %s lacks description of the function" % (name))
1018 if token[0] == 'comment':
1111 self.comment = None
1165 self.comment = None
1167 fields.append((self.type, fname, self.comment))
1168 self.comment = None
1195 self.comment = None
1196 comment = ""
1204 if self.comment != None:
1205 comment = self.comment
1206 self.comment = None
1207 self.enums.append((name, value, comment))
1212 if self.comment != None:
1213 comment = string.strip(self.comment)
1214 self.comment = None
1215 self.enums.append((name, value, comment))
1217 comment = ""
1526 self.comment = None
1530 self.comment = None
1537 self.comment = None
1565 self.comment = None