Lines Matching full:factory
253 def factory(self, objs): member in ConfigEntry
254 """Optional factory interface for subclasses to add
261 after all factory methods have been run."""
280 def factory(self, objs): member in Path
293 super(Path, self).factory(objs)
318 def factory(self, objs): member in Property
338 super(Property, self).factory(objs)
394 """Provide a factory method for groups whose members are
400 def factory(self, objs): member in ImplicitGroup
403 factory = Everything.classmap(self.subclass, "element")
411 obj = factory(configfile=self.configfile, **args)
413 obj.factory(objs)
415 super(ImplicitGroup, self).factory(objs)
518 def factory(self, objs): member in HasPropertyIndex
546 group.factory(objs)
548 super(HasPropertyIndex, self).factory(objs)
579 def factory(self, objs): member in HasPathIndex
602 group.factory(objs)
604 super(HasPathIndex, self).factory(objs)
632 def factory(self, objs): member in GroupOfFilters
642 super(GroupOfFilters, self).factory(objs)
658 def factory(self, objs): member in PropertyWatch
698 group.factory(objs)
700 super(PropertyWatch, self).factory(objs)
758 def factory(self, objs): member in ConditionCallback
772 super(ConditionCallback, self).factory(objs)
801 def factory(self, objs): member in Condition
816 callback.factory(objs)
818 super(Condition, self).factory(objs)
954 def factory(self, objs): member in Method
979 super(Method, self).factory(objs)
1039 def factory(self, objs): member in GroupOfCallbacks
1053 super(GroupOfCallbacks, self).factory(objs)
1077 def factory(self, objs): member in GroupOfPathCallbacks
1090 super(GroupOfPathCallbacks, self).factory(objs)
1170 In the first phase a factory method associated with each
1171 configuration file directive is invoked. These factory
1172 methods generate more factory methods. In the second
1173 phase the factory methods created in the first phase
1180 # Create factory object for this config file directive.
1186 factory = Everything.classmap(cls, sub)
1187 obj = factory(configfile=path, **x)
1201 obj.factory(objs)