Searched refs:mResolution (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/hardware/ |
D | Sensor.java | 319 private float mResolution; field in Sensor 367 return mResolution; in getResolution() 411 mResolution = res; in setRange() 417 + ", 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() 162 if (mResolution != null) { in writeToParcel() 164 mResolution.writeToParcel(parcel); in writeToParcel() 189 result = prime * result + ((mResolution == null) ? 0 : mResolution.hashCode()); in hashCode() 222 if (mResolution == null) { in equals() 223 if (other.mResolution != null) { in equals() 226 } else if (!mResolution.equals(other.mResolution)) { in equals() [all …]
|
/frameworks/native/libs/gui/ |
D | Sensor.cpp | 34 mMinValue(0), mMaxValue(0), mResolution(0), in Sensor() 48 mResolution = hwSensor->resolution; in Sensor() 91 return mResolution; in getResolution() 150 FlattenableUtils::write(buffer, size, mResolution); in flatten() 196 FlattenableUtils::read(buffer, size, mResolution); in unflatten()
|
/frameworks/base/core/java/android/view/ |
D | InputDevice.java | 703 private float mResolution; field in InputDevice.MotionRange 713 mResolution = resolution; in MotionRange() 798 return mResolution; in getResolution() 827 out.writeFloat(range.mResolution); in writeToParcel() 882 description.append(" resolution=").append(range.mResolution); in toString()
|
/frameworks/native/include/gui/ |
D | Sensor.h | 86 float mResolution; variable
|