Home
last modified time | relevance | path

Searched refs:editorBoundsInfo (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/HandwritingIme/src/com/google/android/test/handwritingime/
DBoundsInfoDrawHelper.java76 @Nullable EditorBoundsInfo editorBoundsInfo) { in drawEditorBoundsInfo() argument
77 if (editorBoundsInfo == null) { in drawEditorBoundsInfo()
80 final RectF editorBounds = editorBoundsInfo.getEditorBounds(); in drawEditorBoundsInfo()
89 final RectF handwritingBounds = editorBoundsInfo.getHandwritingBounds(); in drawEditorBoundsInfo()
/frameworks/base/core/tests/coretests/src/android/widget/
DEditTextCursorAnchorInfoTest.java149 EditorBoundsInfo editorBoundsInfo = cursorAnchorInfo.getEditorBoundsInfo(); in testEditorBoundsInfo_allVisible() local
150 assertThat(editorBoundsInfo).isNotNull(); in testEditorBoundsInfo_allVisible()
151 assertThat(editorBoundsInfo.getEditorBounds()).isEqualTo(new RectF(0, 0, width, height)); in testEditorBoundsInfo_allVisible()
152 assertThat(editorBoundsInfo.getHandwritingBounds()) in testEditorBoundsInfo_allVisible()
166 EditorBoundsInfo editorBoundsInfo = cursorAnchorInfo.getEditorBoundsInfo(); in testEditorBoundsInfo_scrolled() local
167 assertThat(editorBoundsInfo).isNotNull(); in testEditorBoundsInfo_scrolled()
168 assertThat(editorBoundsInfo.getEditorBounds()) in testEditorBoundsInfo_scrolled()
170 assertThat(editorBoundsInfo.getHandwritingBounds()) in testEditorBoundsInfo_scrolled()
184 EditorBoundsInfo editorBoundsInfo = cursorAnchorInfo.getEditorBoundsInfo(); in testEditorBoundsInfo_invisible() local
185 assertThat(editorBoundsInfo).isNotNull(); in testEditorBoundsInfo_invisible()
[all …]
/frameworks/base/core/java/android/view/inputmethod/
DCursorAnchorInfo.java565 @Nullable EditorBoundsInfo editorBoundsInfo, in CursorAnchorInfo() argument
578 mEditorBoundsInfo = editorBoundsInfo; in CursorAnchorInfo()