Home | History | Annotate | Download | only in widget

Lines Matching refs:coords

443             MotionEvent.PointerCoords coords, int id, MotionEvent event) {
500 .append(" (").append(coords.x, 3).append(", ").append(coords.y, 3)
501 .append(") Pressure=").append(coords.pressure, 3)
502 .append(" Size=").append(coords.size, 3)
503 .append(" TouchMajor=").append(coords.touchMajor, 3)
504 .append(" TouchMinor=").append(coords.touchMinor, 3)
505 .append(" ToolMajor=").append(coords.toolMajor, 3)
506 .append(" ToolMinor=").append(coords.toolMinor, 3)
507 .append(" Orientation=").append((float)(coords.orientation * 180 / Math.PI), 1)
510 coords.getAxisValue(MotionEvent.AXIS_TILT) * 180 / Math.PI), 1)
512 .append(" Distance=").append(coords.getAxisValue(MotionEvent.AXIS_DISTANCE), 1)
513 .append(" VScroll=").append(coords.getAxisValue(MotionEvent.AXIS_VSCROLL), 1)
514 .append(" HScroll=").append(coords.getAxisValue(MotionEvent.AXIS_HSCROLL), 1)
588 final PointerCoords coords = ps != null ? ps.mCoords : mTempCoords;
589 event.getHistoricalPointerCoords(i, historyPos, coords);
591 logCoords("Pointer", action, i, coords, id, event);
594 ps.addTrace(coords.x, coords.y, false);
601 final PointerCoords coords = ps != null ? ps.mCoords : mTempCoords;
602 event.getPointerCoords(i, coords);
604 logCoords("Pointer", action, i, coords, id, event);
607 ps.addTrace(coords.x, coords.y, true);