HomeSort by relevance Sort by last modified time
    Searched full:attachmentstate (Results 1 - 17 of 17) sorted by null

  /external/skia/src/gpu/vk/
GrVkPipeline.cpp 324 VkPipelineColorBlendAttachmentState* attachmentState) {
334 memset(attachmentState, 0, sizeof(VkPipelineColorBlendAttachmentState));
335 attachmentState->blendEnable = !blendOff;
337 attachmentState->srcColorBlendFactor = blend_coeff_to_vk_blend(srcCoeff);
338 attachmentState->dstColorBlendFactor = blend_coeff_to_vk_blend(dstCoeff);
339 attachmentState->colorBlendOp = blend_equation_to_vk_blend_op(equation);
340 attachmentState->srcAlphaBlendFactor = blend_coeff_to_vk_blend(srcCoeff);
341 attachmentState->dstAlphaBlendFactor = blend_coeff_to_vk_blend(dstCoeff);
342 attachmentState->alphaBlendOp = blend_equation_to_vk_blend_op(equation);
346 attachmentState->colorWriteMask = 0
    [all...]
GrVkCopyPipeline.cpp 102 static const VkPipelineColorBlendAttachmentState attachmentState = {
121 &attachmentState, // pAttachments
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentActionHandler.java 39 import com.android.mail.providers.UIProvider.AttachmentState;
127 params.put(AttachmentColumns.STATE, AttachmentState.DOWNLOADING);
138 params.put(AttachmentColumns.STATE, AttachmentState.NOT_SAVED);
145 params.put(AttachmentColumns.STATE, AttachmentState.REDOWNLOADING);
199 if (mAttachment.state == AttachmentState.SAVED && mViewOnFinish) {
AttachmentProgressDialogFragment.java 28 import com.android.mail.providers.UIProvider.AttachmentState;
96 params.put(AttachmentColumns.STATE, AttachmentState.NOT_SAVED);
MessageAttachmentBar.java 47 import com.android.mail.providers.UIProvider.AttachmentState;
420 if (mAttachment.state == AttachmentState.FAILED) {
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 35 import com.android.mail.providers.UIProvider.AttachmentState;
264 state = AttachmentState.SAVED;
430 return state == AttachmentState.SAVED;
442 return state == AttachmentState.DOWNLOADING || state == AttachmentState.PAUSED;
446 return state == AttachmentState.SAVED && destination == AttachmentDestination.EXTERNAL;
454 return (state == AttachmentState.DOWNLOADING || state == AttachmentState.PAUSED)
459 return state == AttachmentState.FAILED;
463 return state == AttachmentState.FAILED || state == AttachmentState.SAVED
    [all...]
UIProvider.java     [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
Pop3Service.java 56 import com.android.mail.providers.UIProvider.AttachmentState;
83 if (att == null || att.mUiState != AttachmentState.DOWNLOADING) return;
395 AttachmentColumns.UI_STATE + "=" + AttachmentState.DOWNLOADING,
400 values.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.SAVED);
422 values.put(AttachmentColumns.UI_STATE, AttachmentState.SAVED);
EmailServiceStub.java 147 && attachment.mUiState == UIProvider.AttachmentState.SAVED) {
239 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.FAILED);
AttachmentService.java 49 import com.android.mail.providers.UIProvider.AttachmentState;
516 values.put(AttachmentColumns.UI_STATE, AttachmentState.DOWNLOADING);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
MailPhotoViewController.java 259 if (attachment.state == UIProvider.AttachmentState.PAUSED) {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 457 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.SAVED);
460 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.FAILED);
  /packages/apps/Email/tests/src/com/android/email/service/
AttachmentServiceTests.java 493 UIProvider.AttachmentState.DOWNLOADING);
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolOcclusionTests.cpp 176 const PipelineCreateInfo::ColorBlendState::Attachment attachmentState;
211 pipelineCreateInfo.addState(PipelineCreateInfo::ColorBlendState(1, &attachmentState));
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
LegacyConversions.java 360 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.SAVED);
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]
DBHelper.java     [all...]

Completed in 888 milliseconds