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

  /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)
  /external/webkit/WebKitTools/QueueStatusServer/model/
attachment.py 37 class Attachment(object):
40 memcache.delete(str(attachment_id), namespace="attachment-summary")
67 self._summary = memcache.get(str(self.id), namespace="attachment-summary")
71 memcache.set(str(self.id), self._summary, namespace="attachment-summary")
97 # We don't have any record of this attachment.
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
queuestest.py 31 from webkitpy.bugzilla import Attachment
46 mock_work_item = Attachment({
  /external/webkit/WebKitTools/Scripts/webkitpy/
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
scm_unittest.py 43 from webkitpy.bugzilla import Attachment # FIXME: This should not be needed
172 return Attachment(patch, None) # FIXME: This is a hack, scm.py shouldn't be fetching attachment data.
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...]
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java 407 // Boolean, no attachment = 0, attachment = 1
559 transient public ArrayList<Attachment> mAttachments = null;
723 for (Attachment a : mAttachments) {
724 // Save the id of the attachment record
    [all...]

Completed in 44 milliseconds