Lines Matching refs:_default
64 _min = _max = _default = None
91 _default = int(m.group(1)) * 10**int(m.group(2))
93 _default = int(value, 0)
99 if _min is not None and _default is not None:
100 if _min > _default:
102 if _default is not None and _max is not None:
103 if _default > _max:
111 _default = config_attrs.get('default', None)
112 if _default is not None:
113 if '/' not in _default:
114 if (_default not in ('0', '1')) and (_default not in all_config_names):
124 _default = None
126 _default = config_attrs['default']
127 if _default is not None:
128 if _default not in _enumvalues: