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.
185 self.variations.append (value)
223 # Parse the list of variations after 'Schedule of variations:'.
414 # Parse the list of variations, which comes before the test
416 if line.startswith ('Schedule of variations:'):
530 if len (self.variations) > 1:
540 # acats doesn't use variations, so just output everything.
543 for variation in tool.variations.values():
550 'Schedule of variations:\n')
551 for name in self.variations:
552 if name in tool.variations:
555 for name in self.variations:
556 if name in tool.variations:
557 variation = tool.variations[name]
574 if len (self.variations) == 0:
575 self.variations = sorted (self.known_variations)
577 for name in self.variations: