Home
last modified time | relevance | path

Searched refs:mPixel (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/bip/
DBipImageFormat.java77 private final BipPixel mPixel; field in BipImageFormat
112 mPixel = Objects.requireNonNull(pixel, "Pixel cannot be null"); in BipImageFormat()
127 mPixel = new BipPixel(pixel); in BipImageFormat()
152 return mPixel; in getPixel()
185 || mPixel == null in toString()
186 || mPixel.getType() == BipPixel.TYPE_UNKNOWN) { in toString()
190 + (mPixel == null ? "pixel " : "")); in toString()
199 sb.append(" pixel=\"" + mPixel.toString() + "\""); in toString()
208 sb.append(" pixel=\"" + mPixel.toString() + "\""); in toString()
DBipImageDescriptor.java101 mImageDescriptor.mPixel = BipPixel.createFixed(width, height); in setFixedDimensions()
152 private BipPixel mPixel = null; field in BipImageDescriptor
187 mPixel = new BipPixel(xpp.getAttributeValue(null, "pixel")); in parse()
226 return mPixel; in getPixel()
270 if (mEncoding == null || mPixel == null) { in toString()
274 + (mPixel == null ? "pixel " : "")); in toString()
287 xmlMsgElement.attribute(null, "pixel", mPixel.toString()); in toString()