Home
last modified time | relevance | path

Searched refs:mResolution (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/hardware/
DSensor.java319 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/
DPrintAttributes.java49 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/
DSensor.cpp34 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/
DInputDevice.java703 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/
DSensor.h86 float mResolution; variable