Searched refs:onMs (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
D | NotificationBuilderTest.java | 365 int onMs; in buildNotification() local 369 onMs = 1300; in buildNotification() 373 onMs = 300; in buildNotification() 377 onMs = 1; in buildNotification() 382 onMs = 0; in buildNotification() 386 if (onMs != 0 && offMs != 0) { in buildNotification() 387 b.setLights(color, onMs, offMs); in buildNotification()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | NotificationRecord.java | 1307 public final int onMs; field in NotificationRecord.Light 1310 public Light(int color, int onMs, int offMs) { in Light() argument 1312 this.onMs = onMs; in Light() 1324 if (onMs != light.onMs) return false; in equals() 1332 result = 31 * result + onMs; in hashCode() 1341 ", onMs=" + onMs + in toString()
|
D | NotificationManagerService.java | 7183 light.onMs, light.offMs);
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationRecordTest.java | 156 builder.setLights(CUSTOM_LIGHT.color, CUSTOM_LIGHT.onMs, CUSTOM_LIGHT.offMs); in getNotification()
|
/frameworks/base/core/java/android/app/ |
D | Notification.java | 4125 public Builder setLights(@ColorInt int argb, int onMs, int offMs) { in setLights() argument 4127 mN.ledOnMS = onMs; in setLights() 4129 if (onMs != 0 || offMs != 0) { in setLights()
|