Searched refs:DEFAULT_VIBRATE (Results 1 - 10 of 10) sorted by relevance

/frameworks/support/compat/src/androidTest/java/androidx/core/app/
H A DNotificationCompatTest.java22 import static androidx.core.app.NotificationCompat.DEFAULT_VIBRATE;
376 assertTrue((n.defaults & DEFAULT_VIBRATE) == 0);
382 assertTrue((n2.defaults & DEFAULT_VIBRATE) == 0);
388 assertTrue((n.defaults & DEFAULT_VIBRATE) != 0);
394 assertTrue((n2.defaults & DEFAULT_VIBRATE) != 0);
431 assertTrue((n.defaults & DEFAULT_VIBRATE) != 0);
437 assertTrue((n2.defaults & DEFAULT_VIBRATE) != 0);
443 assertTrue((n3.defaults & DEFAULT_VIBRATE) != 0);
462 assertTrue((n.defaults & DEFAULT_VIBRATE) != 0);
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompatBuilder.java21 import static androidx.core.app.NotificationCompat.DEFAULT_VIBRATE;
421 notification.defaults &= ~DEFAULT_VIBRATE;
H A DNotificationCompat.java105 public static final int DEFAULT_VIBRATE = 2; field in class:NotificationCompat
1164 * {@link Notification#DEFAULT_SOUND}, {@link Notification#DEFAULT_VIBRATE},
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java430 defaults |= Notification.DEFAULT_VIBRATE;
H A DNotificationTestList.java982 .setDefaults(Notification.DEFAULT_VIBRATE)
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java277 (notification.defaults & Notification.DEFAULT_VIBRATE) != 0;
H A DNotificationUsageStats.java445 (n.defaults & Notification.DEFAULT_VIBRATE) != 0 ||
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DBuzzBeepBlinkTest.java274 defaults |= Notification.DEFAULT_VIBRATE;
H A DNotificationRecordTest.java150 defaults |= Notification.DEFAULT_VIBRATE;
/frameworks/base/core/java/android/app/
H A DNotification.java180 public static final int DEFAULT_VIBRATE = 2; field in class:Notification
492 * {@link #DEFAULT_VIBRATE}, {@link #DEFAULT_LIGHTS}. For all default
2885 if ((this.defaults & DEFAULT_VIBRATE) != 0) {
3944 * {@link #DEFAULT_SOUND}, {@link #DEFAULT_VIBRATE}, {@link #DEFAULT_LIGHTS}.

Completed in 2412 milliseconds