HomeSort by relevance Sort by last modified time
    Searched defs:constrain (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/java/android/util/
MathUtils.java 38 public static int constrain(int amount, int low, int high) { method in class:MathUtils
42 public static long constrain(long amount, long low, long high) { method in class:MathUtils
46 public static float constrain(float amount, float low, float high) { method in class:MathUtils
  /frameworks/base/wifi/java/android/net/wifi/
BatchedScanSettings.java 139 public void constrain() { method in class:BatchedScanSettings
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 78 #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt))) macro
  /external/chromium_org/third_party/pexpect/
screen.py 46 def constrain (n, min, max): function
107 rs = constrain (rs, 1, self.rows)
108 re = constrain (re, 1, self.rows)
109 cs = constrain (cs, 1, self.cols)
110 ce = constrain (ce, 1, self.cols)
157 r = constrain (r, 1, self.rows)
158 c = constrain (c, 1, self.cols)
176 r = constrain (r, 1, self.rows)
177 c = constrain (c, 1, self.cols)
188 r = constrain (r, 1, self.rows
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
PopupZoomer.java 157 private static float constrain(float amount, float low, float high) { method in class:PopupZoomer
161 private static int constrain(int amount, int low, int high) { method in class:PopupZoomer
265 mPopupScrollX = constrain(mPopupScrollX - x, mMinScrollX, mMaxScrollX);
266 mPopupScrollY = constrain(mPopupScrollY - y, mMinScrollY, mMaxScrollY);
401 // Constrain initial scroll position within allowed bounds.
402 mPopupScrollX = constrain(mPopupScrollX, mMinScrollX, mMaxScrollX);
403 mPopupScrollY = constrain(mPopupScrollY, mMinScrollY, mMaxScrollY);
427 time = constrain(time, 0, 1);
487 int alpha = constrain((int) (fractionAnimation * 255), 0, 255);
  /frameworks/base/core/java/com/android/internal/widget/
AutoScrollHelper.java 60 * <li>Maximum size used to constrain relative size, see
74 * <li>Minimum velocity used to constrain relative velocity, see
78 * <li>Maximum velocity used to constrain relative velocity, see
361 * be used to constrain the calculated relative edge size.
382 * the maximum edge will be used to constrain the calculated relative edge
555 return constrain(value * targetVelocity, minimumVelocity, maximumVelocity);
557 return -constrain(-value * targetVelocity, minimumVelocity, maximumVelocity);
606 final float edgeSize = constrain(relativeValue * size, NO_MIN, maxValue);
619 return constrain(interpolated, -1, 1);
651 private static int constrain(int value, int min, int max) method in class:AutoScrollHelper
661 private static float constrain(float value, float min, float max) { method in class:AutoScrollHelper
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
AutoScrollHelper.java 61 * <li>Maximum size used to constrain relative size, see
75 * <li>Minimum velocity used to constrain relative velocity, see
79 * <li>Maximum velocity used to constrain relative velocity, see
362 * be used to constrain the calculated relative edge size.
383 * the maximum edge will be used to constrain the calculated relative edge
556 return constrain(value * targetVelocity, minimumVelocity, maximumVelocity);
558 return -constrain(-value * targetVelocity, minimumVelocity, maximumVelocity);
607 final float edgeSize = constrain(relativeValue * size, NO_MIN, maxValue);
620 return constrain(interpolated, -1, 1);
652 private static int constrain(int value, int min, int max) method in class:AutoScrollHelper
662 private static float constrain(float value, float min, float max) { method in class:AutoScrollHelper
    [all...]
  /frameworks/base/services/java/com/android/server/wifi/
WifiService.java 551 setting.constrain();
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 550 milliseconds