Lines Matching refs:value
56 # image, and the value assigned by the system is always true. These
85 # inherited value masks the local value. Users can list and update
173 # Check for effective facet value changes that could affect
186 # There are no outwardly visible facet priority or value
191 # facet with a value that is masked by an inherited facet, or
193 # local without a priority or value change. Check if this is
261 def __setitem_internal(self, item, value, inherited=False):
265 if not (value == True or value == False):
266 raise ValueError("value must be boolean")
276 self.__inherited[item] = value
279 self.__local[item] = value
284 dict.__setitem__(self, item, value)
290 def __setitem__(self, item, value):
292 self.__setitem_internal(item, value)
301 We return a tuple of the form (<key>, <value>) where key is
338 # the inherited value was overriding a local value
371 def _set_inherited(self, item, value):
373 self.__setitem_internal(item, value, inherited=True)
412 # check if the user specified a default value
427 for item, value in self.__local:
434 return (item, value)
463 facet, return a list of tuples of the form (<value>, <src>,
470 value = self.__inherited[name]
472 rv.append((value, src, masked))
475 value = self.__local[name]
479 rv.append((value, src, masked))
502 """Report the source of a facet value if we were to attempt to