HomeSort by relevance Sort by last modified time
    Searched refs:Attachment (Results 51 - 75 of 156) sorted by null

1 23 4 5 6 7

  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_state_fb.c 106 if (fb->Attachment[BUFFER_DEPTH].Renderbuffer) {
108 fb->Attachment[BUFFER_DEPTH].Renderbuffer)->surface;
nv10_state_fb.c 132 if (fb->Attachment[BUFFER_DEPTH].Renderbuffer) {
134 fb->Attachment[BUFFER_DEPTH].Renderbuffer)->surface;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 68 flip_y = ctx->ReadBuffer->Attachment[BUFFER_DEPTH].Type == GL_NONE;
71 flip_y = ctx->ReadBuffer->Attachment[BUFFER_COLOR0].Type == GL_NONE;
radeon_common.h 60 return radeon_renderbuffer(fb->Attachment[att_index].Renderbuffer);
  /external/mesa3d/src/mesa/state_tracker/
st_atom_framebuffer.c 145 strb = st_renderbuffer(fb->Attachment[BUFFER_DEPTH].Renderbuffer);
154 strb = st_renderbuffer(fb->Attachment[BUFFER_STENCIL].Renderbuffer);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/
ITNProxy.java 24 import com.intellij.openapi.diagnostic.Attachment;
79 for (Attachment attachment : error.getAttachments()) {
80 params.put("attachment.name", attachment.getName());
81 params.put("attachment.value", attachment.getEncodedBytes());
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageCursor.java 26 import com.android.mail.providers.Attachment;
177 for (Attachment a : m.getAttachments()) {
  /packages/apps/Email/provider_src/com/android/email/
AttachmentInfo.java 20 import com.android.emailcommon.provider.EmailContent.Attachment;
38 * Encapsulates commonly used attachment information related to suitability for viewing and saving,
39 * based on the attachment's filename and mimetype.
59 /** Attachment not denied */
61 /** Attachment suspected of being malware */
63 /** Attachment too large; must download over wi-fi */
65 /** No receiving intent to handle attachment type */
82 /** Whether or not this attachment can be viewed */
84 /** Whether or not this attachment can be saved */
86 /** Whether or not this attachment can be installed [only true for APKs] *
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractConversationWebViewClient.java 38 import com.android.mail.providers.Attachment;
77 * Translates Content ID urls (CID urls) into provider queries for the associated attachment.
78 * With the attachment in hand, it's trivial to open a stream to the file containing the content
79 * of the attachment.
83 * @return a response if a stream to the attachment file can be created from the CID URL;
104 // query for the attachment using its cid
111 // create the attachment from the cursor, if one was found
112 final Attachment target;
117 target = new Attachment(c);
122 // try to return a response that includes a stream to the attachment dat
    [all...]
ThumbnailLoadTask.java 32 import com.android.mail.providers.Attachment;
52 AttachmentBitmapHolder holder, Attachment attachment, Attachment prevAttachment) {
55 final Bitmap cached = cache.get(attachment);
64 if (attachment == null || width == 0 || height == 0
65 || !ImageUtils.isImageMimeType(attachment.getContentType())) {
70 final Uri thumbnailUri = attachment.thumbnailUri;
71 final Uri contentUri = attachment.contentUri;
72 final Uri uri = attachment.getIdentifierUri()
    [all...]
  /external/mesa3d/src/mesa/main/
accum.c 136 accRb = ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
194 ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
252 ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
345 struct gl_renderbuffer *accRb = fb->Attachment[BUFFER_ACCUM].Renderbuffer;
457 if (!ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer) {
clear.c 250 const struct gl_renderbuffer_attachment *att = ctx->DrawBuffer->Attachment;
332 else if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer && !ctx->RasterDiscard) {
495 else if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer && !ctx->RasterDiscard) {
598 if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer)
600 if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer)
readpix.c 61 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
117 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
179 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
422 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
423 struct gl_renderbuffer *stencilRb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
466 struct gl_renderbuffer *depthRb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
467 struct gl_renderbuffer *stencilRb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
527 struct gl_renderbuffer *depthRb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
528 struct gl_renderbuffer *stencilRb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cdonts.h 67 typedef struct Attachment Attachment;
100 typedef struct Attachment Attachment;
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 37 import com.android.emailcommon.provider.EmailContent.Attachment;
648 public static boolean attachmentExists(Context context, Attachment attachment) {
649 if (attachment == null) {
651 } else if (attachment.mContentBytes != null) {
654 final String cachedFile = attachment.getCachedFileUri();
672 final String contentUri = attachment.getContentUri();
708 Attachment[] atts = Attachment.restoreAttachmentsWithMessageId(context, messageId);
709 for (Attachment att: atts)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 22 import com.android.emailcommon.provider.EmailContent.Attachment;
208 * @param saveIt if true, write the new attachment directly to the DB
225 * Create a test attachment. A few fields are specified by params, and all other fields
229 * @param fileName the "file" to indicate in the attachment
230 * @param length the "length" of the attachment
231 * @param flags the flags to set in the attachment
232 * @param saveIt if true, write the new attachment directly to the DB
235 public static Attachment setupAttachment(long messageId, String fileName, long length,
237 Attachment att = new Attachment();
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java 41 import com.android.emailcommon.provider.EmailContent.Attachment;
123 // Version 11: Add content and flags to attachment table
124 // Version 12: Add content_bytes to attachment table. content is deprecated.
128 // Version 16: Add accountKey to Attachment table
148 // Version 33: Add columns to attachment for ui provider columns
361 " begin delete from " + Attachment.TABLE_NAME +
    [all...]
AttachmentProvider.java 35 import com.android.emailcommon.provider.EmailContent.Attachment;
63 * Using the standard application context, account #10 and attachment # 20, this would be:
97 * Returns the mime type for a given attachment. There are three possible results:
98 * - If thumbnail Uri, always returns "image/png" (even if there's no attachment)
99 * - If the attachment does not exist, returns null
100 * - Returns the mime type of the attachment
112 uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, Long.parseLong(id));
133 * Open an attachment file. There are two "formats" - "raw", which returns an actual file,
244 * Returns a cursor based on the data in the attachments table, or null if the attachment
271 uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, Long.parseLong(id))
    [all...]
  /packages/apps/Email/tests/src/com/android/email/service/
AttachmentServiceTests.java 453 final EmailContent.Attachment attachment = new EmailContent.Attachment(); local
454 attachment.mSize = 1000;
459 attachmentService.mServiceCallback.getAttachmentUpdateValues(attachment,
466 final EmailContent.Attachment attachment = new EmailContent.Attachment(); local
467 attachment.mSize = 1000;
472 attachmentService.mServiceCallback.getAttachmentUpdateValues(attachment,
479 final EmailContent.Attachment attachment = new EmailContent.Attachment(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Message.java 226 private transient List<Attachment> mAttachments = null;
479 mAttachments.add(new Attachment(context, attachmentPart,
483 // instantiating an Attachment for each viewable will cause it to be registered within the
489 mAttachments.add(new Attachment(context, viewablePart, emlFileUri, messageId, cid,
640 public List<Attachment> getAttachments() {
643 mAttachments = Attachment.fromJSONArray(attachmentsJson);
663 // Otherwise, iterate through the attachment list,
666 final List<Attachment> attachments = getAttachments();
  /external/deqp/modules/glshared/
glsFboCompletenessTests.hpp 118 Attachment* makeAttachment (GLenum bufType, ImageFormat format,
  /external/deqp/modules/gles2/functional/
es2fFboCompletenessTests.cpp 198 void check (GLenum attPoint, const Attachment& att,
212 void ES2Checker::check (GLenum attPoint, const Attachment& att, const Image* image)
  /external/libmojo/ipc/
ipc_message.cc 238 scoped_refptr<PlaceholderBrokerableAttachment> attachment(
240 return attachment_set()->AddAttachment(attachment);
244 scoped_refptr<base::Pickle::Attachment> attachment) {
248 make_scoped_refptr(static_cast<MessageAttachment*>(attachment.get())),
272 scoped_refptr<base::Pickle::Attachment>* attachment) const {
285 *attachment = brokerable
289 return nullptr != attachment->get();
ipc_message.h 217 // Adds a placeholder brokerable attachment that must be replaced before the
222 // WriteAttachment appends |attachment| to the end of the set. It returns
225 scoped_refptr<base::Pickle::Attachment> attachment) override;
226 // ReadAttachment parses an attachment given the parsing state |iter| and
227 // writes it to |*attachment|. It returns true on success.
230 scoped_refptr<base::Pickle::Attachment>* attachment) const override;
231 // Returns true if there are any attachment in this message.
278 // ids of the brokered attachment ids are sent immediately after the pickle
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_clear.c 239 ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer;
241 ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;

Completed in 2138 milliseconds

1 23 4 5 6 7