Home | History | Annotate | Download | only in contrib

Lines Matching refs:variations

44         # The variations run for this tool, mapped by --target_board name.
45 self.variations = dict()
49 if name not in self.variations:
50 self.variations[name] = VariationRun (name)
51 return self.variations[name]
107 # The variations specified on the command line.
108 self.variations = []
109 # The variations seen in the input files.
186 self.variations.append (value)
224 # Parse the list of variations after 'Schedule of variations:'.
415 # Parse the list of variations, which comes before the test
417 if line.startswith ('Schedule of variations:'):
531 if len (self.variations) > 1:
541 # acats doesn't use variations, so just output everything.
544 for variation in tool.variations.values():
551 'Schedule of variations:\n')
552 for name in self.variations:
553 if name in tool.variations:
556 for name in self.variations:
557 if name in tool.variations:
558 variation = tool.variations[name]
575 if len (self.variations) == 0:
576 self.variations = sorted (self.known_variations)
578 for name in self.variations: