HomeSort by relevance Sort by last modified time
    Searched refs:attachment (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/webkit/WebCore/accessibility/mac/
AccessibilityObjectMac.mm 37 NSView* attachment = [wrapper() attachmentView];
38 if (!attachment)
41 return [attachment accessibilityIsIgnored];
  /libcore/luni/src/main/java/java/nio/channels/
SelectionKey.java 56 private volatile Object attachment = null; field in class:SelectionKey
67 * this discards the old attachment.
71 * attachment.
76 Object oldAttachment = attachment;
77 attachment = anObject;
87 public final Object attachment() { method in class:SelectionKey
88 return attachment;
  /external/webkit/WebKitTools/QueueStatusServer/handlers/
dashboard.py 32 from model.attachment import Attachment
36 attachments = Attachment.recent(limit=25)
39 "summaries" : [attachment.summary() for attachment in attachments],
statusbubble.py 32 from model.attachment import Attachment
37 attachment = Attachment(int(attachment_id))
40 "summary" : attachment.summary()
updatestatus.py 33 from model.attachment import Attachment
66 Attachment.dirty(patch_id)
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
SmtpSenderUnitTests.java 23 import com.android.email.provider.EmailContent.Attachment;
136 * Test: Open and send a single message with an empty attachment (no file) (sunny day)
148 // Creates an attachment with a bogus file (so we get headers only)
149 Attachment attachment = setupSimpleAttachment(mProviderContext, message.mId, false); local
150 attachment.save(mProviderContext);
156 expectSimpleAttachment(mockTransport, attachment);
166 * Test: Open and send a single message with an attachment (sunny day)
178 // Creates an attachment with a real file
179 Attachment attachment = setupSimpleAttachment(mProviderContext, message.mId, true) local
209 Attachment attachment = setupSimpleAttachment(mProviderContext, message.mId, true); local
250 Attachment attachment = setupSimpleAttachment(mProviderContext, message.mId, true); local
305 Attachment attachment = new Attachment(); local
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebHTTPURLResponse.idl 43 HRESULT isAttachment([out, retval] BOOL* attachment);
  /packages/apps/Email/src/com/android/email/mail/transport/
Rfc822Output.java 22 import com.android.email.provider.EmailContent.Attachment;
152 Uri uri = ContentUris.withAppendedId(Attachment.MESSAGE_ID_URI, messageId);
154 Attachment.CONTENT_PROJECTION, null, null, null);
173 // Move to the first attachment; this must succeed because multipart is true
176 // If we've got one attachment and it's an ics "attachment", we want to send
178 int flags = attachmentsCursor.getInt(Attachment.CONTENT_FLAGS_COLUMN);
179 if ((flags & Attachment.FLAG_ICS_ALTERNATIVE_PART) != 0) {
198 Attachment attachment local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
SelectionKeyImpl.java 45 Object attachment, SelectorImpl selector) {
49 attach(attachment);
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 117 * @param attachment
134 Object attachment) throws ClosedChannelException {
157 attachment);
164 key.attach(attachment);
AbstractSelector.java 113 * @param attachment
114 * the attachment for the selection key.
118 int operations, Object attachment);
  /external/webkit/WebKitTools/Scripts/webkitpy/
