Lines Matching full:newvalue
45 set lowestValue(newValue) {
46 base.setPropertyAndDispatchChange(this, 'lowestValue', newValue);
53 set value(newValue) {
54 if (newValue === this.value)
56 newValue = this.limitValue_(newValue);
57 base.setPropertyAndDispatchChange(this, 'value', newValue);
65 set previewValue(newValue) {
66 if (newValue === this.previewValue_)
68 newValue = this.limitValue_(newValue);
69 base.setPropertyAndDispatchChange(this, 'previewValue', newValue);
76 set highestValue(newValue) {
77 base.setPropertyAndDispatchChange(this, 'highestValue', newValue);
84 set vertical(newValue) {
85 this.vertical_ = !!newValue;
100 set exponentBase(newValue) {
101 this.exponentBase_ = newValue;
107 var str = event.newValue.toFixed(1) + '';
113 var str = event.newValue.toFixed(1) + '';
178 limitValue_: function(newValue) {
179 var limitedValue = newValue;
180 if (newValue < this.lowestValue)
182 if (newValue > this.highestValue)