Home | History | Annotate | Download | only in webkit

Lines Matching refs:mEditTextContentBounds

701     Rect mEditTextContentBounds = new Rect();
3926 mEditTextContentBounds.offset(dx, dy);
4707 isVisible = mEditTextContentBounds.contains(selectionPoint.x,
5660 if (visibleRect.contains(mEditTextContentBounds)) {
5667 Math.max(0, mEditTextContentBounds.left - buffer),
5668 Math.max(0, mEditTextContentBounds.top - buffer),
5669 mEditTextContentBounds.right + buffer,
5670 mEditTextContentBounds.bottom + buffer);
5672 if (visibleRect.width() < mEditTextContentBounds.width()) {
5682 if (visibleRect.height() < mEditTextContentBounds.height()) {
5944 mTouchInEditText = mEditTextContentBounds
5976 boolean inEditBounds = mEditTextContentBounds
6231 if (!mEditTextContentBounds.contains(x,y)) {
6232 int left = Math.min(0, x - mEditTextContentBounds.left - EDIT_RECT_BUFFER);
6233 int right = Math.max(0, x - mEditTextContentBounds.right + EDIT_RECT_BUFFER);
6235 int above = Math.min(0, y - mEditTextContentBounds.top - EDIT_RECT_BUFFER);
6236 int below = Math.max(0, y - mEditTextContentBounds.bottom + EDIT_RECT_BUFFER);
6272 float scrollSpeedX = getTextScrollSpeed(x, mEditTextContentBounds.left,
6273 mEditTextContentBounds.right);
6275 float scrollSpeedY = getTextScrollSpeed(y, mEditTextContentBounds.top,
6276 mEditTextContentBounds.bottom);
6296 mEditTextContentBounds.left, mEditTextContentBounds.right);
6298 mEditTextContentBounds.top, mEditTextContentBounds.bottom);
6464 x = clampBetween(x, mEditTextContentBounds.left,
6465 mEditTextContentBounds.right);
6466 y = clampBetween(y, mEditTextContentBounds.top,
6467 mEditTextContentBounds.bottom);
7233 return Math.max(0, mEditTextContent.width() - mEditTextContentBounds.width());
7237 return Math.max(0, mEditTextContent.height() - mEditTextContentBounds.height());
7553 mEditTextContentBounds.set(initData.mContentBounds);
7556 mEditTextContentBounds);
7629 mEditTextContentBounds.set((Rect) msg.obj);
7631 mEditTextContentBounds);