Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DLatinIME.java322 private void executePendingImsCallback(final LatinIME latinIme, final EditorInfo editorInfo, in executePendingImsCallback() argument
329 latinIme.onStartInputInternal(editorInfo, restarting); in executePendingImsCallback()
333 public void onStartInput(final EditorInfo editorInfo, final boolean restarting) { in onStartInput() argument
344 executePendingImsCallback(latinIme, editorInfo, restarting); in onStartInput()
345 latinIme.onStartInputInternal(editorInfo, restarting); in onStartInput()
349 public void onStartInputView(final EditorInfo editorInfo, final boolean restarting) { in onStartInputView() argument
351 && KeyboardId.equivalentEditorInfoForKeyboard(editorInfo, mAppliedEditorInfo)) { in onStartInputView()
363 executePendingImsCallback(latinIme, editorInfo, restarting); in onStartInputView()
364 latinIme.onStartInputViewInternal(editorInfo, restarting); in onStartInputView()
365 mAppliedEditorInfo = editorInfo; in onStartInputView()
[all …]
DInputAttributes.java35 public InputAttributes(final EditorInfo editorInfo, final boolean isFullscreenMode) { in InputAttributes() argument
36 final int inputType = null != editorInfo ? editorInfo.inputType : 0; in InputAttributes()
44 if (null == editorInfo) { in InputAttributes()
53 inputType, editorInfo.imeOptions)); in InputAttributes()
103 public boolean isSameInputType(final EditorInfo editorInfo) { in isSameInputType() argument
104 return editorInfo.inputType == mInputType; in isSameInputType()
198 EditorInfo editorInfo) { in inPrivateImeOptions() argument
199 if (editorInfo == null) return false; in inPrivateImeOptions()
202 return StringUtils.containsInCsv(findingKey, editorInfo.privateImeOptions); in inPrivateImeOptions()
DPositionalInfoForUserDictPendingAddition.java42 final EditorInfo editorInfo, final int capitalizedMode) { in PositionalInfoForUserDictPendingAddition() argument
45 mEditorInfo = editorInfo; in PositionalInfoForUserDictPendingAddition()
79 final EditorInfo editorInfo, final int currentCursorPosition, final Locale locale) { in tryReplaceWithActualWord() argument
90 if (!mEditorInfo.packageName.equals(editorInfo.packageName) in tryReplaceWithActualWord()
91 || mEditorInfo.fieldId != editorInfo.fieldId) { in tryReplaceWithActualWord()
DSettingsValues.java191 public boolean isVoiceKeyEnabled(final EditorInfo editorInfo) { in isVoiceKeyEnabled() argument
193 final int inputType = (editorInfo != null) ? editorInfo.inputType : 0; in isVoiceKeyEnabled()
214 public boolean isSameInputType(final EditorInfo editorInfo) { in isSameInputType() argument
215 return mInputAttributes.isSameInputType(editorInfo); in isSameInputType()
DInputTypeUtils.java107 public static int getImeOptionsActionIdFromEditorInfo(final EditorInfo editorInfo) { in getImeOptionsActionIdFromEditorInfo() argument
108 if ((editorInfo.imeOptions & EditorInfo.IME_FLAG_NO_ENTER_ACTION) != 0) { in getImeOptionsActionIdFromEditorInfo()
110 } else if (editorInfo.actionLabel != null) { in getImeOptionsActionIdFromEditorInfo()
114 return editorInfo.imeOptions & EditorInfo.IME_MASK_ACTION; in getImeOptionsActionIdFromEditorInfo()
DLatinImeLogger.java77 public static void onStartInputView(EditorInfo editorInfo) { in onStartInputView() argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKeyboardLayoutSet.java209 public Builder(final Context context, final EditorInfo editorInfo) { in Builder() argument
213 mEditorInfo = editorInfo; in Builder()
216 params.mMode = getKeyboardMode(editorInfo); in Builder()
217 params.mEditorInfo = (editorInfo != null) ? editorInfo : EMPTY_EDITOR_INFO; in Builder()
380 private static int getKeyboardMode(final EditorInfo editorInfo) { in getKeyboardMode() argument
381 if (editorInfo == null) in getKeyboardMode()
384 final int inputType = editorInfo.inputType; in getKeyboardMode()
449 final EditorInfo editorInfo = new EditorInfo(); in createKeyboardSet() local
450 editorInfo.inputType = InputType.TYPE_CLASS_TEXT; in createKeyboardSet()
452 context, editorInfo); in createKeyboardSet()
DKeyboardSwitcher.java140 public void loadKeyboard(final EditorInfo editorInfo, final SettingsValues settingsValues) { in loadKeyboard() argument
142 mThemeContext, editorInfo); in loadKeyboard()
148 settingsValues.isVoiceKeyEnabled(editorInfo), in loadKeyboard()
/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/accessibility/
DAccessibilityUtils.java125 public boolean shouldObscureInput(final EditorInfo editorInfo) { in shouldObscureInput() argument
126 if (editorInfo == null) return false; in shouldObscureInput()
141 return InputTypeUtils.isPasswordInputType(editorInfo.inputType); in shouldObscureInput()
193 public void onStartInputViewInternal(final View view, final EditorInfo editorInfo, in onStartInputViewInternal() argument
195 if (shouldObscureInput(editorInfo)) { in onStartInputViewInternal()
DAccessibilityEntityProvider.java286 final EditorInfo editorInfo = mInputMethodService.getCurrentInputEditorInfo(); in getKeyDescription() local
287 final boolean shouldObscure = mAccessibilityUtils.shouldObscureInput(editorInfo); in getKeyDescription()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
DResearchLogger.java1012 public static void latinIME_onStartInputViewInternal(final EditorInfo editorInfo, in latinIME_onStartInputViewInternal() argument
1015 if (editorInfo != null) { in latinIME_onStartInputViewInternal()
1016 final boolean isPassword = InputTypeUtils.isPasswordInputType(editorInfo.inputType) in latinIME_onStartInputViewInternal()
1017 || InputTypeUtils.isVisiblePasswordInputType(editorInfo.inputType); in latinIME_onStartInputViewInternal()
1029 uuid, editorInfo.packageName, Integer.toHexString(editorInfo.inputType), in latinIME_onStartInputViewInternal()
1030 Integer.toHexString(editorInfo.imeOptions), editorInfo.fieldId, in latinIME_onStartInputViewInternal()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
DFilterShowActivity.java263 EditorInfo editorInfo = (EditorInfo) mEditorPlaceHolder.getEditor(editorId); in fillGeometry() local
264 geometry.setTextId(editorInfo.getTextId()); in fillGeometry()
265 geometry.setOverlayId(editorInfo.getOverlayId()); in fillGeometry()
266 geometry.setOverlayOnly(editorInfo.getOverlayOnly()); in fillGeometry()