Lines Matching refs:self
45 def __init__ (self, name, path, incpath, devicepath, copyright = None):
46 self.name = name
47 self.path = path
48 self.incpath = incpath
49 self.devicepath = devicepath
50 self.copyright = copyright
53 def __init__ (self, name, filters, glconfig = None, rotation = "unspecified", surfacetype = None, surfacewidth = None, surfaceheight = None, baseseed = None, fboconfig = None, required = False, runtime = None, os = "any", skip = "none"):
54 self.name = name
55 self.glconfig = glconfig
56 self.rotation = rotation
57 self.surfacetype = surfacetype
58 self.required = required
59 self.surfacewidth = surfacewidth
60 self.surfaceheight = surfaceheight
61 self.baseseed = baseseed
62 self.fboconfig = fboconfig
63 self.filters = filters
64 self.expectedRuntime = runtime
65 self.os = os
66 self.skipPlatform = skip
69 def __init__ (self, module, configurations, useforfirsteglconfig = True):
70 self.module = module
71 self.useforfirsteglconfig = useforfirsteglconfig
72 self.configurations = configurations
75 def __init__ (self, project, version, packages, isCurrent):
76 self.project = project
77 self.version = version
78 self.packages = packages
79 self.isCurrent = isCurrent
85 def __init__ (self, type, filename):
86 self.type = type
87 self.filename = filename