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

  /frameworks/base/core/java/android/view/inputmethod/
CursorAnchorInfo.aidl 19 parcelable CursorAnchorInfo;
CursorAnchorInfo.java 37 public final class CursorAnchorInfo implements Parcelable {
123 public CursorAnchorInfo(final Parcel source) {
198 if (!(obj instanceof CursorAnchorInfo)) {
201 final CursorAnchorInfo that = (CursorAnchorInfo) obj;
244 * Builder for {@link CursorAnchorInfo}. This class is not designed to be thread-safe.
358 * @return {@link CursorAnchorInfo} using parameters in this {@link Builder}.
362 public CursorAnchorInfo build() {
377 return new CursorAnchorInfo(this);
382 * instance of {@link CursorAnchorInfo}
    [all...]
InputMethodSession.java 184 * @param cursorAnchorInfo Positional information relevant to text input, such as text
187 public void updateCursorAnchorInfo(CursorAnchorInfo cursorAnchorInfo);
InputMethodManager.java 345 private CursorAnchorInfo mCursorAnchorInfo = null;
377 * The monitor mode for {@link #updateCursorAnchorInfo(View, CursorAnchorInfo)}.
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodSession.aidl 24 import android.view.inputmethod.CursorAnchorInfo;
52 void updateCursorAnchorInfo(in CursorAnchorInfo cursorAnchorInfo);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CursorAnchorInfoUtils.java 27 import android.view.inputmethod.CursorAnchorInfo;
31 * This class allows input methods to extract {@link CursorAnchorInfo} directly from the given
33 * {@link InputMethodService#onUpdateCursorAnchorInfo(CursorAnchorInfo)} event callback must be
80 * Returns {@link CursorAnchorInfo} from the given {@link TextView}.
81 * @param textView the target text view from which {@link CursorAnchorInfo} is to be extracted.
82 * @return the {@link CursorAnchorInfo} object based on the current layout. {@code null} if it
85 public static CursorAnchorInfo getCursorAnchorInfo(final TextView textView) {
91 final CursorAnchorInfo.Builder builder = new CursorAnchorInfo.Builder();
189 characterBoundsFlags |= CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION
    [all...]
  /frameworks/base/core/tests/inputmethodtests/src/android/os/
CursorAnchorInfoTest.java 24 import android.view.inputmethod.CursorAnchorInfo;
25 import android.view.inputmethod.CursorAnchorInfo.Builder;
29 import static android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION;
30 import static android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION;
31 import static android.view.inputmethod.CursorAnchorInfo.FLAG_IS_RTL;
106 final CursorAnchorInfo info = builder.build();
131 final CursorAnchorInfo info2 = builder.build();
158 final CursorAnchorInfo info3 = cloneViaParcel(info2);
184 final CursorAnchorInfo uninitializedInfo = builder.build();
197 private static void assertNotEquals(final CursorAnchorInfo reference
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodSessionWrapper.java 39 import android.view.inputmethod.CursorAnchorInfo;
114 mInputMethodSession.updateCursorAnchorInfo((CursorAnchorInfo)msg.obj);
190 public void updateCursorAnchorInfo(CursorAnchorInfo cursorAnchorInfo) {
192 mCaller.obtainMessageO(DO_UPDATE_CURSOR_ANCHOR_INFO, cursorAnchorInfo));
InputMethodService.java 55 import android.view.inputmethod.CursorAnchorInfo;
543 public void updateCursorAnchorInfo(CursorAnchorInfo info) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
TextDecorator.java 26 import android.view.inputmethod.CursorAnchorInfo;
145 * Must be called when the {@link InputMethodService#onUpdateCursorAnchorInfo(CursorAnchorInfo)}
149 * {@link InputMethodService#onUpdateCursorAnchorInfo(CursorAnchorInfo)} called in full screen
151 * @param info the compatibility wrapper object for the received {@link CursorAnchorInfo}.
186 cancelLayoutInternalExpectedly("CursorAnchorInfo isn't available.");
  /frameworks/base/core/java/android/widget/
Editor.java 99 import android.view.inputmethod.CursorAnchorInfo;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java 53 import android.view.inputmethod.CursorAnchorInfo;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
InputLogic.java 31 import android.view.inputmethod.CursorAnchorInfo;
165 // AcceptTypedWord feature relies on CursorAnchorInfo.
    [all...]
  /frameworks/base/
Android.mk 508 frameworks/base/core/java/android/view/inputmethod/CursorAnchorInfo.aidl \
    [all...]

Completed in 1169 milliseconds