Home
last modified time | relevance | path

Searched refs:offMs (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
DNotificationBuilderTest.java366 int offMs; in buildNotification() local
370 offMs = 1300; in buildNotification()
374 offMs = 300; in buildNotification()
378 offMs = 0; in buildNotification()
383 offMs = 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/
DNotificationRecord.java1308 public final int offMs; field in NotificationRecord.Light
1310 public Light(int color, int onMs, int offMs) { in Light() argument
1313 this.offMs = offMs; in Light()
1325 return offMs == light.offMs; in equals()
1333 result = 31 * result + offMs; in hashCode()
1342 ", offMs=" + offMs + in toString()
DNotificationManagerService.java7183 light.onMs, light.offMs);
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationRecordTest.java156 builder.setLights(CUSTOM_LIGHT.color, CUSTOM_LIGHT.onMs, CUSTOM_LIGHT.offMs); in getNotification()
/frameworks/base/core/java/android/app/
DNotification.java4125 public Builder setLights(@ColorInt int argb, int onMs, int offMs) { in setLights() argument
4128 mN.ledOffMS = offMs; in setLights()
4129 if (onMs != 0 || offMs != 0) { in setLights()