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

1 2 3 4 5 6 7 8 91011

  /packages/apps/Dialer/java/com/android/incallui/incall/impl/
InCallPagerAdapter.java 31 @Nullable private MultimediaData attachments; field in class:InCallPagerAdapter
36 @Nullable MultimediaData attachments,
39 this.attachments = attachments;
48 attachments, true /* isInteractive */, false /* showAvatar */, false /* isSpam */);
55 attachments, true /* isInteractive */, false /* showAvatar */, false /* isSpam */);
65 if (attachments != null && attachments.hasData()) {
72 public void setAttachments(@Nullable MultimediaData attachments) {
73 if (this.attachments != attachments)
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_pass.c 42 size += pCreateInfo->attachmentCount * sizeof(pass->attachments[0]);
55 pass->attachments = (void *) pass + attachments_offset;
69 struct anv_render_pass_attachment *att = &pass->attachments[i];
120 pass->attachments[a].usage |= VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT;
121 pass->attachments[a].subpass_usage[i] |= ANV_SUBPASS_USAGE_INPUT;
122 pass->attachments[a].last_subpass_idx = i;
139 pass->attachments[a].usage |= VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
140 pass->attachments[a].subpass_usage[i] |= ANV_SUBPASS_USAGE_DRAW;
141 pass->attachments[a].last_subpass_idx = i;
157 pass->attachments[color_att].usage |
    [all...]
genX_cmd_buffer.c 395 * Setup anv_cmd_state::attachments for vkCmdBeginRenderPass.
405 vk_free(&cmd_buffer->pool->alloc, state->attachments);
408 state->attachments = NULL;
412 state->attachments = vk_alloc(&cmd_buffer->pool->alloc,
414 sizeof(state->attachments[0]),
416 if (state->attachments == NULL) {
424 if (vk_format_is_color(pass->attachments[i].format)) {
434 if (need_input_attachment_state(&pass->attachments[i]))
454 if (vk_format_is_color(pass->attachments[i].format)) {
455 state->attachments[i].color_rt_state = next_state
    [all...]
  /external/skia/src/gpu/vk/
GrVkFramebuffer.cpp 23 VkImageView attachments[3]; local
24 attachments[0] = colorAttachment->imageView();
27 attachments[numAttachments++] = stencilAttachment->imageView();
37 createInfo.pAttachments = attachments;
GrVkRenderPass.cpp 57 SkTArray<VkAttachmentDescription> attachments(numAttachments);
58 attachments.reset(numAttachments);
59 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription));
61 // Refs to attachments on the render pass (as described by teh VkAttachmentDescription above),
80 setup_vk_attachment_description(&attachments[currentAttachment],
103 setup_vk_attachment_description(&attachments[currentAttachment],
130 createInfo.pAttachments = attachments.begin();
160 // Get attachment information from render target. This includes which attachments the render
161 // target has (color, stencil) and the attachments format and sample count.
  /external/skqp/src/gpu/vk/
GrVkFramebuffer.cpp 23 VkImageView attachments[3]; local
24 attachments[0] = colorAttachment->imageView();
27 attachments[numAttachments++] = stencilAttachment->imageView();
37 createInfo.pAttachments = attachments;
GrVkRenderPass.cpp 57 SkTArray<VkAttachmentDescription> attachments(numAttachments);
58 attachments.reset(numAttachments);
59 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription));
61 // Refs to attachments on the render pass (as described by teh VkAttachmentDescription above),
80 setup_vk_attachment_description(&attachments[currentAttachment],
103 setup_vk_attachment_description(&attachments[currentAttachment],
130 createInfo.pAttachments = attachments.begin();
160 // Get attachment information from render target. This includes which attachments the render
161 // target has (color, stencil) and the attachments format and sample count.
  /external/toolchain-utils/cros_utils/
email_sender.py 37 attachments=None):
41 email_from, msg_type, attachments)
44 email_from, msg_type, attachments)
47 email_from, msg_type, attachments):
68 if attachments:
69 for attachment in attachments:
84 email_from, msg_type, attachments):
123 if attachments:
125 for attachment in attachments:
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGranularityTests.cpp 82 const std::vector<AttachmentInfo>& attachments,
107 const std::vector<AttachmentInfo>& attachments,
110 , m_attachments (attachments)
382 const std::vector<AttachmentInfo>& attachments,
395 const std::vector<AttachmentInfo>& attachments,
398 , m_attachments (attachments)
487 std::vector<AttachmentInfo> attachments; local
488 attachments.push_back(AttachmentInfo(format, rnd.getInt(1, maxDimension), rnd.getInt(1, maxDimension), 1));
489 single->addChild(new GranularityCase(testCtx, name.c_str(), description, attachments));
493 std::vector<AttachmentInfo> attachments; local
501 std::vector<AttachmentInfo> attachments; local
510 std::vector<AttachmentInfo> attachments; local
    [all...]
  /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/libmojo/ipc/
ipc_message_attachment_set.cc 21 const std::vector<scoped_refptr<MessageAttachment>>& attachments,
24 for (const scoped_refptr<MessageAttachment>& attachment : attachments) {
49 LOG(WARNING) << "MessageAttachmentSet destroyed with unconsumed attachments: "
  /external/mesa3d/src/glx/
dri2.h 73 unsigned int *attachments, int count,
83 unsigned int *attachments,
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.c 363 unsigned int attachments[10]; local
396 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
397 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
402 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
403 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
410 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
411 attachments[i++] = radeon_bits_per_pixel(depth_rb);
413 attachments[i++] = __DRI_BUFFER_DEPTH;
414 attachments[i++] = radeon_bits_per_pixel(depth_rb);
416 attachments[i++] = __DRI_BUFFER_STENCIL
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/multiview/
vktMultiViewRenderUtil.cpp 127 const vector<VkImageView>& attachments,
138 static_cast<deUint32>(attachments.size()), // uint32_t attachmentCount;
139 &attachments[0], // const VkImageView* pAttachments;
310 vector<VkAttachmentDescription> attachments; local
311 attachments.push_back(colorAttachmentDescription);
312 attachments.push_back(inputAttachmentDescription);
381 &attachments[0], // const VkAttachmentDescription* pAttachments;
  /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 91 private void loadWith(final List<MessagePartData> attachments) {
97 Mockito.doReturn(attachments)
140 final List<MessagePartData> attachments = TestDataFactory.getTestDraftAttachments(); local
141 loadWith(attachments);
144 assertEquals("bad view count", attachments.size(),
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
LeakReporter.java 121 // create the ClipData object with the attachments URIs.
127 final ArrayList<Uri> attachments = Lists.newArrayList(dumpUri); local
130 attachments.add(hprofUri);
133 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);
  /external/mesa3d/src/gbm/backends/dri/
gbm_driint.h 72 unsigned int *attachments, int count,
77 unsigned int *attachments, int count,
  /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/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
PVRShellAPI.h 79 typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, const GLenum *attachments);

Completed in 959 milliseconds

1 2 3 4 5 6 7 8 91011