Lines Matching refs:self
41 def __init__ (self, path, copyright = None):
42 self.path = path
43 self.copyright = copyright
46 def __init__ (self, name, filters, glconfig = None, rotation = None, surfacetype = None, required = False, runtime = None, runByDefault = True, listOfGroupsToSplit = []):
47 self.name = name
48 self.glconfig = glconfig
49 self.rotation = rotation
50 self.surfacetype = surfacetype
51 self.required = required
52 self.filters = filters
53 self.expectedRuntime = runtime
54 self.runByDefault = runByDefault
55 self.listOfGroupsToSplit = listOfGroupsToSplit
58 def __init__ (self, module, configurations):
59 self.module = module
60 self.configurations = configurations
63 def __init__ (self, project, version, packages):
64 self.project = project
65 self.version = version
66 self.packages = packages
72 def __init__ (self, type, filenames):
73 self.type = type
74 self.filenames = filenames
75 self.key = ",".join(filenames)
78 def __init__ (self):
79 self.children = []
82 def __init__ (self, name):
83 self.name = name
84 self.children = []
87 def __init__ (self, name):
88 self.name = name
89 self.configurations = []
121 def __init__(self, filePath, sortedLines):
122 self.filePath = filePath
123 self.sortedLines = sortedLines
251 def __init__(self):
252 self.namedPatternsTree = {}
253 self.namedPatternsDict = {}
254 self.wildcardPatternsDict = {}