Home
last modified time | relevance | path

Searched refs:Attachment (Results 1 – 25 of 171) sorted by relevance

1234567

/external/chromium_org/sync/api/attachments/
Dattachment.cc11 Attachment::~Attachment() {} in ~Attachment()
14 Attachment Attachment::Create( in Create()
20 Attachment Attachment::CreateWithId( in CreateWithId()
23 return Attachment(id, data); in CreateWithId()
26 const AttachmentId& Attachment::GetId() const { return id_; } in GetId()
28 const scoped_refptr<base::RefCountedMemory>& Attachment::GetData() const { in GetData()
32 Attachment::Attachment(const AttachmentId& id, in Attachment() function in syncer::Attachment
Dattachment_unittest.cc27 Attachment a1 = Attachment::Create(some_data); in TEST_F()
28 Attachment a2 = Attachment::Create(some_data); in TEST_F()
35 Attachment a = Attachment::Create(empty_data); in TEST_F()
43 Attachment a = Attachment::CreateWithId(id, some_data); in TEST_F()
Dattachment.h26 class SYNC_EXPORT Attachment {
28 ~Attachment();
35 static Attachment Create(const scoped_refptr<base::RefCountedMemory>& data);
41 static Attachment CreateWithId(
55 Attachment(const AttachmentId& id,
59 typedef std::vector<syncer::Attachment> AttachmentList;
60 typedef std::map<AttachmentId, Attachment> AttachmentMap;
Dfake_attachment_store_unittest.cc91 Attachment attachment1 = Attachment::Create(some_data1); in TEST_F()
92 Attachment attachment2 = in TEST_F()
93 Attachment::CreateWithId(attachment1.GetId(), some_data2); in TEST_F()
124 Attachment attachment1 = Attachment::Create(some_data1); in TEST_F()
125 Attachment attachment2 = Attachment::Create(some_data2); in TEST_F()
154 Attachment attachment1 = Attachment::Create(some_data1); in TEST_F()
155 Attachment attachment2 = Attachment::Create(some_data2); in TEST_F()
181 Attachment attachment1 = Attachment::Create(some_data1); in TEST_F()
182 Attachment attachment2 = Attachment::Create(some_data2); in TEST_F()
227 Attachment attachment1 = Attachment::Create(some_data1); in TEST_F()
/external/chromium_org/sync/internal_api/attachments/
Dfake_attachment_uploader_unittest.cc50 Attachment attachment1 = Attachment::Create(some_data); in TEST_F()
51 Attachment attachment2 = Attachment::Create(some_data); in TEST_F()
52 Attachment attachment3 = Attachment::Create(some_data); in TEST_F()
Dattachment_uploader_impl_unittest.cc427 Attachment attachment = Attachment::Create(some_data); in TEST_F()
462 Attachment attachment1 = Attachment::Create(some_data); in TEST_F()
463 Attachment attachment2 = attachment1; in TEST_F()
482 Attachment attachment1 = Attachment::Create(some_data); in TEST_F()
483 Attachment attachment2 = attachment1; in TEST_F()
505 Attachment attachment = Attachment::Create(some_data); in TEST_F()
527 Attachment attachment = Attachment::Create(some_data); in TEST_F()
564 Attachment attachment = Attachment::Create(some_data); in TEST_F()
602 Attachment attachment = Attachment::Create(some_data); in TEST_F()
Dfake_attachment_downloader.cc26 scoped_ptr<Attachment> attachment; in DownloadAttachment()
28 new Attachment(Attachment::CreateWithId(attachment_id, data))); in DownloadAttachment()
Dattachment_uploader_impl.cc45 const Attachment& attachment,
66 const Attachment& GetAttachment();
90 Attachment attachment_;
108 const Attachment& attachment, in UploadState()
147 const Attachment& AttachmentUploaderImpl::UploadState::GetAttachment() { in GetAttachment()
277 void AttachmentUploaderImpl::UploadAttachment(const Attachment& attachment, in UploadAttachment()
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
Ds_renderbuffer.c268 assert(fb->Attachment[b].Renderbuffer == NULL); in add_color_renderbuffers()
306 assert(fb->Attachment[BUFFER_DEPTH].Renderbuffer == NULL); in add_depth_renderbuffer()
351 assert(fb->Attachment[BUFFER_STENCIL].Renderbuffer == NULL); in add_stencil_renderbuffer()
375 assert(fb->Attachment[BUFFER_DEPTH].Renderbuffer == NULL); in add_depth_stencil_renderbuffer()
376 assert(fb->Attachment[BUFFER_STENCIL].Renderbuffer == NULL); in add_depth_stencil_renderbuffer()
415 assert(fb->Attachment[BUFFER_ACCUM].Renderbuffer == NULL); in add_accum_renderbuffer()
459 assert(fb->Attachment[BUFFER_AUX0 + i].Renderbuffer == NULL); in add_aux_renderbuffers()
561 struct gl_texture_object *texObj = fb->Attachment[buffer].Texture; in map_attachment()
562 struct gl_renderbuffer *rb = fb->Attachment[buffer].Renderbuffer; in map_attachment()
567 const GLuint level = fb->Attachment[buffer].TextureLevel; in map_attachment()
[all …]
Ds_copypix.c248 struct gl_renderbuffer *readRb = fb->Attachment[BUFFER_DEPTH].Renderbuffer; in copy_depth_pixels()
350 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_STENCIL].Renderbuffer; in copy_stencil_pixels()
463 srcRb = srcFb->Attachment[BUFFER_STENCIL].Renderbuffer; in swrast_fast_copy_pixels()
464 dstRb = dstFb->Attachment[BUFFER_STENCIL].Renderbuffer; in swrast_fast_copy_pixels()
467 srcRb = srcFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
468 dstRb = dstFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
473 srcRb = srcFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
474 dstRb = dstFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
490 if (srcRb != srcFb->Attachment[BUFFER_STENCIL].Renderbuffer || in swrast_fast_copy_pixels()
491 dstRb != dstFb->Attachment[BUFFER_STENCIL].Renderbuffer) in swrast_fast_copy_pixels()
[all …]
/external/mesa3d/src/mesa/swrast/
Ds_renderbuffer.c268 assert(fb->Attachment[b].Renderbuffer == NULL); in add_color_renderbuffers()
306 assert(fb->Attachment[BUFFER_DEPTH].Renderbuffer == NULL); in add_depth_renderbuffer()
351 assert(fb->Attachment[BUFFER_STENCIL].Renderbuffer == NULL); in add_stencil_renderbuffer()
375 assert(fb->Attachment[BUFFER_DEPTH].Renderbuffer == NULL); in add_depth_stencil_renderbuffer()
376 assert(fb->Attachment[BUFFER_STENCIL].Renderbuffer == NULL); in add_depth_stencil_renderbuffer()
415 assert(fb->Attachment[BUFFER_ACCUM].Renderbuffer == NULL); in add_accum_renderbuffer()
459 assert(fb->Attachment[BUFFER_AUX0 + i].Renderbuffer == NULL); in add_aux_renderbuffers()
561 struct gl_texture_object *texObj = fb->Attachment[buffer].Texture; in map_attachment()
562 struct gl_renderbuffer *rb = fb->Attachment[buffer].Renderbuffer; in map_attachment()
567 const GLuint level = fb->Attachment[buffer].TextureLevel; in map_attachment()
[all …]
Ds_copypix.c248 struct gl_renderbuffer *readRb = fb->Attachment[BUFFER_DEPTH].Renderbuffer; in copy_depth_pixels()
350 struct gl_renderbuffer *rb = fb->Attachment[BUFFER_STENCIL].Renderbuffer; in copy_stencil_pixels()
463 srcRb = srcFb->Attachment[BUFFER_STENCIL].Renderbuffer; in swrast_fast_copy_pixels()
464 dstRb = dstFb->Attachment[BUFFER_STENCIL].Renderbuffer; in swrast_fast_copy_pixels()
467 srcRb = srcFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
468 dstRb = dstFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
473 srcRb = srcFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
474 dstRb = dstFb->Attachment[BUFFER_DEPTH].Renderbuffer; in swrast_fast_copy_pixels()
490 if (srcRb != srcFb->Attachment[BUFFER_STENCIL].Renderbuffer || in swrast_fast_copy_pixels()
491 dstRb != dstFb->Attachment[BUFFER_STENCIL].Renderbuffer) in swrast_fast_copy_pixels()
[all …]
/external/chromium_org/ui/login/
Dbubble.js33 Bubble.Attachment = {
137 for (var k in Bubble.Attachment) {
138 var v = Bubble.Attachment[k];
212 case Bubble.Attachment.TOP:
216 case Bubble.Attachment.RIGHT:
220 case Bubble.Attachment.BOTTOM:
224 case Bubble.Attachment.LEFT:
231 case Bubble.Attachment.TOP:
235 case Bubble.Attachment.RIGHT:
239 case Bubble.Attachment.BOTTOM:
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
Dst_cb_blit.c95 srcDepth = &ctx->ReadBuffer->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer_resolve()
96 dstDepth = &ctx->DrawBuffer->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer_resolve()
97 srcStencil = &ctx->ReadBuffer->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer_resolve()
98 dstStencil = &ctx->DrawBuffer->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer_resolve()
229 &readFB->Attachment[readFB->_ColorReadBufferIndex]; in st_BlitFramebuffer()
269 &readFB->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer()
271 &drawFB->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer()
273 &readFB->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer()
275 &drawFB->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer()
278 st_renderbuffer(readFB->Attachment[BUFFER_DEPTH].Renderbuffer); in st_BlitFramebuffer()
[all …]
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_blit.c95 srcDepth = &ctx->ReadBuffer->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer_resolve()
96 dstDepth = &ctx->DrawBuffer->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer_resolve()
97 srcStencil = &ctx->ReadBuffer->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer_resolve()
98 dstStencil = &ctx->DrawBuffer->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer_resolve()
229 &readFB->Attachment[readFB->_ColorReadBufferIndex]; in st_BlitFramebuffer()
269 &readFB->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer()
271 &drawFB->Attachment[BUFFER_DEPTH]; in st_BlitFramebuffer()
273 &readFB->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer()
275 &drawFB->Attachment[BUFFER_STENCIL]; in st_BlitFramebuffer()
278 st_renderbuffer(readFB->Attachment[BUFFER_DEPTH].Renderbuffer); in st_BlitFramebuffer()
[all …]
/external/chromium_org/gpu/command_buffer/service/
Dframebuffer_manager.cc44 : public Framebuffer::Attachment {
135 : public Framebuffer::Attachment {
294 Attachment* attachment = attachments_.begin()->second.get(); in MarkAsDeleted()
357 const Attachment* attachment = it->second.get(); in HasUnclearedAttachment()
368 const Attachment* attachment = it->second.get(); in HasUnclearedColorAttachments()
419 Attachment* a = it->second.get(); in MarkAttachmentAsCleared()
434 Attachment* attachment = it->second.get(); in MarkAttachmentsAsCleared()
456 const Attachment* attachment = it->second.get(); in GetColorAttachmentFormat()
465 const Attachment* attachment = it->second.get(); in GetColorAttachmentTextureType()
479 Attachment* attachment = it->second.get(); in IsPossiblyComplete()
[all …]
Dframebuffer_manager.h30 class Attachment : public base::RefCounted<Attachment> {
56 friend class base::RefCounted<Attachment>;
57 virtual ~Attachment() {} in ~Attachment()
93 const Attachment* GetAttachment(GLenum attachment) const;
194 typedef base::hash_map<GLenum, scoped_refptr<Attachment> > AttachmentMap;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Drenderbuffer.c108 fb->Attachment[bufferName].Renderbuffer == NULL); in _mesa_add_renderbuffer()
118 fb->Attachment[bufferName].Type = GL_RENDERBUFFER_EXT; in _mesa_add_renderbuffer()
119 fb->Attachment[bufferName].Complete = GL_TRUE; in _mesa_add_renderbuffer()
120 _mesa_reference_renderbuffer(&fb->Attachment[bufferName].Renderbuffer, rb); in _mesa_add_renderbuffer()
133 _mesa_reference_renderbuffer(&fb->Attachment[bufferName].Renderbuffer, in _mesa_remove_renderbuffer()
Dframebuffer.c214 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; in _mesa_free_framebuffer_data()
288 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; in _mesa_resize_framebuffer()
414 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; in update_framebuffer_size()
515 if (fb->Attachment[i].Renderbuffer) { in _mesa_update_framebuffer_visual()
516 const struct gl_renderbuffer *rb = fb->Attachment[i].Renderbuffer; in _mesa_update_framebuffer_visual()
543 if (fb->Attachment[i].Renderbuffer) { in _mesa_update_framebuffer_visual()
544 const struct gl_renderbuffer *rb = fb->Attachment[i].Renderbuffer; in _mesa_update_framebuffer_visual()
554 if (fb->Attachment[BUFFER_DEPTH].Renderbuffer) { in _mesa_update_framebuffer_visual()
556 fb->Attachment[BUFFER_DEPTH].Renderbuffer; in _mesa_update_framebuffer_visual()
562 if (fb->Attachment[BUFFER_STENCIL].Renderbuffer) { in _mesa_update_framebuffer_visual()
[all …]
Dfbobject.c222 return &fb->Attachment[BUFFER_COLOR0 + i]; in _mesa_get_attachment()
228 return &fb->Attachment[BUFFER_DEPTH]; in _mesa_get_attachment()
230 return &fb->Attachment[BUFFER_STENCIL]; in _mesa_get_attachment()
249 return &fb->Attachment[BUFFER_FRONT_LEFT]; in _mesa_get_fb0_attachment()
251 return &fb->Attachment[BUFFER_FRONT_RIGHT]; in _mesa_get_fb0_attachment()
253 return &fb->Attachment[BUFFER_BACK_LEFT]; in _mesa_get_fb0_attachment()
255 return &fb->Attachment[BUFFER_BACK_RIGHT]; in _mesa_get_fb0_attachment()
258 return &fb->Attachment[BUFFER_AUX0]; in _mesa_get_fb0_attachment()
287 return &fb->Attachment[BUFFER_DEPTH]; in _mesa_get_fb0_attachment()
289 return &fb->Attachment[BUFFER_STENCIL]; in _mesa_get_fb0_attachment()
[all …]
/external/mesa3d/src/mesa/main/
Drenderbuffer.c108 fb->Attachment[bufferName].Renderbuffer == NULL); in _mesa_add_renderbuffer()
118 fb->Attachment[bufferName].Type = GL_RENDERBUFFER_EXT; in _mesa_add_renderbuffer()
119 fb->Attachment[bufferName].Complete = GL_TRUE; in _mesa_add_renderbuffer()
120 _mesa_reference_renderbuffer(&fb->Attachment[bufferName].Renderbuffer, rb); in _mesa_add_renderbuffer()
133 _mesa_reference_renderbuffer(&fb->Attachment[bufferName].Renderbuffer, in _mesa_remove_renderbuffer()
Dframebuffer.c214 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; in _mesa_free_framebuffer_data()
288 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; in _mesa_resize_framebuffer()
414 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; in update_framebuffer_size()
515 if (fb->Attachment[i].Renderbuffer) { in _mesa_update_framebuffer_visual()
516 const struct gl_renderbuffer *rb = fb->Attachment[i].Renderbuffer; in _mesa_update_framebuffer_visual()
543 if (fb->Attachment[i].Renderbuffer) { in _mesa_update_framebuffer_visual()
544 const struct gl_renderbuffer *rb = fb->Attachment[i].Renderbuffer; in _mesa_update_framebuffer_visual()
554 if (fb->Attachment[BUFFER_DEPTH].Renderbuffer) { in _mesa_update_framebuffer_visual()
556 fb->Attachment[BUFFER_DEPTH].Renderbuffer; in _mesa_update_framebuffer_visual()
562 if (fb->Attachment[BUFFER_STENCIL].Renderbuffer) { in _mesa_update_framebuffer_visual()
[all …]
Dfbobject.c222 return &fb->Attachment[BUFFER_COLOR0 + i]; in _mesa_get_attachment()
228 return &fb->Attachment[BUFFER_DEPTH]; in _mesa_get_attachment()
230 return &fb->Attachment[BUFFER_STENCIL]; in _mesa_get_attachment()
249 return &fb->Attachment[BUFFER_FRONT_LEFT]; in _mesa_get_fb0_attachment()
251 return &fb->Attachment[BUFFER_FRONT_RIGHT]; in _mesa_get_fb0_attachment()
253 return &fb->Attachment[BUFFER_BACK_LEFT]; in _mesa_get_fb0_attachment()
255 return &fb->Attachment[BUFFER_BACK_RIGHT]; in _mesa_get_fb0_attachment()
258 return &fb->Attachment[BUFFER_AUX0]; in _mesa_get_fb0_attachment()
287 return &fb->Attachment[BUFFER_DEPTH]; in _mesa_get_fb0_attachment()
289 return &fb->Attachment[BUFFER_STENCIL]; in _mesa_get_fb0_attachment()
[all …]
/external/deqp/modules/glshared/
DglsFboUtil.hpp302 struct Attachment : public Config struct
304 Attachment (void) : target(GL_FRAMEBUFFER), imageName(0) {} in Attachment() function
317 struct RenderbufferAttachment : public Attachment
325 struct TextureAttachment : public Attachment
346 glw::GLenum attachmentType (const Attachment& att);
350 typedef std::map<glw::GLenum, const Attachment*> AttachmentMap;
365 void attach (glw::GLenum attPoint, const Attachment* att);
379 const config::Attachment* att);
419 virtual void check (glw::GLenum attPoint, const config::Attachment& att,
/external/chromium_org/ui/login/account_picker/
Dscreen_account_picker.js146 cr.ui.Bubble.Attachment.RIGHT,
159 cr.ui.Bubble.Attachment.BOTTOM,
167 cr.ui.Bubble.Attachment.TOP,
220 cr.ui.Bubble.Attachment.BOTTOM,

1234567