Searched refs:BipAttachmentFormat (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipAttachmentFormatTest.java | 53 BipAttachmentFormat attachment = new BipAttachmentFormat(contentType, charset, name, in testParse() 77 BipAttachmentFormat attachment = new BipAttachmentFormat(contentType, charset, name, in testCreate() 190 BipAttachmentFormat attachment = null; in testParsedAttachmentToString() 213 attachment = new BipAttachmentFormat("text/plain", "ISO-8859-1", "thisisatextfile.txt", in testParsedAttachmentToString() 218 attachment = new BipAttachmentFormat("text/plain", "ISO-8859-1", "thisisatextfile.txt", in testParsedAttachmentToString() 223 attachment = new BipAttachmentFormat("text/plain", "ISO-8859-1", "thisisatextfile.txt", in testParsedAttachmentToString() 228 attachment = new BipAttachmentFormat("text/plain", "ISO-8859-1", "thisisatextfile.txt", in testParsedAttachmentToString() 233 attachment = new BipAttachmentFormat("text/plain", null, "thisisatextfile.txt", "2048", in testParsedAttachmentToString() 238 attachment = new BipAttachmentFormat("text/plain", null, "thisisatextfile.txt", null, null, in testParsedAttachmentToString() 248 BipAttachmentFormat attachment = null; in testCreatedAttachmentToString() [all …]
|
D | BipImagePropertiesTest.java | 417 new BipAttachmentFormat("text/plain", null, "ABCD1234.txt", 5120, null, null)); in testCreateProperties() 419 new BipAttachmentFormat("audio/basic", null, "ABCD1234.wav", 102400, null, null)); in testCreateProperties()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipAttachmentFormat.java | 33 public class BipAttachmentFormat { class 70 public BipAttachmentFormat(String contentType, String charset, String name, String size, in BipAttachmentFormat() method in BipAttachmentFormat 101 public BipAttachmentFormat(String contentType, String charset, String name, int size, in BipAttachmentFormat() method in BipAttachmentFormat 148 if (!(o instanceof BipAttachmentFormat)) return false; in equals() 150 BipAttachmentFormat a = (BipAttachmentFormat) o; in equals()
|
D | BipImageProperties.java | 122 public Builder addAttachment(BipAttachmentFormat format) { in addAttachment() 162 private ArrayList<BipAttachmentFormat> mAttachments; 168 mAttachments = new ArrayList<BipAttachmentFormat>(); in BipImageProperties() 174 mAttachments = new ArrayList<BipAttachmentFormat>(); in BipImageProperties() 211 new BipAttachmentFormat(contentType, charset, name, size, in parse() 251 public ArrayList<BipAttachmentFormat> getAttachments() { in getAttachments() 300 private void addAttachment(BipAttachmentFormat format) { in addAttachment() 358 for (BipAttachmentFormat format : mAttachments) { in toString()
|