Searched defs:pack (Results 1 - 3 of 3) sorted by relevance
/packages/apps/LegacyCamera/src/com/android/camera/ |
H A D | Exif.java | 52 length = pack(jpeg, offset, 2, false); 60 pack(jpeg, offset + 2, 4, false) == 0x45786966 && 61 pack(jpeg, offset + 6, 2, false) == 0) { 75 int tag = pack(jpeg, offset, 4, false); 83 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2; 92 count = pack(jpeg, offset - 2, 2, littleEndian); 95 tag = pack(jpeg, offset, 2, littleEndian); 98 int orientation = pack(jpeg, offset + 8, 2, littleEndian); 121 private static int pack(byte[] bytes, int offset, int length, method in class:Exif
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/ |
H A D | Address.java | 78 // delimiters are chars that do not appear in an email address, used by pack/unpack 367 * Returns exactly the same result as Address.pack(Address.parse(textList)). 370 return Address.pack(Address.parse(textList)); 394 * compatibility) previously packed with pack() 395 * @param addressList string packed with pack() or CSV of RFC822 addresses 444 * NOTE: We used to "pack" these addresses in an app-specific format, but no longer do so 446 public static String pack(Address[] addresses) { method in class:Address 451 * Produces the same result as pack(array), but only packs one (this) address. 453 public String pack() { method in class:Address
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
H A D | Address.java | 75 // delimiters are chars that do not appear in an email address, used by pack/unpack 397 * Returns exactly the same result as Address.pack(Address.parse(textList)). 400 return Address.pack(Address.parse(textList)); 423 * Unpacks an address list previously packed with pack() 424 * @param addressList String with packed addresses as returned by pack() 476 public static String pack(Address[] addresses) { method in class:Address 508 * Produces the same result as pack(array), but only packs one (this) address. 510 public String pack() { method in class:Address
|
Completed in 93 milliseconds