Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/
DSensor.java639 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/
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()
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/
DSensor.cpp37 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/
DInputDevice.java739 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/
DSensor.h92 float mResolution; variable