HomeSort by relevance Sort by last modified time
    Searched refs:Attachment (Results 76 - 100 of 175) sorted by null

1 2 34 5 6 7

  /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/gallium/drivers/swr/rasterizer/core/
tilemgr.h 273 HOTTILE Attachment[SWR_NUM_ATTACHMENTS];
300 FreeHotTileMem(mHotTiles[x][y].Attachment[a].pBuffer);
308 HOTTILE *GetHotTile(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t macroID, SWR_RENDERTARGET_ATTACHMENT attachment, bool create, uint32_t numSamples = 1,
311 HOTTILE *GetHotTileNoLoad(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t macroID, SWR_RENDERTARGET_ATTACHMENT attachment, bool create, uint32_t numSamples = 1);
tilemgr.cpp 86 HOTTILE* HotTileMgr::GetHotTile(SWR_CONTEXT* pContext, DRAW_CONTEXT* pDC, uint32_t macroID, SWR_RENDERTARGET_ATTACHMENT attachment, bool create, uint32_t numSamples,
96 HOTTILE& hotTile = tile.Attachment[attachment];
101 uint32_t size = numSamples * mHotTileSize[attachment];
125 uint32_t size = numSamples * mHotTileSize[attachment];
137 switch (attachment)
149 default: SWR_ASSERT(false, "Unknown attachment: %d", attachment); format = KNOB_COLOR_HOT_TILE_FORMAT; break;
154 if (attachment == SWR_ATTACHMENT_STENCIL)
156 else if (attachment == SWR_ATTACHMENT_DEPTH
170 pContext->pfnLoadTile(GetPrivateState(pDC), format, attachment, variable
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_fbo.c 243 GLenum attachment, struct gl_renderbuffer *rb)
245 _mesa_FramebufferRenderbuffer_sw(ctx, fb, attachment, rb);
293 &fb->Attachment[BUFFER_COLOR0];
295 &fb->Attachment[BUFFER_DEPTH];
nv10_state_fb.c 132 if (fb->Attachment[BUFFER_DEPTH].Renderbuffer) {
134 fb->Attachment[BUFFER_DEPTH].Renderbuffer)->surface;
  /external/mesa3d/src/mesa/swrast/
s_blit.c 155 readAtt = &readFb->Attachment[readFb->_ColorReadBufferIndex];
160 readAtt = &readFb->Attachment[BUFFER_DEPTH];
161 drawAtt = &drawFb->Attachment[BUFFER_DEPTH];
179 readAtt = &readFb->Attachment[BUFFER_STENCIL];
180 drawAtt = &drawFb->Attachment[BUFFER_STENCIL];
204 drawAtt = &drawFb->Attachment[idx];
518 &readFb->Attachment[readFb->_ColorReadBufferIndex];
580 drawAtt = &drawFb->Attachment[idx];
s_clear.c 239 ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer;
241 ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;
s_stencil.c 355 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
398 ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer == NULL) {
500 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
554 ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;
  /packages/apps/Email/tests/src/com/android/email/
DBTestHelper.java 38 import com.android.emailcommon.provider.EmailContent.Attachment;
241 resolver.addProvider(Attachment.ATTACHMENT_PROVIDER_LEGACY_URI_PREFIX, ap);
LegacyConversionsTest.java 33 import com.android.emailcommon.provider.EmailContent.Attachment;
195 * Test adding an attachment to a message, and then parsing it back out.
257 final Attachment att = LegacyConversions.mimePartToAttachment(attPart);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageAttachmentTile.java 35 import com.android.mail.providers.Attachment;
50 * View for a single attachment in conversation view. Shows download status and allows launching
51 * intents to act on an attachment.
93 * Render or update an attachment's view. This happens immediately upon instantiation, and
97 public void render(Attachment attachment, int index,
99 render(attachment, attachmentPreviewCache);
175 LogUtils.e(LOG_TAG, "unable to view image attachment b/c handler is null");
219 // Download if there is network. This check prevents the attachment
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 184 * Review all attachment records for this account, and reset the "don't allow download" flag
194 Cursor c = resolver.query(Attachment.CONTENT_URI, ATTACHMENT_RESET_PROJECTION,
205 boolean wasRestricted = (flags & Attachment.FLAG_POLICY_DISALLOWS_DOWNLOAD) != 0;
209 flags |= Attachment.FLAG_POLICY_DISALLOWS_DOWNLOAD;
211 flags &= ~Attachment.FLAG_POLICY_DISALLOWS_DOWNLOAD;
215 resolver.update(ContentUris.withAppendedId(Attachment.CONTENT_URI, id),
  /external/deqp/modules/glshared/
glsFboUtil.cpp 290 static FormatFlags getAttachmentRenderabilityFlag (GLenum attachment)
292 switch (attachment)
298 DE_ASSERT(attachment >= GL_COLOR_ATTACHMENT0 && attachment <= GL_COLOR_ATTACHMENT15);
428 static void attachAttachment (const Attachment& att, GLenum attPoint,
444 DE_FATAL("Impossible attachment type");
447 GLenum attachmentType (const Attachment& att)
454 DE_FATAL("Impossible attachment type");
466 DE_FATAL("Impossible attachment type");
470 static void checkAttachmentCompleteness (Checker& cctx, const Attachment& attachment
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_clear.c 398 = ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer;
400 = ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;
417 = ctx->DrawBuffer->Attachment[b].Renderbuffer;
st_cb_fbo.c 550 * Validate a renderbuffer attachment for a particular set of bindings.
614 &fb->Attachment[BUFFER_DEPTH];
616 &fb->Attachment[BUFFER_STENCIL];
647 st_fbo_invalid("Invalid depth attachment");
655 st_fbo_invalid("Invalid stencil attachment");
660 &fb->Attachment[BUFFER_COLOR0 + i];
668 st_fbo_invalid("Invalid color attachment");
733 fb->Attachment[fb->_ColorReadBufferIndex].Type == GL_NONE) {
  /packages/apps/UnifiedEmail/src/com/android/mail/print/
PrintUtils.java 34 import com.android.mail.providers.Attachment;
268 // If the message has more than one attachment, list the number of attachments.
276 final List<Attachment> attachments = message.getAttachments();
278 final Attachment attachment = attachments.get(i); local
280 if (attachment.isInlineAttachment()) {
287 .append(getIconFilename(attachment.getContentType()))
289 .append(attachment.getName())
291 AttachmentUtils.convertToHumanReadableSize(context, attachment.size))
301 * Returns an appropriate filename for various attachment mime types
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java 84 import com.android.emailcommon.provider.EmailContent.Attachment;
186 "vnd.android.cursor.item/email-attachment";
229 private static final int ATTACHMENT = ATTACHMENT_BASE;
298 array.put(ATTACHMENT_BASE >> BASE_SHIFT, Attachment.TABLE_NAME);
5149 Attachment attachment = local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_fbo.c 413 GLenum attachment, struct gl_renderbuffer *rb)
417 _mesa_FramebufferRenderbuffer_sw(ctx, fb, attachment, rb);
588 for (i = 0; i < ARRAY_SIZE(fb->Attachment); i++) {
592 if (fb->Attachment[i].Type == GL_NONE)
595 /* A supported attachment will have a Renderbuffer set either
599 rb = fb->Attachment[i].Renderbuffer;
601 fbo_incomplete(fb, "FBO incomplete: attachment without "
606 if (fb->Attachment[i].Type == GL_TEXTURE) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clear.c 109 struct gl_renderbuffer_attachment *depth_att = &fb->Attachment[BUFFER_DEPTH];
brw_blorp.c 561 intel_renderbuffer(read_fb->Attachment[BUFFER_DEPTH].Renderbuffer);
563 intel_renderbuffer(draw_fb->Attachment[BUFFER_DEPTH].Renderbuffer);
582 intel_renderbuffer(read_fb->Attachment[BUFFER_STENCIL].Renderbuffer);
584 intel_renderbuffer(draw_fb->Attachment[BUFFER_STENCIL].Renderbuffer);
691 src_rb = ctx->ReadBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;
    [all...]
  /external/toolchain-utils/cros_utils/
email_sender.py 22 class Attachment(object):
23 """Small class to keep track of attachment info."""
69 for attachment in attachments:
71 part.set_payload(attachment.content)
74 "attachment; filename=\"%s\"" % attachment.name)
125 for attachment in attachments:
126 if '<html>' in attachment.content:
131 os.write(fd, attachment.content)
  /packages/apps/Email/provider_src/com/android/email/service/
EmailServiceStub.java 48 import com.android.emailcommon.provider.EmailContent.Attachment;
127 //1. Check if the attachment is already here and return early in that case
128 Attachment attachment = local
129 Attachment.restoreAttachmentWithId(mContext, attachmentId);
130 if (attachment == null) {
135 final long messageId = attachment.mMessageKey;
138 EmailContent.Message.restoreMessageWithId(mContext, attachment.mMessageKey);
146 if (Utility.attachmentExists(mContext, attachment)
147 && attachment.mUiState == UIProvider.AttachmentState.SAVED)
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.hpp 362 struct Attachment
370 Attachment (void)
383 Attachment& getAttachment (AttachmentPoint point) { return m_attachments[point]; }
384 const Attachment& getAttachment (AttachmentPoint point) const { return m_attachments[point]; }
388 Attachment m_attachments[ATTACHMENTPOINT_LAST];
645 virtual void framebufferTexture2D (deUint32 target, deUint32 attachment, deUint32 textarget, deUint32 texture, int level);
646 virtual void framebufferTextureLayer (deUint32 target, deUint32 attachment, deUint32 texture, int level, int layer);
647 virtual void framebufferRenderbuffer (deUint32 target, deUint32 attachment, deUint32 renderbuffertarget, deUint32 renderbuffer);
650 virtual void getFramebufferAttachmentParameteriv (deUint32 target, deUint32 attachment, deUint32 pname, int* params);
782 void acquireFboAttachmentReference (const rc::Framebuffer::Attachment& attachment)
    [all...]

Completed in 2269 milliseconds

1 2 34 5 6 7