Home | History | Annotate | Download | only in tools

Lines Matching refs:sections

590   def GetTestStatus(self, sections, defs):
646 def GetTestStatus(self, context, sections, defs):
647 self.GetConfiguration(context).GetTestStatus(sections, defs)
680 def GetTestStatus(self, context, sections, defs):
682 test.GetTestStatus(context, sections, defs)
1075 def __init__(self, sections, defs):
1076 self.sections = sections
1080 sections = [s for s in self.sections if s.condition.Evaluate(env, self.defs)]
1081 all_rules = reduce(list.__add__, [s.rules for s in sections], [])
1100 """A section of the configuration file. Sections are enabled or
1140 def ReadConfigurationInto(path, sections, defs):
1142 sections.append(current_section)
1150 sections.append(new_section)
1474 sections = [ ]
1476 root.GetTestStatus(context, sections, defs)
1477 config = Configuration(sections, defs)