Searched defs:charCode (Results 1 - 2 of 2) sorted by last modified time

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DOpenWnnEN.java239 * @param charCode A character code
242 private boolean insertCharToComposingText(int charCode) { argument
243 if (charCode == 0) {
246 insertCharToComposingText(Character.toChars(charCode));
602 int charCode = ev.getUnicodeChar(MetaKeyKeyListener.META_SHIFT_ON | MetaKeyKeyListener.META_ALT_ON);
603 if (charCode == 0 || (charCode & KeyCharacterMap.COMBINING_ACCENT) != 0 || charCode == PRIVATE_AREA_CODE) {
H A DOpenWnnJAJP.java1149 * @param charCode A character code
1152 private StrSegment createStrSegment(int charCode) { argument
1153 if (charCode == 0) {
1156 return new StrSegment(Character.toChars(charCode));
1187 int charCode = ev.getUnicodeChar(MetaKeyKeyListener.META_SHIFT_ON | MetaKeyKeyListener.META_ALT_ON);
1188 if (charCode == 0 || (charCode & KeyCharacterMap.COMBINING_ACCENT) != 0 || charCode == PRIVATE_AREA_CODE) {

Completed in 119 milliseconds