Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/print/
DPrintAttributes.java86 private @Nullable Resolution mResolution; field in PrintAttributes
98 mResolution = (parcel.readInt() == 1) ? Resolution.createFromParcel(parcel) : null; in PrintAttributes()
136 return mResolution; in getResolution()
147 mResolution = resolution; in setResolution()
339 if (mResolution != null) { in writeToParcel()
341 mResolution.writeToParcel(parcel); in writeToParcel()
368 result = prime * result + ((mResolution == null) ? 0 : mResolution.hashCode()); in hashCode()
404 if (mResolution == null) { in equals()
405 if (other.mResolution != null) { in equals()
408 } else if (!mResolution.equals(other.mResolution)) { in equals()
[all …]
/frameworks/base/core/java/android/hardware/
DSensor.java910 private float mResolution; field in Sensor
964 return mResolution; in getResolution()
1137 mResolution = res; in setRange()
1143 + ", type=" + mType + ", maxRange=" + mMaxRange + ", resolution=" + mResolution in toString()
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
DIPControls.java89 private Resolutions mResolution; field in IPControls
129 mResolution = Resolutions.values()[pos];
204 intent.putExtra("resolution X", mResolution.width); in makeBasicLaunchIntent()
205 intent.putExtra("resolution Y", mResolution.height); in makeBasicLaunchIntent()
241 float pr = (1920.f / mResolution.width) * (1080.f / mResolution.height); in rebase()
/frameworks/native/libs/sensor/
DSensor.cpp38 mMinValue(0), mMaxValue(0), mResolution(0), in Sensor()
57 mResolution = hwSensor.resolution; in Sensor()
376 return mResolution; in getResolution()
478 sizeof(mMinValue) + sizeof(mMaxValue) + sizeof(mResolution) + in getFlattenedSize()
504 FlattenableUtils::write(buffer, size, mResolution); in flatten()
540 sizeof(mMaxValue) + sizeof(mResolution) + sizeof(mPower) + sizeof(mMinDelay) + in unflatten()
551 FlattenableUtils::read(buffer, size, mResolution); in unflatten()
/frameworks/base/core/java/android/view/
DInputDevice.java868 private float mResolution; field in InputDevice.MotionRange
878 mResolution = resolution; in MotionRange()
963 return mResolution; in getResolution()
994 out.writeFloat(range.mResolution); in writeToParcel()
1051 description.append(" resolution=").append(range.mResolution); in toString()
/frameworks/native/libs/sensor/include/sensor/
DSensor.h120 float mResolution; variable