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

  /packages/apps/PackageInstaller/src/android/support/wearable/view/
WearableListView.java 471 float rawY = event.getRawY();
476 if (rawY > mTapRegions[0] && rawY < mTapRegions[1]) {
482 if (index > 0 && rawY <= mTapRegions[0]) {
486 if (index < getChildCount() - 1 && rawY >= mTapRegions[1]) {
490 if (index == 0 && rawY <= mTapRegions[0] && mClickListener != null) {
741 float rawY = event.getRawY();
743 if (rawY > mTapRegions[0] && rawY < mTapRegions[1]) {
    [all...]
  /frameworks/native/libs/input/
Input.cpp 390 // rawX and rawY. So we apply the transformation to the first point
392 // and rawY for that point.
397 float rawY = getRawY(0);
398 transformPoint(matrix, rawX + oldXOffset, rawY + oldYOffset, &newX, &newY);
400 mYOffset = newY - rawY;
  /frameworks/base/core/java/android/widget/
ZoomButtonsController.java 612 * @param rawY The raw Y.
615 private View findViewForTouch(int rawX, int rawY) {
618 int containerCoordsY = rawY - mContainerRawLocation[1];
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp     [all...]

Completed in 225 milliseconds