HomeSort by relevance Sort by last modified time
    Searched defs:maxValue (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/guava/guava/src/com/google/common/collect/
DiscreteDomain.java 28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
52 * {@code value} is {@code maxValue()}
110 public C maxValue() {
DiscreteDomains.java 65 @Override public Integer maxValue() {
112 @Override public Long maxValue() {
  /external/icu4c/common/
propsvec.h 163 int32_t maxValue;
  /external/skia/src/effects/
SkColorFilterImageFilter.cpp 39 SkScalar maxValue = row[4] / 255;
43 maxValue += row[i];
47 return (maxValue > 1) || (minValue < 0);
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIFailureInfo.java 97 private static int maxValue;
114 if (maxValue == 0) {
116 if (cur.value > maxValue) {
117 maxValue = cur.value;
120 return maxValue;
  /external/icu4c/tools/toolutil/
denseranges.cpp 106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue.
108 // signed-int32_t overflow of maxValue-minValue.
109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
113 ranges[0][1]=maxValue;
119 // See if we can split [minValue, maxValue] into 2..capacity ranges,
133 // the length of the [minValue..maxValue] range (maxLength).
156 ranges[num-1][1]=maxValue;
  /external/webkit/Source/WebCore/webaudio/
AudioParam.h 44 static PassRefPtr<AudioParam> create(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0)
46 return adoptRef(new AudioParam(name, defaultValue, minValue, maxValue, units));
49 AudioParam(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0)
54 , m_maxValue(maxValue)
68 float maxValue() const { return static_cast<float>(m_maxValue); }
  /external/webkit/Source/WebKit/chromium/public/mac/
WebThemeEngine.h 67 int maxValue;
  /external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 75 byte maxValue = (byte)(Byte.MAX_VALUE / (radix / 2));
83 if (result > maxValue) {
145 short maxValue = (short)(Short.MAX_VALUE / (radix / 2));
153 if (result > maxValue) {
209 int maxValue = Integer.MAX_VALUE / (radix / 2);
217 if (result > maxValue) {
279 long maxValue = Long.MAX_VALUE / (radix / 2);
287 if (result > maxValue) {
  /external/aac/libSBRenc/src/
ps_main.cpp 558 FIXP_QMF maxValue = FL2FXCONST_DBL(0.f);
606 maxValue = fixMax(maxValue,fixMax(maxVal[0][band],maxVal[1][band]));
612 *dmxScale = fixMin(DFRACT_BITS, CountLeadingBits(maxValue));
614 *dmxScale = fixMax(0,fixMin(FRACT_BITS, CountLeadingBits(FX_QMF2FX_DBL(maxValue))));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 97 double maxValue = 0.0;
223 double max = kind == TIME_LOG ? Math.log(this.maxValue) : this.maxValue;
413 int n = (int) (this.maxValue / gridValue);
429 n = (int) (this.maxValue / gridValue);
431 int gridWidth = (int) (this.graphWidth * gridValue / this.maxValue);
463 double max = Math.log(this.maxValue);
576 this.maxValue = 0.0;
583 if (value < 1000000 && value > this.maxValue) {
584 this.maxValue = value
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 589 FT_ULong maxValue;
659 FT_FRAME_ULONG ( maxValue ),
754 a->maximum = axis_rec.maxValue; /* A Fixed */
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PlatformBridge.h 392 int maxValue;
  /frameworks/base/services/input/
EventHub.h 84 int32_t maxValue; // maximum value
92 maxValue = 0;
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 206 int maxValue = (int) Math.floor(max * step);
208 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
209 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
210 for (int i = minValue; i <= maxValue; ++i) {
211 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
214 entries[maxValue - i] = builder.append(i).toString();
  /external/icu4c/tools/gennorm2/
n2builder.cpp     [all...]
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 588 SMILTime SVGSMILElement::maxValue() const
672 SMILTime maxValue = this->maxValue();
673 if (minValue > maxValue) {
677 maxValue = SMILTime::indefinite();
679 return resolvedBegin + min(maxValue, max(minValue, preliminaryActiveDuration));
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 350 double AccessibilityUIElement::maxValue()
  /external/webkit/Tools/DumpRenderTree/win/
AccessibilityUIElementWin.cpp 394 double AccessibilityUIElement::maxValue()
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 246 int maxValue = (int) FloatMath.floor(max * step);
248 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
249 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
250 int[] icons = new int[maxValue - minValue + 1];
253 for (int i = minValue; i <= maxValue; ++i) {
254 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
257 entries[maxValue - i] = builder.append(i).toString();
258 icons[maxValue - i] = iconIds.getResourceId(3 + i, 0);
  /packages/apps/Gallery2/src/com/android/camera/
CameraSettings.java 248 int maxValue = Math.min(3, (int) FloatMath.floor(max * step));
251 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
252 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
253 CharSequence labels[] = new CharSequence[maxValue - minValue + 1];
254 int[] icons = new int[maxValue - minValue + 1];
257 for (int i = minValue; i <= maxValue; ++i) {
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 

Completed in 683 milliseconds

1 2 3