Searched refs:TYPE_FIXED (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipPixelTest.java | 48 Assert.assertEquals(BipPixel.TYPE_FIXED, pixel.getType()); in testFixed() 80 testParse("0*0", BipPixel.TYPE_FIXED, 0, 0, 0, 0, "0*0"); in testParseFixed() 81 testParse("200*200", BipPixel.TYPE_FIXED, 200, 200, 200, 200, "200*200"); in testParseFixed() 82 testParse("12*67", BipPixel.TYPE_FIXED, 12, 67, 12, 67, "12*67"); in testParseFixed() 83 testParse("1000*1000", BipPixel.TYPE_FIXED, 1000, 1000, 1000, 1000, "1000*1000"); in testParseFixed() 160 testParse("65535*65535", BipPixel.TYPE_FIXED, 65535, 65535, 65535, 65535, "65535*65535"); in testParseDimensionAtMax()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipPixel.java | 57 public static final int TYPE_FIXED = 1; field in BipPixel 69 return new BipPixel(TYPE_FIXED, width, height, width, height); in createFixed() 114 case TYPE_FIXED: in BipPixel() 118 type = TYPE_FIXED; in BipPixel() 227 case TYPE_FIXED: in toString()
|
D | BipImageProperties.java | 284 case BipPixel.TYPE_FIXED: in isThumbnailFormat()
|