Lines Matching refs:rss
566 rss = getattr(self, c.RuleSet)
569 if i >= rssCount or not rss[i]: continue
570 for r in getattr(rss[i], c.Rule):
592 rss = getattr(self, c.RuleSet)
595 if i >= rssCount or not rss[i]: continue
596 for r in getattr(rss[i], c.Rule):
645 rss = getattr(self, c.RuleSet)
646 rss = [rss[i] for i in indices]
647 for rs in rss:
656 rss = [rs for rs in rss if rs and getattr(rs, c.Rule)]
657 setattr(self, c.RuleSet, rss)
658 setattr(self, c.RuleSetCount, len(rss))
659 return bool(rss)
668 rss = getattr(self, c.RuleSet)
670 rss = [rss[i] for i in indices if i < rssCount]
674 rss = [rss if i in indices else None for i,rss in enumerate(rss)]
675 while rss and rss[-1] is None:
676 del rss[-1]
678 for rs in rss:
691 return bool(rss)