Home | History | Annotate | Download | only in print

Lines Matching refs:mResolution

49     private Resolution mResolution;
60 mResolution = (parcel.readInt() == 1) ? Resolution.createFromParcel(parcel) : null;
91 return mResolution;
102 mResolution = resolution;
263 if (mResolution != null) {
265 mResolution.writeToParcel(parcel);
290 result = prime * result + ((mResolution == null) ? 0 : mResolution.hashCode());
323 if (mResolution == null) {
324 if (other.mResolution != null) {
327 } else if (!mResolution.equals(other.mResolution)) {
344 builder.append(", resolution: ").append(mResolution);
354 mResolution = null;
364 mResolution = other.mResolution;