Searched refs:mResolution (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/core/java/android/print/ |
D | PrintAttributes.java | 86 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/ |
D | Sensor.java | 893 private float mResolution; field in Sensor 947 return mResolution; in getResolution() 1120 mResolution = res; in setRange() 1126 + ", 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 | 38 mMinValue(0), mMaxValue(0), mResolution(0), in Sensor() 57 mResolution = hwSensor.resolution; in Sensor() 372 return mResolution; in getResolution() 474 sizeof(mMinValue) + sizeof(mMaxValue) + sizeof(mResolution) + in getFlattenedSize() 500 FlattenableUtils::write(buffer, size, mResolution); in flatten() 536 sizeof(mMaxValue) + sizeof(mResolution) + sizeof(mPower) + sizeof(mMinDelay) + in unflatten() 547 FlattenableUtils::read(buffer, size, mResolution); in unflatten()
|
/frameworks/base/core/java/android/view/ |
D | InputDevice.java | 852 private float mResolution; field in InputDevice.MotionRange 862 mResolution = resolution; in MotionRange() 947 return mResolution; in getResolution() 978 out.writeFloat(range.mResolution); in writeToParcel() 1035 description.append(" resolution=").append(range.mResolution); in toString()
|
/frameworks/native/libs/sensor/include/sensor/ |
D | Sensor.h | 120 float mResolution; variable
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 26534 Landroid/hardware/Sensor;->mResolution:F 58938 Landroid/print/PrintAttributes;->mResolution:Landroid/print/PrintAttributes$Resolution; 79974 Landroid/view/InputDevice$MotionRange;->mResolution:F
|