Searched refs:nightMode (Results 1 – 4 of 4) sorted by relevance
366 NightMode nightMode = mParent.getNightMode(); in getNightMode() local367 if (isAlternatingNightMode() && nightMode != null) { in getNightMode()368 nightMode = nightMode == NightMode.NIGHT ? NightMode.NOTNIGHT : NightMode.NIGHT; in getNightMode()369 return nightMode; in getNightMode()371 return nightMode; in getNightMode()
109 public NightMode nightMode = NightMode.NOTNIGHT; field in ConfigurationDescription246 description.nightMode = NightMode.getEnum(nightModeString); in fromXml()247 if (description.nightMode == null) { in fromXml()248 description.nightMode = NightMode.NOTNIGHT; in fromXml()305 if (nightMode != null && nightMode != NightMode.NOTNIGHT) { in toXml()306 element.setAttribute(ATTR_NIGHTMODE, nightMode.getResourceValue()); in toXml()
572 NightMode nightMode = getNightMode(); in syncFolderConfig() local573 if (nightMode != null) { in syncFolderConfig()574 mFullConfig.setNightModeQualifier(new NightModeQualifier(nightMode)); in syncFolderConfig()633 NightMode nightMode = getNightMode(); in toPersistentString() local634 if (nightMode != null) { in toPersistentString()635 sb.append(nightMode.getResourceValue()); in toPersistentString()
172 description.nightMode != null ? description.nightMode in createPreviews()