Home
last modified time | relevance | path

Searched refs:parseVariant (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/
DBipImageFormatTest.java59 BipImageFormat format = BipImageFormat.parseVariant("JPEG", "1280*1024", null, null); in testParseVariant_requiredOnly()
72 BipImageFormat format = BipImageFormat.parseVariant("JPEG", "1280*1024", "1048576", null); in testParseVariant_withMaxSize()
93 format = BipImageFormat.parseVariant("JPEG", "1280*1024", null, "stretch fill crop"); in testParseVariant_withTransformation()
97 format = BipImageFormat.parseVariant("JPEG", "1280*1024", null, "stretch crop fill"); in testParseVariant_withTransformation()
101 format = BipImageFormat.parseVariant("JPEG", "1280*1024", null, "crop stretch fill"); in testParseVariant_withTransformation()
117 format = BipImageFormat.parseVariant("JPEG", "1280*1024", "1048576", "stretch fill crop"); in testParseVariant_allFields()
126 format = BipImageFormat.parseVariant("JPEG", "1280*1024", "1048576", "stretch crop fill"); in testParseVariant_allFields()
135 format = BipImageFormat.parseVariant("JPEG", "1280*1024", "1048576", "crop stretch fill"); in testParseVariant_allFields()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/
DBipImageFormat.java54 public static BipImageFormat parseVariant(String encoding, String pixel, String maxSize, in parseVariant() method in BipImageFormat
DBipImageProperties.java190 BipImageFormat.parseVariant(encoding, pixel, maxSize, trans)); in parse()