Home
last modified time | relevance | path

Searched refs:NotificationType (Results 1 – 6 of 6) sorted by relevance

/external/setupcompat/main/java/com/google/android/setupcompat/portal/
DNotificationComponent.java32 @NotificationType private final int notificationType;
35 private NotificationComponent(@NotificationType int notificationType) { in NotificationComponent()
48 @NotificationType
79 NotificationType.INITIAL_ONGOING,
80 NotificationType.PREDEFERRED,
81 NotificationType.PREDEFERRED_PREPARING,
82 NotificationType.DEFERRED,
83 NotificationType.DEFERRED_ONGOING,
84 NotificationType.PORTAL
86 public @interface NotificationType { annotation in NotificationComponent
[all …]
/external/swiftshader/src/Vulkan/
DVkDescriptorSet.hpp51 enum NotificationType enum in vk::DescriptorSet
56 …rray &descriptorSets, const PipelineLayout *layout, Device *device, NotificationType notificationT…
DVkDescriptorSet.cpp22 …rray &descriptorSets, const PipelineLayout *layout, Device *device, NotificationType notificationT… in ParseDescriptors()
/external/google-java-format/idea_plugin/src/com/google/googlejavaformat/intellij/
DInitialConfigurationProjectManagerListener.java22 import com.intellij.notification.NotificationType;
51 NotificationType.INFORMATION, in displayNewUserNotification()
/external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/
DErrorReporter.java28 import com.intellij.notification.NotificationType;
98 NotificationType.INFORMATION, in submit()
112 NotificationType.ERROR, in submit()
/external/rust/crates/tokio/src/sync/
Dnotify.rs121 enum NotificationType { enum
137 notified: Option<NotificationType>,
417 waiter.notified = Some(NotificationType::AllWaiters); in notify_waiters()
492 waiter.notified = Some(NotificationType::OneWaiter); in notify_locked()
703 if let Some(NotificationType::OneWaiter) = unsafe { (*waiter.get()).notified } { in drop()