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

/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.java113 // The system process runs at the default adjustment.
603 long getMemLevel(int adjustment) { argument
605 if (adjustment <= mOomAdj[i]) {
621 * Set the out-of-memory badness adjustment for a process.
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java782 final long adjustment = frameTime - mLastFrameTime;
785 mAnimations.get(i).commitAnimationFrame(adjustment);
1319 * Applies an adjustment to the animation to compensate for jank between when
1322 void commitAnimationFrame(long adjustment) { argument
1325 if (mPlayingState == RUNNING && adjustment > 0) {
1326 mStartTime += adjustment;
1328 Log.d(TAG, "Adjusted start time by " + adjustment + " ms: " + toString());
/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.
52 // The maximum range of gamma adjustment possible using the screen
53 // auto-brightness adjustment setting.
74 // If true, enables the use of the current time as an auto-brightness adjustment.
82 // Specifies the maximum magnitude of the time of day adjustment.
87 // threshold of perceptibility and so that the adjustment has maximum effect
110 // The auto-brightness spline adjustment.
179 // The screen auto-brightness adjustment factor in the range -1 (dimmer) to 1 (brighter)
188 // True if we are collecting a brightness adjustment sample, along with some data
233 public void configure(boolean enable, float adjustment, boolea argument
320 setScreenAutoBrightnessAdjustment(float adjustment) argument
[all...]

Completed in 150 milliseconds