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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputAttributes.java 36 final private int mInputType;
41 mInputType = inputType;
107 return InputType.TYPE_NULL == mInputType;
111 return editorInfo.inputType == mInputType;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DefaultSoftKeyboardJAJP.java 83 /** Definition for {@code mInputType} (toggle) */
86 /** Definition for {@code mInputType} (commit instantly) */
279 private int mInputType = INPUT_TYPE_TOGGLE;
285 * Character table to input when mInputType becomes INPUT_TYPE_INSTANT.
395 mInputType = INPUT_TYPE_TOGGLE;
401 mInputType = INPUT_TYPE_TOGGLE;
404 mInputType = INPUT_TYPE_TOGGLE;
410 mInputType = INPUT_TYPE_INSTANT;
416 mInputType = INPUT_TYPE_INSTANT;
422 mInputType = INPUT_TYPE_TOGGLE
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityNodeInfo.java 513 private int mInputType = InputType.TYPE_NULL;
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java     [all...]
Editor.java 147 int mInputType = EditorInfo.TYPE_NULL;
541 // mInputType has been set from inputType, possibly modified by mInputMethod.
542 // Specialize mInputType to [web]password if we have a text class and the original input
544 if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_TEXT) {
546 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
550 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION))
553 } else if ((mInputType & EditorInfo.TYPE_MASK_CLASS) == EditorInfo.TYPE_CLASS_NUMBER) {
555 mInputType = (mInputType & ~(EditorInfo.TYPE_MASK_VARIATION)
    [all...]

Completed in 1265 milliseconds