Searched refs:mResolution (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/hardware/ |
D | Sensor.java | 639 private float mResolution; field in Sensor 691 return mResolution; in getResolution() 804 mResolution = res; in setRange() 810 + ", type=" + mType + ", maxRange=" + mMaxRange + ", resolution=" + mResolution in toString()
|
/frameworks/base/core/java/android/print/ |
D | PrintAttributes.java | 49 private Resolution mResolution; field in PrintAttributes 60 mResolution = (parcel.readInt() == 1) ? Resolution.createFromParcel(parcel) : null; in PrintAttributes() 91 return mResolution; in getResolution() 102 mResolution = resolution; in setResolution() 263 if (mResolution != null) { in writeToParcel() 265 mResolution.writeToParcel(parcel); in writeToParcel() 290 result = prime * result + ((mResolution == null) ? 0 : mResolution.hashCode()); in hashCode() 323 if (mResolution == null) { in equals() 324 if (other.mResolution != null) { in equals() 327 } else if (!mResolution.equals(other.mResolution)) { in equals() [all …]
|
/frameworks/native/libs/gui/ |
D | Sensor.cpp | 37 mMinValue(0), mMaxValue(0), mResolution(0), in Sensor() 52 mResolution = hwSensor->resolution; in Sensor() 279 return mResolution; in getResolution() 358 FlattenableUtils::write(buffer, size, mResolution); in flatten() 391 FlattenableUtils::read(buffer, size, mResolution); in unflatten()
|
/frameworks/base/core/java/android/view/ |
D | InputDevice.java | 739 private float mResolution; field in InputDevice.MotionRange 749 mResolution = resolution; in MotionRange() 834 return mResolution; in getResolution() 863 out.writeFloat(range.mResolution); in writeToParcel() 918 description.append(" resolution=").append(range.mResolution); in toString()
|
/frameworks/native/include/gui/ |
D | Sensor.h | 92 float mResolution; variable
|