HomeSort by relevance Sort by last modified time
    Searched refs:OpenWnn (Results 1 - 17 of 17) sorted by null

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
InputViewManager.java 17 package jp.co.omronsoft.openwnn;
24 * The interface of input view manager used by OpenWnn.
32 * @param parent The OpenWnn object
38 public View initView(OpenWnn parent, int width, int height);
50 * @param parent The OpenWnn object using this manager
52 public void onUpdateState(OpenWnn parent);
SymbolList.java 17 package jp.co.omronsoft.openwnn;
70 /** OpenWnn which has this instance */
71 private OpenWnn mWnn;
85 * @param parent OpenWnn instance which uses this.
88 public SymbolList(OpenWnn parent, int lang) {
160 Log.e("OpenWnn", "Ill-formatted keybaord resource file");
162 Log.e("OpenWnn", "Unable to read keyboard resource file");
182 /** @see jp.co.omronsoft.openwnn.WnnEngine#init */
185 /** @see jp.co.omronsoft.openwnn.WnnEngine#close */
188 /** @see jp.co.omronsoft.openwnn.WnnEngine#predict *
    [all...]
CandidatesViewManager.java 17 package jp.co.omronsoft.openwnn;
34 * The interface of candidates view manager used by {@link OpenWnn}.
48 * @see jp.co.omronsoft.openwnn.WnnWord
53 * @see jp.co.omronsoft.openwnn.WnnWord
58 * @see jp.co.omronsoft.openwnn.WnnWord
63 * @see jp.co.omronsoft.openwnn.WnnWord
79 * @param parent The OpenWnn object
85 public abstract View initView(OpenWnn parent, int width, int height);
117 * @see jp.co.omronsoft.openwnn.WnnEngine#getNextCandidate
OpenWnn.java 17 package jp.co.omronsoft.openwnn;
19 import jp.co.omronsoft.openwnn.JAJP.*;
39 import jp.co.omronsoft.openwnn.KeyAction;
42 * The OpenWnn IME's base class.
46 public class OpenWnn extends InputMethodService {
65 /** Flag for checking if the previous down key event is consumed by OpenWnn */
78 private static OpenWnn mCurrentIme;
86 public OpenWnn() {
211 Log.e("iWnn", "OpenWnn::onKeyLongPress() Unprocessing onCreate() ");
282 * OpenWnn
    [all...]
DefaultSoftKeyboard.java 17 package jp.co.omronsoft.openwnn;
34 import jp.co.omronsoft.openwnn.Keyboard;
35 import jp.co.omronsoft.openwnn.KeyboardView;
36 import jp.co.omronsoft.openwnn.KeyboardView.OnKeyboardActionListener;
155 /** OpenWnn instance which hold this software keyboard*/
156 protected OpenWnn mWnn;
365 * @param parent OpenWnn using the keyboards.
367 protected void createKeyboards(OpenWnn parent) {
550 * @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#KEYBOARD_QWERTY
551 * @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#KEYBOARD_12KE
    [all...]
OpenWnnEN.java 17 package jp.co.omronsoft.openwnn;
19 import jp.co.omronsoft.openwnn.EN.*;
41 * The OpenWnn English IME class.
45 public class OpenWnnEN extends OpenWnn {
166 /* used by OpenWnn */
171 if (OpenWnn.getCurrentIme() != null) {
173 mConverterEN = new OpenWnnEngineEN("/data/data/jp.co.omronsoft.openwnn/writableEN.dic");
285 /** @see jp.co.omronsoft.openwnn.OpenWnn#onCreate */
291 mConverterEN = new OpenWnnEngineEN("/data/data/jp.co.omronsoft.openwnn/writableEN.dic")
    [all...]
OpenWnnJAJP.java 17 package jp.co.omronsoft.openwnn;
20 import jp.co.omronsoft.openwnn.EN.OpenWnnEngineEN;
21 import jp.co.omronsoft.openwnn.JAJP.*;
44 import jp.co.omronsoft.openwnn.BaseInputView;
45 import jp.co.omronsoft.openwnn.OpenWnnControlPanelJAJP;
52 * The OpenWnn Japanese IME class
56 public class OpenWnnJAJP extends OpenWnn {
59 * Use with {@code OpenWnn.CHANGE_MODE} event.
65 * Use with {@code OpenWnn.CHANGE_MODE} event.
71 * Use with {@code OpenWnn.CHANGE_MODE} event
    [all...]
TextCandidates1LineViewManager.java 16 package jp.co.omronsoft.openwnn;
83 /** {@link OpenWnn} instance using this manager */
84 private OpenWnn mWnn;
223 public View initView(OpenWnn parent, int width, int height) {
531 Log.d("OpenWnn", "NO VIBRATOR");
538 * This method notices the selected word to {@link OpenWnn}.
551 Log.e("OpenWnn", "TextCandidates1LineViewManager::selectCandidate Vibrator " + ex.toString());
558 Log.e("OpenWnn", "TextCandidates1LineViewManager::selectCandidate Sound " + ex.toString());
TextCandidatesViewManager.java 17 package jp.co.omronsoft.openwnn;
116 /** {@link OpenWnn} instance using this manager */
117 private OpenWnn mWnn;
429 public View initView(OpenWnn parent, int width, int height) {
435 if (OpenWnn.isXLarge()) {
441 if (OpenWnn.isXLarge()) {
    [all...]
KeyboardView.java 22 package jp.co.omronsoft.openwnn;
49 import jp.co.omronsoft.openwnn.Keyboard;
50 import jp.co.omronsoft.openwnn.Keyboard.Key;
733 if (OpenWnn.isXLarge()) {
751 if (OpenWnn.isXLarge()) {
770 if (OpenWnn.isXLarge()) {
    [all...]
OpenWnnDictionaryImpl.java 17 package jp.co.omronsoft.openwnn;
345 * @see jp.co.omronsoft.openwnn.WnnDictionary#setInUseState
352 * @see jp.co.omronsoft.openwnn.WnnDictionary#setInUseState
357 mDbOpenHelper = new OpenWnnSQLiteOpenHelper(OpenWnn.getCurrentIme(), mDicFilePath);
366 * @see jp.co.omronsoft.openwnn.WnnDictionary#clearDictionary
380 * @see jp.co.omronsoft.openwnn.WnnDictionary#setDictionary
533 * @see jp.co.omronsoft.openwnn.WnnDictionary#searchWord
578 * @see jp.co.omronsoft.openwnn.WnnDictionary#searchWord
623 * @see jp.co.omronsoft.openwnn.WnnDictionary#getNextWord
630 * @see jp.co.omronsoft.openwnn.WnnDictionary#getNextWor
    [all...]
  /packages/inputmethods/OpenWnn/
Android.mk 8 LOCAL_PACKAGE_NAME := OpenWnn
  /build/target/product/
full_base.mk 24 OpenWnn \
sdk_base.mk 38 OpenWnn \
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
DefaultSoftKeyboardEN.java 17 package jp.co.omronsoft.openwnn.EN;
19 import jp.co.omronsoft.openwnn.*;
26 import jp.co.omronsoft.openwnn.Keyboard;
71 /** @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#createKeyboards */
72 @Override protected void createKeyboards(OpenWnn parent) {
125 /** @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#initView */
126 @Override public View initView(OpenWnn parent, int width, int height) {
147 /** @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#setPreferences */
202 /** @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#onKey */
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DefaultSoftKeyboardJAJP.java 17 package jp.co.omronsoft.openwnn.JAJP;
20 import jp.co.omronsoft.openwnn.*;
30 import jp.co.omronsoft.openwnn.Keyboard;
31 import jp.co.omronsoft.openwnn.BaseInputView;
32 import jp.co.omronsoft.openwnn.R;
318 if (OpenWnn.isXLarge()) {
327 /** @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#createKeyboards */
328 @Override protected void createKeyboards(OpenWnn parent) {
445 /** @see jp.co.omronsoft.openwnn.DefaultSoftKeyboard#initView */
446 @Override public View initView(OpenWnn parent, int width, int height)
    [all...]
OpenWnnEngineJAJP.java 17 package jp.co.omronsoft.openwnn.JAJP;
25 import jp.co.omronsoft.openwnn.CandidateFilter;
26 import jp.co.omronsoft.openwnn.ComposingText;
27 import jp.co.omronsoft.openwnn.OpenWnn;
28 import jp.co.omronsoft.openwnn.OpenWnnDictionaryImpl;
29 import jp.co.omronsoft.openwnn.StrSegmentClause;
30 import jp.co.omronsoft.openwnn.WnnClause;
31 import jp.co.omronsoft.openwnn.WnnDictionary;
32 import jp.co.omronsoft.openwnn.WnnEngine
    [all...]

Completed in 126 milliseconds