Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/
DBipPixelTest.java44 Assert.assertEquals(BipPixel.TYPE_FIXED, pixel.getType()); in testFixed()
77 testParse("0*0", BipPixel.TYPE_FIXED, 0, 0, 0, 0, "0*0"); in testParseFixed()
78 testParse("200*200", BipPixel.TYPE_FIXED, 200, 200, 200, 200, "200*200"); in testParseFixed()
79 testParse("12*67", BipPixel.TYPE_FIXED, 12, 67, 12, 67, "12*67"); in testParseFixed()
80 testParse("1000*1000", BipPixel.TYPE_FIXED, 1000, 1000, 1000, 1000, "1000*1000"); in testParseFixed()
109 testParse("65535*65535", BipPixel.TYPE_FIXED, 65535, 65535, 65535, 65535, "65535*65535"); in testParseDimensionAtMax()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/
DBipPixel.java57 public static final int TYPE_FIXED = 1; field in BipPixel
71 return new BipPixel(TYPE_FIXED, width, height, width, height); in createFixed()
120 case TYPE_FIXED: in BipPixel()
124 type = TYPE_FIXED; in BipPixel()
231 case TYPE_FIXED: in toString()