Searched refs:mResolution (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/print/ |
D | PrintAttributes.java | 82 private @Nullable Resolution mResolution; field in PrintAttributes 94 mResolution = (parcel.readInt() == 1) ? Resolution.createFromParcel(parcel) : null; in PrintAttributes() 132 return mResolution; in getResolution() 143 mResolution = resolution; in setResolution() 335 if (mResolution != null) { in writeToParcel() 337 mResolution.writeToParcel(parcel); in writeToParcel() 364 result = prime * result + ((mResolution == null) ? 0 : mResolution.hashCode()); in hashCode() 400 if (mResolution == null) { in equals() 401 if (other.mResolution != null) { in equals() 404 } else if (!mResolution.equals(other.mResolution)) { in equals() [all …]
|
/frameworks/base/core/java/android/hardware/ |
D | Sensor.java | 884 private float mResolution; field in Sensor 937 return mResolution; in getResolution() 1109 mResolution = res; in setRange() 1115 + ", type=" + mType + ", maxRange=" + mMaxRange + ", resolution=" + mResolution in toString()
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
D | IPControls.java | 89 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/ |
D | Sensor.cpp | 31 mMinValue(0), mMaxValue(0), mResolution(0), in Sensor() 50 mResolution = hwSensor.resolution; in Sensor() 357 return mResolution; in getResolution() 459 sizeof(mMinValue) + sizeof(mMaxValue) + sizeof(mResolution) + in getFlattenedSize() 485 FlattenableUtils::write(buffer, size, mResolution); in flatten() 521 sizeof(mMaxValue) + sizeof(mResolution) + sizeof(mPower) + sizeof(mMinDelay) + in unflatten() 532 FlattenableUtils::read(buffer, size, mResolution); in unflatten()
|
/frameworks/base/core/java/android/view/ |
D | InputDevice.java | 849 private float mResolution; field in InputDevice.MotionRange 859 mResolution = resolution; in MotionRange() 944 return mResolution; in getResolution() 975 out.writeFloat(range.mResolution); in writeToParcel() 1032 description.append(" resolution=").append(range.mResolution); in toString()
|
/frameworks/native/libs/sensor/include/sensor/ |
D | Sensor.h | 120 float mResolution; variable
|