Home | History | Annotate | Download | only in app

Lines Matching refs:set_

44       return this.operand  ? this.set_({operand: null}) :
45 this.operator ? this.set_({operator: null}) :
49 return (length > 1) ? this.set_({operand: this.operand.slice(0, -1)}) :
50 this.operand ? this.set_({operand: null}) :
51 this.set_({operator: null});
54 return (initial === '-') ? this.set_({operand: this.operand.slice(1)}) :
55 (initial !== '0') ? this.set_({operand: '-' + this.operand}) :
56 this.set_({});
61 return operand.match(/^0[0-9]/) ? this.set_({operand: operand[1]}) :
62 (!duplicate && !overflow) ? this.set_({operand: operand}) :
63 this.set_({});
75 return this.set_(state);
83 Model.prototype.set_ = function(state) {
104 this.set_({accumulator: String(x), operator: operator, operand: String(y)});