Searched refs:nightMode (Results 1 – 4 of 4) sorted by relevance
367 NightMode nightMode = mParent.getNightMode(); in getNightMode() local368 if (isAlternatingNightMode() && nightMode != null) { in getNightMode()369 nightMode = nightMode == NightMode.NIGHT ? NightMode.NOTNIGHT : NightMode.NIGHT; in getNightMode()370 return nightMode; in getNightMode()372 return nightMode; in getNightMode()
109 public NightMode nightMode = NightMode.NOTNIGHT; field in ConfigurationDescription249 description.nightMode = NightMode.getEnum(nightModeString); in fromXml()250 if (description.nightMode == null) { in fromXml()251 description.nightMode = NightMode.NOTNIGHT; in fromXml()308 if (nightMode != null && nightMode != NightMode.NOTNIGHT) { in toXml()309 element.setAttribute(ATTR_NIGHTMODE, nightMode.getResourceValue()); in toXml()
596 NightMode nightMode = getNightMode(); in syncFolderConfig() local597 if (nightMode != null) { in syncFolderConfig()598 mFullConfig.setNightModeQualifier(new NightModeQualifier(nightMode)); in syncFolderConfig()659 NightMode nightMode = getNightMode(); in toPersistentString() local660 if (nightMode != null) { in toPersistentString()661 sb.append(nightMode.getResourceValue()); in toPersistentString()
173 description.nightMode != null ? description.nightMode in createPreviews()