Lines Matching refs:range

100      * Use {@link #getMotionRange} to query the range of the pointing device.  Some devices permit
101 * touches outside the display area so the effective range may be somewhat smaller or larger
114 * Use {@link #getMotionRange} to query the range of motion.
125 * Use {@link #getMotionRange} to query the range of positions.
134 * Use {@link #getMotionRange} to query the range of positions.
299 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_X}.
308 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_Y}.
317 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_PRESSURE}.
326 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_SIZE}.
335 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOUCH_MAJOR}.
344 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOUCH_MINOR}.
353 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOOL_MAJOR}.
362 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOOL_MINOR}.
371 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_ORIENTATION}.
682 * Gets information about the range of values for a particular {@link MotionEvent} axis.
689 * @return The range of values, or null if the requested axis is not
698 final MotionRange range = mMotionRanges.get(i);
699 if (range.mAxis == axis) {
700 return range;
707 * Gets information about the range of values for a particular {@link MotionEvent} axis
714 * @return The range of values, or null if the requested axis is not
723 final MotionRange range = mMotionRanges.get(i);
724 if (range.mAxis == axis && range.mSource == source) {
725 return range;
838 * Provides information about the range of values for a particular {@link MotionEvent} axis.
908 * Gets the range of the axis (difference between maximum and minimum).
909 * @return The range of values.
968 MotionRange range = mMotionRanges.get(i);
969 out.writeInt(range.mAxis);
970 out.writeInt(range.mSource);
971 out.writeFloat(range.mMin);
972 out.writeFloat(range.mMax);
973 out.writeFloat(range.mFlat);
974 out.writeFloat(range.mFuzz);
975 out.writeFloat(range.mResolution);
1025 MotionRange range = mMotionRanges.get(i);
1026 description.append(" ").append(MotionEvent.axisToString(range.mAxis));
1027 description.append(": source=0x").append(Integer.toHexString(range.mSource));
1028 description.append(" min=").append(range.mMin);
1029 description.append(" max=").append(range.mMax);
1030 description.append(" flat=").append(range.mFlat);
1031 description.append(" fuzz=").append(range.mFuzz);
1032 description.append(" resolution=").append(range.mResolution);