Lines Matching refs:Rule
25 from rules import Rule
59 ignore_temp_rules: Ignore rules that start with Rule.TEMP_ALLOW ("!").
147 if allow == Rule.TEMP_ALLOW and self.ignore_temp_rules:
176 if ((dst, Rule.ALLOW) not in deps_graph[src]) and \
177 ((dst, Rule.TEMP_ALLOW) not in deps_graph[src]) and \
178 ((dst, Rule.DISALLOW) not in deps_graph[src]):
192 if allow == Rule.DISALLOW and self.hide_disallowed_deps:
195 if allow == Rule.ALLOW and src == dst:
222 if allow == Rule.ALLOW:
225 elif allow == Rule.TEMP_ALLOW: