Lines Matching refs:sections
547 def GetTestStatus(self, sections, defs):
589 def GetTestStatus(self, context, sections, defs):
590 self.GetConfiguration(context).GetTestStatus(sections, defs)
617 def GetTestStatus(self, context, sections, defs):
619 test.GetTestStatus(context, sections, defs)
970 def __init__(self, sections, defs):
971 self.sections = sections
975 sections = [s for s in self.sections if s.condition.Evaluate(env, self.defs)]
976 all_rules = reduce(list.__add__, [s.rules for s in sections], [])
995 """A section of the configuration file. Sections are enabled or
1035 def ReadConfigurationInto(path, sections, defs):
1037 sections.append(current_section)
1045 sections.append(new_section)
1283 sections = [ ]
1285 root.GetTestStatus(context, sections, defs)
1286 config = Configuration(sections, defs)