Home | History | Annotate | Download | only in keyboard

Lines Matching defs:KEYS

55  * An abstract base-class for all keys on the keyboard.
420 * A container for keys.
422 * @param {Array.<BaseKey>} keys The keys in the row.
425 function Row(position, keys) {
427 this.keys_ = keys;
492 * Resizes all keys in the row according to the global size.
504 * All keys for the rows of the keyboard.
508 var KEYS = [
556 // since this row has only 7 keys (as opposed to 12), the truncation
655 for (var i = 0; i < KEYS.length; ++i) {
656 allRows.push(new Row(i, KEYS[i]));