Home
last modified time | relevance | path

Searched refs:editorInfo (Results 1 – 12 of 12) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DInputAttributes.java34 public InputAttributes(final EditorInfo editorInfo, final boolean isFullscreenMode) { in InputAttributes() argument
35 final int inputType = null != editorInfo ? editorInfo.inputType : 0; in InputAttributes()
42 if (null == editorInfo) { in InputAttributes()
51 inputType, editorInfo.imeOptions)); in InputAttributes()
95 mEditorAction = (editorInfo == null) ? EditorInfo.IME_ACTION_UNSPECIFIED in InputAttributes()
96 : editorInfo.imeOptions & EditorInfo.IME_MASK_ACTION; in InputAttributes()
170 EditorInfo editorInfo) { in inPrivateImeOptions() argument
171 if (editorInfo == null) return false; in inPrivateImeOptions()
174 return StringUtils.containsInCsv(findingKey, editorInfo.privateImeOptions); in inPrivateImeOptions()
DLatinIME.java314 private void executePendingImsCallback(LatinIME latinIme, EditorInfo editorInfo, in executePendingImsCallback() argument
321 latinIme.onStartInputInternal(editorInfo, restarting); in executePendingImsCallback()
325 public void onStartInput(EditorInfo editorInfo, boolean restarting) { in onStartInput() argument
336 executePendingImsCallback(latinIme, editorInfo, restarting); in onStartInput()
337 latinIme.onStartInputInternal(editorInfo, restarting); in onStartInput()
341 public void onStartInputView(EditorInfo editorInfo, boolean restarting) { in onStartInputView() argument
343 && KeyboardId.equivalentEditorInfoForKeyboard(editorInfo, mAppliedEditorInfo)) { in onStartInputView()
355 executePendingImsCallback(latinIme, editorInfo, restarting); in onStartInputView()
356 latinIme.onStartInputViewInternal(editorInfo, restarting); in onStartInputView()
357 mAppliedEditorInfo = editorInfo; in onStartInputView()
[all …]
DLatinImeLogger.java68 public static void onStartInputView(EditorInfo editorInfo) { in onStartInputView() argument
DSettingsValues.java278 public boolean isVoiceKeyEnabled(final EditorInfo editorInfo) { in isVoiceKeyEnabled() argument
280 final int inputType = (editorInfo != null) ? editorInfo.inputType : 0; in isVoiceKeyEnabled()
DResearchLogger.java531 public static void latinIME_onStartInputViewInternal(final EditorInfo editorInfo, in latinIME_onStartInputViewInternal() argument
537 builder.append(Integer.toHexString(editorInfo.inputType)); in latinIME_onStartInputViewInternal()
539 builder.append(Integer.toHexString(editorInfo.imeOptions)); in latinIME_onStartInputViewInternal()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
DAccessibilityUtils.java117 public boolean shouldObscureInput(EditorInfo editorInfo) { in shouldObscureInput() argument
118 if (editorInfo == null) in shouldObscureInput()
134 return InputTypeUtils.isPasswordInputType(editorInfo.inputType); in shouldObscureInput()
171 public void onStartInputViewInternal(EditorInfo editorInfo, boolean restarting) { in onStartInputViewInternal() argument
172 if (shouldObscureInput(editorInfo)) { in onStartInputViewInternal()
DAccessibilityEntityProvider.java296 final EditorInfo editorInfo = mInputMethodService.getCurrentInputEditorInfo(); in getKeyDescription() local
297 final boolean shouldObscure = mAccessibilityUtils.shouldObscureInput(editorInfo); in getKeyDescription()
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
DInputModeSwitcher.java526 public int requestInputWithHkb(EditorInfo editorInfo) { in requestInputWithHkb() argument
531 switch (editorInfo.inputType & EditorInfo.TYPE_MASK_CLASS) { in requestInputWithHkb()
538 int v = editorInfo.inputType & EditorInfo.TYPE_MASK_VARIATION; in requestInputWithHkb()
566 mEditorInfo = editorInfo; in requestInputWithHkb()
573 public int requestInputWithSkb(EditorInfo editorInfo) { in requestInputWithSkb() argument
578 switch (editorInfo.inputType & EditorInfo.TYPE_MASK_CLASS) { in requestInputWithSkb()
587 int v = editorInfo.inputType & EditorInfo.TYPE_MASK_VARIATION; in requestInputWithSkb()
625 mEditorInfo = editorInfo; in requestInputWithSkb()
DPinyinIME.java1108 public void onStartInput(EditorInfo editorInfo, boolean restarting) { in onStartInput() argument
1111 + String.valueOf(editorInfo.inputType) + " Restarting:" in onStartInput()
1114 updateIcon(mInputModeSwitcher.requestInputWithHkb(editorInfo)); in onStartInput()
1119 public void onStartInputView(EditorInfo editorInfo, boolean restarting) { in onStartInputView() argument
1122 + String.valueOf(editorInfo.inputType) + " Restarting:" in onStartInputView()
1125 updateIcon(mInputModeSwitcher.requestInputWithSkb(editorInfo)); in onStartInputView()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKeyboardLayoutSet.java228 public Builder(Context context, EditorInfo editorInfo) { in Builder() argument
232 mEditorInfo = editorInfo; in Builder()
235 params.mMode = getKeyboardMode(editorInfo); in Builder()
236 params.mEditorInfo = (editorInfo != null) ? editorInfo : EMPTY_EDITOR_INFO; in Builder()
368 private static int getKeyboardMode(EditorInfo editorInfo) { in getKeyboardMode() argument
369 if (editorInfo == null) in getKeyboardMode()
372 final int inputType = editorInfo.inputType; in getKeyboardMode()
DKeyboardId.java76 int mode, EditorInfo editorInfo, boolean clobberSettingsKey, boolean shortcutKeyEnabled, in KeyboardId() argument
84 mEditorInfo = editorInfo; in KeyboardId()
89 mCustomActionLabel = (editorInfo.actionLabel != null) in KeyboardId()
90 ? editorInfo.actionLabel.toString() : null; in KeyboardId()
DKeyboardSwitcher.java137 public void loadKeyboard(EditorInfo editorInfo, SettingsValues settingsValues) { in loadKeyboard() argument
139 mThemeContext, editorInfo); in loadKeyboard()
144 settingsValues.isVoiceKeyEnabled(editorInfo), in loadKeyboard()