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

  /external/chromium_org/net/http/
http_content_disposition_unittest.cc 27 {"attachment; filename=abcde.pdf", "", L"abcde.pdf"},
28 {"attachment; name=abcde.pdf", "", L"abcde.pdf"},
29 {"attachment; filename=abc,de.pdf", "", L"abc,de.pdf"},
45 {"attachment; filename=\"%EC%98%88%EC%88%A0%20"
47 {"attachment; filename=\"%F0%90%8C%B0%F0%90%8C%B1"
49 {"attachment; filename=\"%EC%98%88%EC%88%A0 \n"
52 {"attachment; filename=\"=?EUC-JP?Q?=B7=DD=BD="
54 {"attachment; filename==?eUc-Kr?b?v7m8+iAzLnBuZw==?=",
56 {"attachment; filename==?utf-8?Q?=E8=8A=B8=E8"
58 {"attachment; filename==?utf-8?Q?=F0=90=8C=B0
    [all...]
http_content_disposition.h 19 ATTACHMENT,
29 // The disposition-type is not 'inline' or 'attachment'.
57 bool is_attachment() const { return type() == ATTACHMENT; }
http_content_disposition.cc 384 } else if (LowerCaseEqualsASCII(type_begin, type_end, "attachment")) {
385 type_ = ATTACHMENT;
388 type_ = ATTACHMENT;
398 // disposition-type = "inline" | "attachment" | disp-ext-type
  /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 214 milliseconds