Home | History | Annotate | Download | only in policyrep

Lines Matching refs:types

47     def types(self):
59 def types(self):
60 """Generator which yields the role's set of types."""
66 types = list(str(t) for t in self.types())
68 if types:
69 if (len(types) > 1):
70 stmt += " types {{ {0} }}".format(' '.join(types))
72 stmt += " types {0}".format(types[0])