bugzilla_unittest.py 65 <attachment
87 </attachment>
94 'url' : "https://bugs.webkit.org/attachment.cgi?id=33721",
155 <attachment
179 </attachment>
191 'url' : "https://bugs.webkit.org/attachment.cgi?id=45548",
217 attachment_element = soup.find("attachment")
218 attachment = bugzilla._parse_attachment_element(attachment_element, self._expected_example_attachment_parsing['bug_id'])
219 self.assertTrue(attachment)
220 self._assert_dictionaries_equal(attachment, self._expected_example_attachment_parsing
    [all...]
bugzilla.py 67 class Attachment(object):
123 log("Warning, attachment %s on bug %s has invalid %s (%s)" % (
157 attachments = filter(lambda attachment:
158 not attachment["is_obsolete"], attachments)
159 return [Attachment(attachment, self) for attachment in attachments]
213 attachment_href = re.compile("attachment.cgi\?id=\d+&action=review")
375 attachment,
379 attachment[flag_name] = flag['status'
    [all...]
mock_bugzillatool.py 31 from webkitpy.bugzilla import Bug, Attachment
249 for attachment in bug.attachments(include_obsolete=True):
250 if attachment.id() == int(attachment_id):
251 return attachment
  /packages/apps/Email/src/com/android/email/activity/
MessageView.java 31 import com.android.email.provider.EmailContent.Attachment;
149 private long mLoadAttachmentId; // the attachment being saved/viewed
217 AttachmentInfo attachment = local
219 attachment.viewButton.setEnabled(msg.arg1 == 1);
220 attachment.downloadButton.setEnabled(msg.arg1 == 1);
309 * Encapsulates known information about a single attachment.
361 mAttachmentIcon = (ImageView) findViewById(R.id.attachment);
729 private void onDownloadAttachment(AttachmentInfo attachment) {
732 * Abort early if there's no place to save the attachment. We don't want to spend
741 mLoadAttachmentId = attachment.attachmentId
987 AttachmentInfo attachment = (AttachmentInfo) mAttachments.getChildAt(i).getTag(); local
1618 Attachment attachment = local
    [all...]
MessageCompose.java 31 import com.android.email.provider.EmailContent.Attachment;
673 mLoadAttachmentsTask = new AsyncTask<Long, Void, Attachment[]>() {
675 protected Attachment[] doInBackground(Long... messageIds) {
676 return Attachment.restoreAttachmentsWithMessageId(MessageCompose.this,
680 protected void onPostExecute(Attachment[] attachments) {
684 for (Attachment attachment : attachments) {
685 addAttachment(attachment);
1074 Attachment attachment = new Attachment(); local
1147 Attachment attachment = (Attachment) attachmentView.getTag(); local
1324 Attachment attachment = loadAttachmentInfo(uri); local
    [all...]
  /packages/apps/Email/src/com/android/email/mail/internet/
EmailHtmlUtil.java 61 LocalAttachmentBodyPart attachment = (LocalAttachmentBodyPart)part; local
63 AttachmentProvider.getAttachmentUri(accountId, attachment.getAttachmentId());
  /external/webkit/WebKit/win/
WebURLResponse.h 84 /* [retval][out] */ BOOL *attachment);
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11ExtensionPack.java 195 int attachment,
202 int attachment,
236 int attachment,
244 int attachment,
  /external/webkit/WebKit/mac/Misc/
WebNSAttributedStringExtras.mm 140 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:fileWrapper];
141 [string appendAttributedString:[NSAttributedString attributedStringWithAttachment:attachment]];
142 [attachment release];
WebNSPasteboardExtras.mm 187 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:wrapper];
189 NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attachment];
190 [attachment release];
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MonitorThread.java 262 if (key.attachment() instanceof Client) {
265 else if (key.attachment() instanceof Debugger) {
268 else if (key.attachment() instanceof MonitorThread) {
302 Client client = (Client)key.attachment();
450 Debugger dbg = (Debugger)key.attachment();
512 Debugger dbg = (Debugger)key.attachment();
  /external/webkit/WebCore/rendering/style/
FillLayer.h 70 EFillAttachment attachment() const { return static_cast<EFillAttachment>(m_attachment); } function in struct:WebCore::FillLayer
96 void setAttachment(EFillAttachment attachment) { m_attachment = attachment; m_attachmentSet = true; }
  /packages/apps/Email/src/com/android/email/mail/store/
LocalStore.java 363 for (File attachment : attachments) {
364 if (attachment.exists()) {
365 attachment.delete();
418 * If the attachment has no store data it is not recoverable, so
1317 Part attachment = attachments.get(i); local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 42 import com.android.email.provider.EmailContent.Attachment;
238 Uri uri = ContentUris.withAppendedId(Attachment.MESSAGE_ID_URI, localMessage.mId);
239 Cursor c = mProviderContext.getContentResolver().query(uri, Attachment.CONTENT_PROJECTION,
244 Attachment attachment = Attachment.getContent(c, Attachment.class); local
245 if ("101".equals(attachment.mLocation)) {
246 checkAttachment("attachment1Part", attachments.get(0), attachment);
247 } else if ("102".equals(attachment.mLocation))
321 Attachment attachment = Attachment.getContent(c, Attachment.class); local
    [all...]

Completed in 636 milliseconds

1 2 3 4