Lines Matching refs:values
85 # Mapping of constant values to names (in the event these ever get changed to
86 # numeric values or it is decided they need "prettier" or different labels).
186 "'proxy' values were used to create a "
703 "OS environment variables, and expands any $user:$password values.")
2516 new values, then values are added to properties, and finally
2517 values are removed from properties."""
2527 # Add new values to properties.
2537 # Remove values from properties.
2770 # values.
2994 def __set_prop(self, name, values):
3003 if isinstance(values, six.string_types):
3004 values = [values]
3005 policy_name = values[0]
3018 # values that have already been read.
3023 values[1:])
3027 values[1:]
3030 if len(values) > 1:
3037 if isinstance(values, six.string_types):
3038 values = self.__read_list(values)
3039 self.__properties[name] = values
3061 """Support values() on properties"""
3062 return list(self.__properties.values())