Searched refs:mResolution (Results 1 – 7 of 7) 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/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
D | GEOLocationElement.java | 63 private final int mResolution; field in GEOLocationElement.RealValue 67 mResolution = Integer.MIN_VALUE; in RealValue() 73 mResolution = resolution; in RealValue() 86 return mResolution; in getResolution() 94 sb.append("+/-2^").append(mResolution); in toString()
|
/frameworks/base/core/java/android/hardware/ |
D | Sensor.java | 798 private float mResolution; field in Sensor 851 return mResolution; in getResolution() 1023 mResolution = res; in setRange() 1029 + ", type=" + mType + ", maxRange=" + mMaxRange + ", resolution=" + mResolution in toString()
|
/frameworks/native/libs/gui/ |
D | Sensor.cpp | 38 mMinValue(0), mMaxValue(0), mResolution(0), in Sensor() 56 mResolution = hwSensor.resolution; in Sensor() 340 return mResolution; in getResolution() 423 sizeof(mMinValue) + sizeof(mMaxValue) + sizeof(mResolution) + in getFlattenedSize() 449 FlattenableUtils::write(buffer, size, mResolution); in flatten() 485 sizeof(mMaxValue) + sizeof(mResolution) + sizeof(mPower) + sizeof(mMinDelay) + in unflatten() 496 FlattenableUtils::read(buffer, size, mResolution); in unflatten()
|
/frameworks/rs/java/tests/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/base/core/java/android/view/ |
D | InputDevice.java | 807 private float mResolution; field in InputDevice.MotionRange 817 mResolution = resolution; in MotionRange() 902 return mResolution; in getResolution() 932 out.writeFloat(range.mResolution); in writeToParcel() 989 description.append(" resolution=").append(range.mResolution); in toString()
|
/frameworks/native/include/gui/ |
D | Sensor.h | 114 float mResolution; variable
|