Home | History | Annotate | Download | only in utils

Lines Matching refs:section

607             section,name = name.split(' ',1)
608 if section == 'Annex':
609 section,name = name.split(' ',1)
610 section = 'Annex '+section
612 section = None
618 spec = SpecIndex.fromstring(section)
626 best = (dist, (section, name, page))
662 section = m.group(2)
664 if section.endswith('.'):
665 section = section[:-1]
666 yield RefItem(name, section, filename, path, i+1)
667 ignore.add(section)
669 section = m.group(1)
670 if section.endswith('.'):
671 section = section[:-1]
672 if section not in ignore:
673 yield RefItem(None, section, filename, path, i+1)
729 def __init__(self, name, section, filename, path, line):
731 self.section = SpecIndex.fromstring(section)
738 return '%s %s'%(self.name, self.section)
740 return '--- %s'%(self.section,)
744 self.section,
750 return cmp((self.name,self.section,self.filename,self.path,self.line),
751 (b.name,b.section,self.filename,self.path,self.line))
754 return hash((self.name,self.section,self.filename,self.path,self.line))
786 n = getNode((ref.name,) + ref.section.indices)
833 items = spec[ref.section] = spec.get(ref.section,[])
867 section,name,page = tocEntry
868 # If section is exact print the TOC name
873 if section == components:
895 if item.section.paragraph is not None:
896 paraText = ' (p%d)'%(item.section.paragraph,)