Lines Matching refs:default
69 self.default = None
80 # If default value has been already set, make sure it's in the list
81 if self.default and not self.default in self.enum_values:
82 print "Property '" + self.name + "': Default value '" + self.default + "' is missing in enum: ",
85 elif key == 'default':
86 # If this is an enum, make sure that default value is in the list.
88 print "Property '" + self.name + "': Default value '" + val + "' is missing in enum: ",
92 self.default = val
143 if item.default == None:
144 sys.stderr.write("ignoring config item with no default '%s' */" % item.name)
151 varDefault = item.default
156 # quote default value for strings