Home | History | Annotate | Download | only in app

Lines Matching refs:inputs

40   this.inputs = this.defineInputs_();
44 this.handleInput_(this.inputs.byButton[button]);
47 this.handleInput_(this.inputs.byKey[key]);
53 var inputs = {byButton: {}, byKey: {}};
54 inputs.byButton['zero'] = inputs.byKey['48'] = inputs.byKey['96'] = '0';
55 inputs.byButton['one'] = inputs.byKey['49'] = inputs.byKey['97'] = '1';
56 inputs.byButton['two'] = inputs.byKey['50'] = inputs.byKey['98'] = '2';
57 inputs.byButton['three'] = inputs.byKey['51'] = inputs.byKey['99'] = '3';
58 inputs.byButton['four'] = inputs.byKey['52'] = inputs.byKey['100'] = '4';
59 inputs.byButton['five'] = inputs.byKey['53'] = inputs.byKey['101'] = '5';
60 inputs.byButton['six'] = inputs.byKey['54'] = inputs.byKey['102'] = '6';
61 inputs.byButton['seven'] = inputs.byKey['55'] = inputs.byKey['103'] = '7';
62 inputs.byButton['eight'] = inputs.byKey['56'] = inputs.byKey['104'] = '8';
63 inputs.byButton['nine'] = inputs.byKey['57'] = inputs.byKey['105'] = '9';
64 inputs.byButton['point'] = inputs.byKey['190'] = inputs.byKey['110'] = '.';
65 inputs.byButton['add'] = inputs.byKey['^187'] = inputs.byKey['107'] = '+';
66 inputs.byButton['subtract'] = inputs.byKey['189'] = inputs.byKey['109'] = '-';
67 inputs.byButton['multiply'] = inputs.byKey['^56'] = inputs.byKey['106'] = '*';
68 inputs.byButton['divide'] = inputs.byKey['191'] = inputs.byKey['111'] = '/';
69 inputs.byButton['equals'] = inputs.byKey['187'] = inputs.byKey['13'] = '=';
70 inputs.byButton['negate'] = inputs.byKey['32'] = '+ / -';
71 inputs.byButton['clear'] = inputs.byKey['67'] = 'AC';
72 inputs.byButton['back'] = inputs.byKey['8'] = 'back';
73 return inputs;