/external/webkit/Source/WebCore/dom/ |
UIEvent.cpp | 67 int UIEvent::charCode() const
|
UIEvent.h | 54 virtual int charCode() const;
|
KeyboardEvent.cpp | 126 return charCode(); 129 int KeyboardEvent::charCode() const
|
KeyboardEvent.h | 88 int charCode() const; // character code for keypress, 0 for keydown and keyup
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
EditorClientAndroid.cpp | 100 unsigned charCode; 155 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name); 169 int mapKey = modifiers << 16 | evt->charCode(); 203 if (event->charCode() < ' ')
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/ |
UserData.java | 109 int charCode = charToAscii.get(str.charAt(i), -1); 110 if (charCode == -1) return null; 111 result[i] = (byte)charCode;
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/qt/ |
WebPageQt.cpp | 103 unsigned charCode; 192 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name); 208 int mapKey = modifiers << 16 | evt->charCode();
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
EditorClientEfl.cpp | 239 unsigned charCode; 314 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name); 330 int mapKey = modifiers << 16 | event->charCode(); 388 if (event->charCode() < ' ')
|
/external/webkit/Source/WebKit/win/Interfaces/ |
DOMEvents.idl | 214 //readonly attribute long charCode; 215 //HRESULT charCode([out, retval] long* result); 390 //readonly attribute long charCode; 391 HRESULT charCode([out, retval] long* result);
|
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
EditorClientWinCE.cpp | 238 unsigned charCode; 324 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name); 340 int mapKey = modifiers << 16 | event->charCode(); 398 if (event->charCode() < ' ')
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
EditorClientWx.cpp | 63 unsigned charCode; 404 if (event->charCode() < ' ') 425 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name); 441 int mapKey = modifiers << 16 | evt->charCode();
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
OpenWnnEN.java | 233 * @param charCode A character code 236 private boolean insertCharToComposingText(int charCode) { 237 if (charCode == 0) { 240 insertCharToComposingText(Character.toChars(charCode)); 587 int charCode = ev.getUnicodeChar(MetaKeyKeyListener.META_SHIFT_ON | MetaKeyKeyListener.META_ALT_ON); 588 if (charCode == 0 || (charCode & KeyCharacterMap.COMBINING_ACCENT) != 0 || charCode == PRIVATE_AREA_CODE) { [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
logviewpainter.js | 159 var charCode = parseInt(hex, 16); 163 if (charCode >= 0x20 && charCode <= 0x7E) { 164 asciiLine += String.fromCharCode(charCode); 165 } else if (charCode == 0x00) {
|
/external/webkit/Source/WebCore/platform/cocoa/ |
KeyEventCocoa.mm | 42 String keyIdentifierForCharCode(unichar charCode) 44 switch (charCode) { 328 return String::format("U+%04X", toASCIIUpper(charCode)); 471 int windowsKeyCodeForCharCode(unichar charCode) 473 switch (charCode) {
|
/external/webkit/Tools/DumpRenderTree/win/ |
EventSender.cpp | 447 int charCode = 0; 479 charCode = JSStringGetCharactersPtr(character)[0]; 480 virtualKeyCode = LOBYTE(VkKeyScan(charCode)); 481 if (WTF::isASCIIUpper(charCode)) 524 ::PostMessage(webViewWindow, WM_CHAR, charCode, 0);
|
/external/webkit/Source/WebKit/win/ |
DOMEventsClasses.h | 263 virtual HRESULT STDMETHODCALLTYPE charCode( 372 virtual HRESULT STDMETHODCALLTYPE charCode( 373 /* [retval][out] */ long* result) { return DOMUIEvent::charCode(result); } 520 virtual HRESULT STDMETHODCALLTYPE charCode( 521 /* [retval][out] */ long* result) { return DOMUIEvent::charCode(result); } [all...] |
/external/webkit/Tools/DumpRenderTree/gtk/ |
EventSender.cpp | 697 int charCode = JSStringGetCharactersPtr(character)[0]; 698 if (charCode == '\n' || charCode == '\r') 700 else if (charCode == '\t') 702 else if (charCode == '\x8') 705 gdkKeySym = gdk_unicode_to_keyval(charCode); 706 if (WTF::isASCIIUpper(charCode)) [all...] |
/external/chromium/chrome/browser/resources/ |
keyboard_overlay.js | 197 var charCode = c.charCodeAt(0); 198 return 0x00 <= charCode && charCode <= 0x7F;
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/ |
WebPageWin.cpp | 91 unsigned charCode; 180 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name); 196 int mapKey = modifiers << 16 | evt->charCode();
|
/external/freetype/src/autofit/ |
aflatin.h | 137 FT_ULong charcode );
|
/external/webkit/Source/WebCore/html/ |
BaseCheckableInputType.cpp | 74 if (event->charCode() == ' ') {
|
/external/webkit/Source/WebKit/wince/ |
WebView.h | 86 bool handleKeyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/ |
WebEditorClientGtk.cpp | 112 if (event->charCode() < ' ')
|
/external/freetype/include/freetype/internal/ |
ftdriver.h | 88 FT_Long charcode ); 92 FT_Long charcode );
|
/external/freetype/src/psaux/ |
t1decode.c | 117 /* Looks up a given glyph by its StandardEncoding charcode. Used to */ 123 /* charcode :: The character code to look for. */ 131 FT_Int charcode ) 139 if ( charcode < 0 || charcode > 255 ) 143 psnames->adobe_std_encoding[charcode]); 177 /* bchar :: The base character's StandardEncoding charcode. */ 179 /* achar :: The accent character's StandardEncoding charcode. */ [all...] |