charCode           66 Source/core/editing/EditingBehavior.cpp     unsigned charCode;
charCode          201 Source/core/editing/EditingBehavior.cpp             keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
charCode          220 Source/core/editing/EditingBehavior.cpp     int mapKey = modifiers << 16 | event.charCode();
charCode          187 Source/core/events/KeyboardEvent.cpp     return charCode();
charCode           96 Source/core/events/KeyboardEvent.h     virtual int charCode() const OVERRIDE; // character code for keypress, 0 for keydown and keyup
charCode           68 Source/core/events/UIEvent.h     virtual int charCode() const;
charCode          132 Source/core/html/HTMLButtonElement.cpp             switch (toKeyboardEvent(event)->charCode()) {
charCode          935 Source/core/html/HTMLElement.cpp     int charCode = event->charCode();
charCode          936 Source/core/html/HTMLElement.cpp     if (charCode == '\r' || charCode == ' ') {
charCode         1529 Source/core/html/HTMLSelectElement.cpp         if (!keyboardEvent->ctrlKey() && !keyboardEvent->altKey() && !keyboardEvent->metaKey() && isPrintableChar(keyboardEvent->charCode())) {
charCode          110 Source/core/html/HTMLSummaryElement.cpp                 switch (toKeyboardEvent(event)->charCode()) {
charCode           75 Source/core/html/forms/BaseCheckableInputType.cpp     if (event->charCode() == ' ') {
charCode           54 Source/core/html/forms/BaseClickableWithKeyInputType.cpp     int charCode = event->charCode();
charCode           55 Source/core/html/forms/BaseClickableWithKeyInputType.cpp     if (charCode == '\r') {
charCode           60 Source/core/html/forms/BaseClickableWithKeyInputType.cpp     if (charCode == ' ') {
charCode          421 Source/core/html/forms/InputType.cpp     return event->isKeyboardEvent() && event->type() == EventTypeNames::keypress && toKeyboardEvent(event)->charCode() == '\r';
charCode           69 Source/core/html/forms/TypeAhead.cpp     UChar c = event->charCode();
charCode          121 Source/core/html/shadow/DateTimeNumericFieldElement.cpp     UChar charCode = static_cast<UChar>(keyboardEvent->charCode());
charCode          122 Source/core/html/shadow/DateTimeNumericFieldElement.cpp     String number = localeForOwner().convertFromLocalizedNumber(String(&charCode, 1));
charCode           78 Source/core/html/shadow/DateTimeSymbolicFieldElement.cpp     const UChar charCode = WTF::Unicode::toLower(keyboardEvent->charCode());
charCode           79 Source/core/html/shadow/DateTimeSymbolicFieldElement.cpp     if (charCode < ' ')
charCode         3212 Source/core/page/EventHandler.cpp         if (event->charCode() == ' ')