Searched defs:adjustment (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/service/notification/
H A DNotificationRankerService.java137 * @return an adjustment or null to take no action, within 100ms.
193 * @param adjustment the adjustment with an explanation
195 public final void adjustNotification(Adjustment adjustment) { argument
198 getNotificationInterface().applyAdjustmentFromRankerService(mWrapper, adjustment);
300 Adjustment adjustment = onNotificationEnqueued(sbn, importance, user);
301 if (adjustment != null) {
302 adjustNotification(adjustment);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DResizingTextView.java150 * @return desired adjustment to top padding for resized text
157 * Set the desired adjustment to top padding for resized text.
159 * @param adjustment The adjustment to top padding, in pixels
161 public void setResizedPaddingAdjustmentTop(int adjustment) { argument
162 if (mResizedPaddingAdjustmentTop != adjustment) {
163 mResizedPaddingAdjustmentTop = adjustment;
169 * @return desired adjustment to bottom padding for resized text
176 * Set the desired adjustment to bottom padding for resized text.
178 * @param adjustment Th
180 setResizedPaddingAdjustmentBottom(int adjustment) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java117 // The system process runs at the default adjustment.
614 long getMemLevel(int adjustment) { argument
616 if (adjustment <= mOomAdj[i]) {
632 * Set the out-of-memory badness adjustment for a process.
/frameworks/base/services/core/java/com/android/server/display/
H A DAutomaticBrightnessController.java49 // If true, enables the use of the screen auto-brightness adjustment setting.
63 // Specifies the maximum magnitude of the time of day adjustment.
85 // The auto-brightness spline adjustment.
164 // The screen auto-brightness adjustment factor in the range -1 (dimmer) to 1 (brighter)
167 // The maximum range of gamma adjustment possible using the screen
168 // auto-brightness adjustment setting.
177 // True if we are collecting a brightness adjustment sample, along with some data
227 public void configure(boolean enable, float adjustment, boolean dozing, argument
236 changed |= setScreenAutoBrightnessAdjustment(adjustment);
336 private boolean setScreenAutoBrightnessAdjustment(float adjustment) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java2155 Adjustment adjustment) throws RemoteException {
2160 applyAdjustmentLocked(adjustment);
2162 maybeAddAutobundleSummary(adjustment);
2177 for (Adjustment adjustment : adjustments) {
2178 applyAdjustmentLocked(adjustment);
2181 for (Adjustment adjustment : adjustments) {
2182 maybeAddAutobundleSummary(adjustment);
2191 private void applyAdjustmentLocked(Adjustment adjustment) { argument
2192 maybeClearAutobundleSummaryLocked(adjustment);
2193 NotificationRecord n = mNotificationsByKey.get(adjustment
2214 maybeClearAutobundleSummaryLocked(Adjustment adjustment) argument
2235 maybeAddAutobundleSummary(Adjustment adjustment) argument
[all...]

Completed in 191 milliseconds