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 366 } else if (LowerCaseEqualsASCII(type_begin, type_end, "attachment")) {
367 type_ = ATTACHMENT;
370 type_ = ATTACHMENT;
380 // disposition-type = "inline" | "attachment" | disp-ext-type
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
WidgetConversationListItemViewBuilder.java 48 private static Bitmap ATTACHMENT;
124 ATTACHMENT = BitmapFactory.decodeResource(res, R.drawable.ic_attach_file_20dp);
176 // Paper clip for attachment
179 paperclipBitmap = ATTACHMENT;
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
EmlAttachmentProvider.java 56 * of the regular attachment provider.
58 * One major difference is that all attachment info is stored in memory (with the
59 * exception of the attachment raw data which is stored in the cache). When
70 private static final int ATTACHMENT = 1;
86 * Map that contains a mapping from an attachment list uri to a list of uris.
91 * Map that contains a mapping from an attachment uri to an {@link Attachment} object.
93 private Map<Uri, Attachment> mUriAttachmentMap;
105 sUriMatcher.addURI(authority, "attachment/*/*/#", ATTACHMENT);
153 final Attachment attachment = mUriAttachmentMap.get(attachmentsUri); local
242 final Attachment attachment = mUriAttachmentMap.get(uri); local
296 final Attachment attachment = mUriAttachmentMap.get(uri); local
471 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;
242 case ATTACHMENT:
244 Log.w(TAG, "ATTACHMENT: Wrong length received: " + tagLength + " expected: "
455 appParamBuf.put((byte) ATTACHMENT);
650 public void setAttachment(int attachment) throws IllegalArgumentException {
651 if (attachment < 0 || attachment > 0x0001)
653 this.mAttachment = attachment;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java 122 private static Bitmap ATTACHMENT;
493 ATTACHMENT = BitmapFactory.decodeResource(res, R.drawable.ic_attach_file_20dp);
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 82 import com.android.emailcommon.provider.EmailContent.Attachment;
180 "vnd.android.cursor.item/email-attachment";
223 private static final int ATTACHMENT = ATTACHMENT_BASE;
292 array.put(ATTACHMENT_BASE >> BASE_SHIFT, Attachment.TABLE_NAME);
5021 Attachment attachment = local
    [all...]

Completed in 352 milliseconds