HomeSort by relevance Sort by last modified time
    Searched defs:attachments (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/sync/api/attachments/
fake_attachment_store_unittest.cc 5 #include "sync/api/attachments/fake_attachment_store.h"
12 #include "sync/api/attachments/attachment.h"
26 scoped_ptr<AttachmentMap> attachments; member in class:syncer::FakeAttachmentStoreTest
44 &attachments,
65 attachments.reset();
87 // Verify that we do not overwrite existing attachments and that we do not treat
90 // Create two attachments with the same id but different data.
115 EXPECT_EQ(attachments->size(), 1U);
117 AttachmentMap::const_iterator a1 = attachments->find(attachment1.GetId());
118 EXPECT_TRUE(a1 != attachments->end())
    [all...]
  /external/chromium_org/components/feedback/
feedback_common.h 76 size_t attachments() const { return attachments_.size(); } function in class:FeedbackCommon
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_context.c 251 unsigned int attachments[10]; local
260 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
262 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
264 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
266 attachments[i++] = __DRI_BUFFER_DEPTH;
268 attachments[i++] = __DRI_BUFFER_STENCIL;
271 attachments, i, &count,
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_context.c 251 unsigned int attachments[10]; local
260 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
262 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
264 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
266 attachments[i++] = __DRI_BUFFER_DEPTH;
268 attachments[i++] = __DRI_BUFFER_STENCIL;
271 attachments, i, &count,
  /device/asus/fugu/kernel-headers/linux/
kct.h 70 struct ct_attchmt attachments[]; member in struct:ct_event
90 #define foreach_attchmt(Event, Attchmt) if ((Event)->attchmt_size) for ((Attchmt) = (Event)->attachments; (Attchmt) < (typeof(Attchmt))(((char *) (Event)->attachments) + (Event)->attchmt_size); (Attchmt) = (typeof(Attchmt))KCT_ALIGN(((size_t)(Attchmt)) + sizeof(*(Attchmt)) + (Attchmt)->size, ATTCHMT_ALIGNMENT))
  /device/asus/fugu/original-kernel-headers/linux/
kct.h 59 struct ct_attchmt attachments[]; member in struct:ct_event
84 for ((Attchmt) = (Event)->attachments; \
86 (Event)->attachments) + \
  /external/chromium_org/sync/internal_api/attachments/
attachment_service_impl_unittest.cc 5 #include "sync/internal_api/public/attachments/attachment_service_impl.h"
12 #include "sync/internal_api/public/attachments/fake_attachment_downloader.h"
13 #include "sync/internal_api/public/attachments/fake_attachment_uploader.h"
30 virtual void Write(const AttachmentList& attachments,
32 write_attachments.push_back(attachments);
41 // Respond to Read request. Attachments found in local_attachments should be
50 scoped_ptr<AttachmentMap> attachments(new AttachmentMap());
57 attachments->insert(std::make_pair(*iter, attachment));
69 base::Passed(&attachments),
76 AttachmentList attachments = write_attachments.back() local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_winsys_dri.c 71 static const unsigned int attachments[1] = { XCB_DRI2_ATTACHMENT_BUFFER_BACK_LEFT }; variable
135 scrn->buffers_cookie = xcb_dri2_get_buffers_unchecked(scrn->conn, scrn->drawable, 1, 1, attachments);
190 cookie = xcb_dri2_get_buffers_unchecked(scrn->conn, drawable, 1, 1, attachments);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
dri2.c 92 unsigned attachments[10]; local
102 attachments[num_attachments++] = __DRI_BUFFER_FRONT_LEFT;
175 attachments[num_attachments++] = att;
177 attachments[num_attachments++] = depth;
186 attachments, num_attachments,
192 attachments, num_attachments,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_context.c 929 unsigned *attachments = calloc(2 * max_attachments, sizeof(unsigned)); local
940 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
941 attachments[i++] = intel_bits_per_pixel(front_rb);
945 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
946 attachments[i++] = intel_bits_per_pixel(back_rb);
954 attachments, i / 2,
957 free(attachments);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common_context.c 344 unsigned int attachments[10]; local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
392 attachments[i++] = radeon_bits_per_pixel(depth_rb);
394 attachments[i++] = __DRI_BUFFER_DEPTH;
395 attachments[i++] = radeon_bits_per_pixel(depth_rb);
397 attachments[i++] = __DRI_BUFFER_STENCIL
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboStateQueryTests.cpp 173 const GLenum attachments[] = local
186 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(attachments); ++ndx)
189 glGetFramebufferAttachmentParameteriv(m_framebufferTarget, attachments[ndx], GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE, &state);
    [all...]
es3fFboInvalidateTests.cpp 56 vector<deUint32> attachments; local
59 attachments.push_back(GL_COLOR);
62 attachments.push_back(GL_DEPTH);
65 attachments.push_back(GL_STENCIL);
67 return attachments;
72 vector<deUint32> attachments; local
75 attachments.push_back(GL_COLOR_ATTACHMENT0);
79 attachments.push_back(GL_DEPTH_STENCIL_ATTACHMENT);
81 attachments.push_back(GL_DEPTH_ATTACHMENT);
83 attachments.push_back(GL_STENCIL_ATTACHMENT)
148 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
220 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
314 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
368 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
473 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
584 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
718 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
844 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
948 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
1105 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_dri.c 71 static const unsigned int attachments[1] = { XCB_DRI2_ATTACHMENT_BUFFER_BACK_LEFT }; variable
135 scrn->buffers_cookie = xcb_dri2_get_buffers_unchecked(scrn->conn, scrn->drawable, 1, 1, attachments);
190 cookie = xcb_dri2_get_buffers_unchecked(scrn->conn, drawable, 1, 1, attachments);
  /external/mesa3d/src/gallium/state_trackers/dri/drm/
dri2.c 92 unsigned attachments[10]; local
102 attachments[num_attachments++] = __DRI_BUFFER_FRONT_LEFT;
175 attachments[num_attachments++] = att;
177 attachments[num_attachments++] = depth;
186 attachments, num_attachments,
192 attachments, num_attachments,
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_context.c 929 unsigned *attachments = calloc(2 * max_attachments, sizeof(unsigned)); local
940 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
941 attachments[i++] = intel_bits_per_pixel(front_rb);
945 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
946 attachments[i++] = intel_bits_per_pixel(back_rb);
954 attachments, i / 2,
957 free(attachments);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.c 344 unsigned int attachments[10]; local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
392 attachments[i++] = radeon_bits_per_pixel(depth_rb);
394 attachments[i++] = __DRI_BUFFER_DEPTH;
395 attachments[i++] = radeon_bits_per_pixel(depth_rb);
397 attachments[i++] = __DRI_BUFFER_STENCIL
    [all...]
  /external/deqp/modules/gles31/functional/
es31fNegativeBufferApiTests.cpp 1329 deUint32 attachments[2]; local
1364 deUint32 attachments[2]; local
    [all...]
  /bionic/libc/kernel/uapi/video/
adf.h 125 struct adf_attachment_config __user *attachments; member in struct:adf_device_data
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_framebuffers.cc 2139 const GLenum attachments[] = {GL_COLOR_ATTACHMENT0}; local
2171 const GLenum attachments[] = {GL_COLOR_EXT}; local
2257 const GLenum attachments[] = {GL_COLOR_ATTACHMENT0}; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
platform_x11.c 374 unsigned int *attachments, int count,
388 count, count, attachments);
407 unsigned int *attachments, int count,
420 format_attachments = (xcb_dri2_attach_format_t *) attachments;
866 unsigned int attachments[1]; local
880 attachments[0] = XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT;
883 drawable, 1, 1, attachments);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-javamail.jar 
  /external/kernel-headers/original/uapi/video/
adf.h 217 * @n_attachments: the number of current attachments
218 * @attachments: list of current attachments
219 * @n_allowed_attachments: the number of allowed attachments
220 * @allowed_attachments: list of allowed attachments
228 struct adf_attachment_config __user *attachments; member in struct:adf_device_data
  /external/mesa3d/src/egl/drivers/dri2/
platform_x11.c 374 unsigned int *attachments, int count,
388 count, count, attachments);
407 unsigned int *attachments, int count,
420 format_attachments = (xcb_dri2_attach_format_t *) attachments;
866 unsigned int attachments[1]; local
880 attachments[0] = XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT;
883 drawable, 1, 1, attachments);
    [all...]
  /external/deqp/modules/glshared/
glsFboUtil.hpp 147 //! Configurations for framebuffer objects and their attachments.
361 AttachmentMap attachments; member in struct:deqp::gls::FboUtil::config::Framebuffer

Completed in 1157 milliseconds

1 2