Searched refs:charCode (Results 1 - 25 of 52) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/platform/cocoa/
H A DKeyEventCocoa.h33 String keyIdentifierForCharCode(unichar charCode);
36 int windowsKeyCodeForCharCode(unichar charCode);
H A DKeyEventCocoa.mm42 String keyIdentifierForCharCode(unichar charCode)
44 switch (charCode) {
328 return String::format("U+%04X", toASCIIUpper(charCode));
471 int windowsKeyCodeForCharCode(unichar charCode)
473 switch (charCode) {
/macosx-10.10/tidy-15.15/tidy/src/
H A Dentities.h21 ctmbstr TY_(EntityName)( uint charCode, uint versions );
/macosx-10.10/WebCore-7600.1.25/html/
H A DBaseClickableWithKeyInputType.cpp54 int charCode = event->charCode(); local
55 if (charCode == '\r') {
60 if (charCode == ' ') {
H A DBaseCheckableInputType.cpp75 if (event->charCode() == ' ') {
H A DTypeAhead.cpp69 UChar c = event->charCode();
H A DHTMLSummaryElement.cpp135 switch (toKeyboardEvent(event)->charCode()) {
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOBSDConsole.cpp146 /* charCode */ unsigned charCode,
165 && (charCode >= 0xac) && (charCode <= 0xaf)) {
168 charCode = cursorCodes[ charCode - 0xac ];
170 cons_cinput( charCode);
142 keyboardEvent(OSObject * target, unsigned eventType, unsigned flags, unsigned , unsigned charCode, unsigned charSet, unsigned , unsigned , unsigned , bool , AbsoluteTime , OSObject * sender, void * refcon) argument
H A DIOBSDConsole.h50 /* charCode */ unsigned charCode,
H A DIOHIKeyboardMapper.cpp443 unsigned charCode=0; local
447 charCode = ',';
450 charCode = '_';
453 charCode = '\\';
456 charCode = 0xa7;
468 /* charCode */ charCode,
944 /* charCode */ 0,
952 /* charCode */ 0,
971 unsigned charCode, origCharCod local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Object/
H A Dregress-90596-003.js214 var charCode = 0;
219 charCode = text.charCodeAt(i);
221 if (!isWhiteSpace(charCode) && !isQuote(charCode))
229 function isWhiteSpace(charCode)
231 switch (charCode)
248 function isQuote(charCode)
250 switch (charCode)
H A Dregress-90596-001.js190 var charCode = 0;
195 charCode = text.charCodeAt(i);
197 if (!isWhiteSpace(charCode))
205 function isWhiteSpace(charCode)
207 switch (charCode)
H A Dregress-90596-002.js190 var charCode = 0;
195 charCode = text.charCodeAt(i);
197 if (!isWhiteSpace(charCode))
205 function isWhiteSpace(charCode)
207 switch (charCode)
/macosx-10.10/IOKitUser-1050.1.21/hidsystem.subproj/
H A DHIDParamTest.c80 event.key.charCode = c;
82 event.key.origCharCode = event.key.charCode;
/macosx-10.10/WebCore-7600.1.25/dom/
H A DUIEvent.idl35 readonly attribute long charCode;
H A DUIEvent.cpp100 int UIEvent::charCode() const function in class:WebCore::UIEvent
H A DUIEvent.h67 virtual int charCode() const;
H A DKeyboardEvent.cpp185 return charCode();
188 int KeyboardEvent::charCode() const function in class:WebCore::KeyboardEvent
H A DKeyboardEvent.h91 virtual int charCode() const override; // character code for keypress, 0 for keydown and keyup
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/IOKit/hidsystem/
H A DIOHIKeyboard.h50 /* charCode */ unsigned charCode,
77 /* charCode */ unsigned charCode,
221 /* charCode */ unsigned charCode,
264 /* charCode */ unsigned charCode,
/macosx-10.10/WebKit-7600.1.25/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp246 unsigned charCode; member in struct:WebKit::KeyPressEntry
332 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
348 int mapKey = modifiers << 16 | event->charCode();
406 if (event->charCode() < ' ')
/macosx-10.10/apache-793/httpd/docs/manual/style/scripts/
H A Dprettify.js294 function encodeEscape(charCode) {
295 if (charCode < 0x20) {
296 return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
298 var ch = String.fromCharCode(charCode);
H A Dprettify.min.js6 function encodeEscape(charCode){if(charCode<0x20){return(charCode<0x10?'\\x0':'\\x')+charCode.toString(16);}
7 var ch=String.fromCharCode(charCode);return(ch==='\\'||ch==='-'||ch===']'||ch==='^')?"\\"+ch:ch;}
/macosx-10.10/WebKit-7600.1.25/wince/
H A DWebView.h88 bool handleKeyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown);
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DEflKeyboardUtilities.cpp251 unsigned charCode; member in struct:WebCore::KeyPressEntry
329 keyPressCommandsMap().set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
384 int mapKey = modifiers << 16 | event->charCode();

Completed in 281 milliseconds

123