HomeSort by relevance Sort by last modified time
    Searched defs:ATTACHMENT (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/net/http/
http_content_disposition.h 19 ATTACHMENT,
29 // The disposition-type is not 'inline' or 'attachment'.
57 bool is_attachment() const { return type() == ATTACHMENT; }
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
WidgetConversationListItemViewBuilder.java 49 private static Bitmap ATTACHMENT;
129 ATTACHMENT = BitmapFactory.decodeResource(res, R.drawable.ic_attachment_holo_light);
172 // Paper clip for attachment
175 paperclipBitmap = ATTACHMENT;
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
EmlAttachmentProvider.java 54 * of the regular attachment provider.
56 * One major difference is that all attachment info is stored in memory (with the
57 * exception of the attachment raw data which is stored in the cache). When
68 private static final int ATTACHMENT = 1;
83 * Map that contains a mapping from an attachment list uri to a list of uris.
88 * Map that contains a mapping from an attachment uri to an {@link Attachment} object.
90 private Map<Uri, Attachment> mUriAttachmentMap;
102 sUriMatcher.addURI(authority, "*/*/#", ATTACHMENT);
131 case ATTACHMENT
215 final Attachment attachment = mUriAttachmentMap.get(uri); local
266 final Attachment attachment = mUriAttachmentMap.get(uri); local
420 final Attachment attachment = mUriAttachmentMap.get(uri); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java 48 private static final int ATTACHMENT = 0x0A;
99 private int attachment = INVALID_VALUE_PARAMETER; field in class:BluetoothMapAppParams
225 case ATTACHMENT:
227 Log.w(TAG, "ATTACHMENT: Wrong length received: " + tagLength + " expected: "
438 appParamBuf.put((byte) ATTACHMENT);
630 return attachment;
633 public void setAttachment(int attachment) throws IllegalArgumentException {
634 if (attachment < 0 || attachment > 0x0001)
636 this.attachment = attachment
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java 80 import com.android.mail.providers.Attachment;
128 private static Bitmap ATTACHMENT;
424 ATTACHMENT = BitmapFactory.decodeResource(res, R.drawable.ic_attachment_holo_light);
539 false /* attachment previews */, false /* parallax */, false /* parallax */,
574 // remove any attachment preview manager requests.
586 // reset the grid, as the newly bound item may have a different attachment count
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 77 import com.android.emailcommon.provider.EmailContent.Attachment;
169 "vnd.android.cursor.item/email-attachment";
214 private static final int ATTACHMENT = ATTACHMENT_BASE;
273 array.put(ATTACHMENT_BASE >> BASE_SHIFT, Attachment.TABLE_NAME);
684 whereWith(Attachment.MESSAGE_KEY + "=" + id, selection), selectionArgs);
691 case ATTACHMENT:
4711 Attachment attachment = local
    [all...]

Completed in 1543 milliseconds