/external/skia/src/gpu/vk/ |
GrVkFramebuffer.cpp | 24 VkImageView attachments[3]; local 25 attachments[0] = colorAttachment->imageView(); 28 attachments[numAttachments++] = resolveAttachment->imageView(); 31 attachments[numAttachments++] = stencilAttachment->imageView(); 41 createInfo.pAttachments = attachments;
|
GrVkRenderPass.cpp | 31 // Get attachment information from render target. This includes which attachments the render 32 // target has (color, resolve, stencil) and the attachments format and sample count. 37 SkTArray<VkAttachmentDescription> attachments(numAttachments); 38 attachments.reset(numAttachments); 39 memset(attachments.begin(), 0, numAttachments*sizeof(VkAttachmentDescription)); 41 // Refs to attachments on the render pass (as described by teh VkAttachmentDescription above), 58 setup_simple_vk_attachment_description(&attachments[currentAttachment], 77 setup_simple_vk_attachment_description(&attachments[currentAttachment], 92 setup_simple_vk_attachment_description(&attachments[currentAttachment], 117 createInfo.pAttachments = attachments.begin() [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/ |
internetgateway.py | 33 self.attachments = [] 46 self.attachments = ResultSet([('item', InternetGatewayAttachment)]) 47 return self.attachments
|
vpngateway.py | 53 self.attachments = [] 64 self.attachments.append(att) 76 elif name == 'attachments':
|
/packages/apps/Email/tests/src/com/android/email/ |
LegacyConversionsTests.java | 80 * Sunny day test of adding attachments from an IMAP/POP message. 83 // Prepare a local message to add the attachments to 107 ArrayList<Part> attachments = new ArrayList<Part>(); local 108 MimeUtility.collectParts(legacyMessage, viewables, attachments); 109 LegacyConversions.updateAttachments(mProviderContext, localMessage, attachments); 111 // Read back all attachments for message and check field values 121 checkAttachment("attachment1Part", attachments.get(0), attachment, 124 checkAttachment("attachment2Part", attachments.get(1), attachment, 136 * Test that only "attachment" or "inline" attachments are captured and added. 141 // Prepare a local message to add the attachments t 202 ArrayList<Part> attachments = new ArrayList<Part>(); local 386 ArrayList<Part> attachments = new ArrayList<Part>(); local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
MessageFooterView.java | 131 // we're only updating the attachments. 161 final List<Attachment> attachments; local 164 attachments = Lists.newArrayList(); 166 attachments.add(mAttachmentsCursor.get()); 171 attachments = mMessageHeaderItem.getMessage().getAttachments(); 173 renderAttachments(attachments, loaderResult); 176 private void renderAttachments(List<Attachment> attachments, boolean loaderResult) { 177 if (attachments == null || attachments.isEmpty()) { 181 // filter the attachments into tiled and non-tile [all...] |
/external/mesa3d/src/gbm/backends/dri/ |
gbm_driint.h | 62 unsigned int *attachments, int count, 67 unsigned int *attachments, int count,
|
/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/mesa3d/src/glx/ |
dri2.h | 70 unsigned int *attachments, int count, 80 unsigned int *attachments,
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/ |
Rfc822Output.java | 121 * @param attachments list of attachments to send (or null if retrieved from the message itself) 124 boolean useSmartReply, boolean sendBcc, List<Attachment> attachments) 159 // If a list of attachments hasn't been passed in, build one from the message 160 if (attachments == null) { 161 attachments = 165 final boolean multipart = attachments.size() > 0; 176 if (attachments.size() == 1) { 179 final int flags = attachments.get(0).mFlags; 196 // Write out the attachments until we run ou [all...] |
/packages/apps/Messaging/tests/src/com/android/messaging/ui/attachmentchooser/ |
AttachmentChooserFragmentTest.java | 93 private void loadWith(final List<MessagePartData> attachments) { 99 Mockito.doReturn(attachments) 142 final List<MessagePartData> attachments = TestDataFactory.getTestDraftAttachments(); local 143 loadWith(attachments); 146 assertEquals("bad view count", attachments.size(),
|
/packages/apps/Messaging/tests/src/com/android/messaging/ui/ |
MultiAttachmentLayoutTest.java | 114 private Iterable<MessagePartData> createAttachmentList(final MessagePartData... attachments) { 115 return Collections.unmodifiableList(Arrays.asList(attachments));
|
/packages/apps/UnifiedEmail/src/com/android/mail/print/ |
HtmlPrintTemplates.java | 81 String recipients, String bodyHtml, String attachments) { 82 append(mMessage, senderName, senderAddress, date, recipients, bodyHtml, attachments);
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
MessageModification.java | 158 public static void putAttachments(ContentValues values, List<Attachment> attachments) { 159 values.put(MessageColumns.ATTACHMENTS, Attachment.toJSONArray(attachments));
|
/external/deqp/modules/gles3/functional/ |
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...] |
es3fFragmentOutputTests.cpp | 24 * + non-contiguous attachments in framebuffer 245 // Check that all attachments are supported 570 vector<AttachmentData> attachments (numAttachments); 587 attachments[ndx].format = texFmt; 588 attachments[ndx].readFormat = readFmt; 589 attachments[ndx].referenceFormat = refFmt; 590 attachments[ndx].renderedData.resize(readFmt.getPixelSize()*attachmentW*attachmentH); 591 attachments[ndx].referenceData.resize(refFmt.getPixelSize()*attachmentW*attachmentH); 639 DE_ASSERT(output.location+vecNdx < (int)attachments.size()); 640 attachments[output.location+vecNdx].numWrittenChannels = numScalars [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
Mailer.java | 166 // a method for sending mail with attachments 167 String aSubject, String aMessage, String[] attachments) { 214 for (int i = 0; i < attachments.length; i++) { 217 FileDataSource attachment = new FileDataSource(attachments[i]); 219 File attachmentFile=new File(attachments[i]);
|
/hardware/intel/common/libva/va/x11/ |
dri2_util.c | 120 unsigned int attachments[5]; local 125 attachments[i++] = __DRI_BUFFER_BACK_LEFT; 127 attachments[i++] = __DRI_BUFFER_FRONT_LEFT; 131 attachments, i, &count);
|
va_dri2.h | 65 unsigned int *attachments, int count,
|
/external/mesa3d/src/egl/drivers/dri2/ |
platform_drm.c | 245 unsigned int *attachments, int count, 253 assert(attachments[i] < __DRI_BUFFER_COUNT); 256 switch (attachments[i]) { 264 if (get_aux_bo(dri2_surf, attachments[i], attachments[i + 1], 286 unsigned int *attachments, int count, 301 attachments_with_format[2*i] = attachments[i];
|
platform_wayland.c | 424 unsigned int *attachments, int count, 456 assert(attachments[i] < __DRI_BUFFER_COUNT); 459 dri2_prior_buffer_creation(dri2_surf, attachments[i]); 461 if (dri2_surf->dri_buffers[attachments[i]] == NULL) { 463 dri2_surf->dri_buffers[attachments[i]] = 465 attachments[i], attachments[i+1], 468 if (!dri2_surf->dri_buffers[attachments[i]]) 471 if (attachments[i] == __DRI_BUFFER_BACK_LEFT) 472 dri2_process_back_buffer(dri2_surf, attachments[i+1]) [all...] |
/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,
|
/packages/apps/Messaging/src/com/android/messaging/ui/ |
MultiAttachmentLayout.java | 46 * Holds and displays multiple attachments in a 4x2 grid. Each preview image "tile" can take 48 * layout settings designed for holding 2, 3, 4+ attachments (these layout settings are 128 * List of predefined layout configurations w.r.t no. of attachments. 131 null, // Doesn't support zero attachments. 140 * List of predefined RTL layout configurations w.r.t no. of attachments. 143 null, // Doesn't support zero attachments. 163 public void bindAttachments(final Iterable<MessagePartData> attachments, 170 determineLayout(attachments, count); 171 buildViews(attachments, previousViews, transitionRect); 208 private void determineLayout(final Iterable<MessagePartData> attachments, final int count) [all...] |
/external/deqp/framework/opengl/ |
gluStrUtil.cpp | 121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments) 123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-javamail.jar | |