HomeSort by relevance Sort by last modified time
    Searched full:charcode (Results 26 - 50 of 68) sorted by null

12 3

  /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...]
OpenWnnJAJP.java     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.cpp 447 int charCode = 0;
473 charCode = JSStringGetCharactersPtr(character)[0];
474 virtualKeyCode = LOBYTE(VkKeyScan(charCode));
475 if (WTF::isASCIIUpper(charCode))
518 ::PostMessage(webViewWindow, WM_CHAR, charCode, 0);
  /external/webkit/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/freetype/src/autofit/
aflatin.h 138 FT_ULong charcode );
  /external/webkit/WebCore/dom/
KeyboardEvent.h 85 int charCode() const; // character code for keypress, 0 for keydown and keyup
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 347 unsigned charCode;
422 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name);
438 int mapKey = modifiers << 16 | evt->charCode();
504 if (event->charCode() < ' ')
  /external/freetype/include/freetype/internal/
ftdriver.h 88 FT_Long charcode );
92 FT_Long charcode );
  /external/freetype/src/psaux/
t1decode.c 116 /* Looks up a given glyph by its StandardEncoding charcode. Used to */
122 /* charcode :: The character code to look for. */
130 FT_Int charcode )
138 if ( charcode < 0 || charcode > 255 )
142 psnames->adobe_std_encoding[charcode]);
176 /* bchar :: The base character's StandardEncoding charcode. */
178 /* achar :: The accent character's StandardEncoding charcode. */
    [all...]
  /external/freetype/src/base/
ftobjs.c     [all...]
  /external/webkit/WebCore/html/
HTMLButtonElement.cpp 120 switch (static_cast<KeyboardEvent*>(evt)->charCode()) {
HTMLInputElement.cpp     [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSURLExtras.mm 60 static inline BOOL isLookalikeCharacter(int charCode)
71 if (!u_isprint(charCode) || u_isUWhiteSpace(charCode) || u_hasBinaryProperty(charCode, UCHAR_DEFAULT_IGNORABLE_CODE_POINT))
74 switch (charCode) {
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
BearerData.java 450 int charCode = UserData.charToAscii.get(msg.charAt(i), -1);
451 if (charCode == -1) {
458 outStream.write(7, charCode);
    [all...]
  /external/freetype/include/freetype/
freetype.h     [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 485 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex );
489 return charCode;
491 charCode = FT_Get_Next_Char( fFace, charCode, &glyphIndex );
    [all...]
  /external/webkit/WebCore/plugins/mac/
PluginViewMac.cpp 638 LOG(Plugins, "PV::hKE(): KE.keyCode: 0x%02X, KE.charCode: %d",
639 event->keyCode(), event->charCode());
693 LOG(Plugins, "PV::hKE(): PKE.qtEvent()->nativeVirtualKey: 0x%02X, charCode: %d",
  /external/webkit/WebKit/chromium/src/
EditorClientImpl.cpp 382 unsigned charCode;
519 keyPressCommandsMap->set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode,
539 int mapKey = modifiers << 16 | evt->charCode();
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginEventHandlerCarbon.mm 336 LOG(PluginEvents, "NPP_HandleEvent(keyDown): %d charCode:%c keyCode:%lu",
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EventSendingController.mm 634 printf(" charCode: %d\n", [(DOMKeyboardEvent*)event charCode]);
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java     [all...]
  /external/freetype/src/cff/
cffload.c 184 cff_get_standard_encoding( FT_UInt charcode )
186 return (FT_UShort)( charcode < 256 ? cff_standard_encoding[charcode]
    [all...]
cffgload.c 614 FT_Int charcode )
625 if ( charcode < 0 || charcode > 255 )
629 glyph_sid = cff_get_standard_encoding( (FT_UInt)charcode );
    [all...]
  /external/webkit/WebCore/page/
Settings.cpp 362 // making keyIdentifier available on keypress events, making charCode available on keydown/keyup events,
  /external/webkit/WebCore/wml/
WMLInputElement.cpp 288 if (static_cast<KeyboardEvent*>(evt)->charCode() == '\r')

Completed in 512 milliseconds

12 3