Searched refs:parseNative (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipImageFormatTest.java | 33 BipImageFormat format = BipImageFormat.parseNative("JPEG", "1280*1024", null); in testParseNative_requiredOnly() 46 BipImageFormat format = BipImageFormat.parseNative("JPEG", "1280*1024", "1048576"); in testParseNative_withSize() 237 BipImageFormat format = BipImageFormat.parseNative(null, "1024*960", "1048576"); in testParseNative_noEncoding() 242 BipImageFormat format = BipImageFormat.parseNative("", "1024*960", "1048576"); in testParseNative_emptyEncoding() 247 BipImageFormat format = BipImageFormat.parseNative("JIF", "1024*960", "1048576"); in testParseNative_badEncoding() 252 BipImageFormat format = BipImageFormat.parseNative("JPEG", null, "1048576"); in testParseNative_noPixel() 257 BipImageFormat format = BipImageFormat.parseNative("JPEG", "", "1048576"); in testParseNative_emptyPixel() 262 BipImageFormat format = BipImageFormat.parseNative("JPEG", "abc*123", "1048576"); in testParseNative_badPixel()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipImageFormat.java | 47 public static BipImageFormat parseNative(String encoding, String pixel, String size) { in parseNative() method in BipImageFormat
|
D | BipImageProperties.java | 195 addNativeFormat(BipImageFormat.parseNative(encoding, pixel, size)); in parse()
|