Home | History | Annotate | Download | only in keyboard

Lines Matching full:character

36  * Plain-old-data class to represent a character.
38 * @param {string} id The key identifier for this Character.
41 function Character(display, id) {
48 * @param {string} display Both the display and id for the created Character.
51 return new Character(display, display);
147 * @param {Character} key The Character for KEY_MODE.
148 * @param {Character} shift The Character for SHIFT_MODE.
149 * @param {Character} num The Character for NUMBER_MODE.
150 * @param {Character} symbol The Character for SYMBOL_MODE.
513 new Key(C('e'), C('E'), C('3'), new Character('<', 'LessThan')),
514 new Key(C('r'), C('R'), C('4'), new Character('>', 'GreaterThan')),
531 new Key(C('j'), C('J'), new Character('&', 'Ampersand'), C(' ')),