Searched defs:maximum (Results 1 - 23 of 23) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DScrollbarPeer.java46 * @param maximum the maximum value
50 void setValues(int value, int visible, int minimum, int maximum); argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpinnerNumberModel.java36 * <code>maximum</code>. The size of the increase or decrease
40 * <code>maximum</code> properties can be <code>null</code>
72 * <code>minimum</code>, or <code>maximum</code> properties changes.
86 private Comparable minimum, maximum; field in class:SpinnerNumberModel
92 * numbers from <code>minimum</code> to <code>maximum</code>. The
100 * The <code>minimum</code> and <code>maximum</code> parameters
104 * or if both <code>minimum</code> and <code>maximum</code>
105 * are specified and <code>mininum &gt; maximum</code> then an
107 * Similarly if <code>(minimum &lt;= value &lt;= maximum</code>) is false,
112 * @param maximum th
119 SpinnerNumberModel(Number value, Comparable minimum, Comparable maximum, Number stepSize) argument
146 SpinnerNumberModel(int value, int minimum, int maximum, int stepSize) argument
163 SpinnerNumberModel(double value, double minimum, double maximum, double stepSize) argument
261 setMaximum(Comparable maximum) argument
[all...]
H A DSizeRequirements.java69 * <dt> <code>maximum</code>
115 * The maximum size allowed.
120 public int maximum; field in class:SizeRequirements
131 * and maximum sizes set to zero and an alignment value of 0.5
137 maximum = 0;
143 * and maximum sizes and the specified alignment.
147 * @param max the maximum size >= 0
153 maximum = max;
158 * Returns a string describing the minimum, preferred, and maximum
164 return "[" + minimum + "," + preferred + "," + maximum
[all...]
H A DJScrollBar.java97 * The model that represents the scrollbar's minimum, maximum, extent
135 * value, extent, minimum, and maximum.
170 * maximum = 100
184 * maximum = 100
293 * fundamental properties: minimum, maximum, value, extent.
304 * fundamental properties: minimum, maximum, value, extent.
528 * The maximum value of the scrollbar is maximum - extent.
530 * @return the value of the model's maximum property
539 * Sets the model's maximum propert
548 setMaximum(int maximum) argument
[all...]
H A DJSlider.java94 * The data model that handles the numeric maximum value,
208 * minimum and maximum values on the slider. See the
212 * @param max the maximum value of the slider
228 * minimum, initial, and maximum values on the slider. See the
232 * @param max the maximum value of the slider
247 * specified minimum, maximum, and initial values.
254 * minimum, initial, and maximum values on the slider. See the
259 * @param max the maximum value of the slider
440 * fundamental properties: minimum, maximum, value.
453 * fundamental properties: minimum, maximum, valu
617 setMaximum(int maximum) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWScrollBarPeer.java77 final int maximum) {
80 getDelegate().setValues(value, visible, minimum, maximum);
76 setValues(final int value, final int visible, final int minimum, final int maximum) argument
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DObject.java112 * @param maximum the upper bound on the hash value returned by the ORB
115 int _hash(int maximum); argument
H A DLocalObject.java100 * lifetime of the object, using the given number as the maximum.
103 * @param maximum an <code>int</code> identifying maximum value of
107 public int _hash(int maximum) { argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.hpp38 ** maximum, avg, sd, davg, and dsd are calculated over all its elements
67 virtual double maximum() const = 0; // maximum element in the sequence
94 double _maximum; // keep track of maximum value
100 virtual double maximum() const { return _maximum; } function in class:NumberSeq
124 virtual double maximum() const;
H A DnumberSeq.cpp170 double TruncatedSeq::maximum() const { function in class:TruncatedSeq
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralSubtree.java38 * maximum [1] BaseDistance OPTIONAL
52 private int maximum = -1; field in class:GeneralSubtree
61 * @params max the maximum BaseDistance
66 this.maximum = max;
92 maximum = opt.getInteger();
118 * Return the maximum BaseDistance.
120 * @return the maximum BaseDistance, or -1 if not set.
123 return maximum;
133 if (maximum == -1) {
136 s += "\t Maximum: " + maximum;
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DStubWrapper.java109 public int _hash(int maximum) argument
111 return object._hash( maximum ) ;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollbarPeer.java51 int minimum, int maximum);
50 setValues(int value, int visible, int minimum, int maximum) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbarPeer.java209 public void setValues(int value, int visible, int minimum, int maximum) { argument
211 tsb.setValues(value, visible, minimum, maximum);
H A DXScrollbar.java556 * <LI> The maximum must be greater than the minimum </LI>
558 * and less than or equal to the maximum minus the
561 * to the difference between the maximum and minimum values. </LI>
568 * @param maximum is the maximum value of the scrollbar
570 synchronized void setValues(int value, int visible, int minimum, int maximum) { argument
571 if (maximum <= minimum) {
572 maximum = minimum + 1;
574 if (visible > maximum - minimum) {
575 visible = maximum
603 setValues(int value, int visible, int minimum, int maximum, int unitSize, int blockSize) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaClientDelegateImpl.java339 public int hash(org.omg.CORBA.Object obj, int maximum) argument
342 if ( h > maximum )
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DObjectImpl.java162 * @param maximum an <code>int</code> indicating the upper bound on the hash
167 public int _hash(int maximum) { argument
168 return _get_delegate().hash(this, maximum);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DHighPrecisionJScrollBar.java34 minimum, maximum, unit increment, etc. Interaction with the
83 /** value, minimum and maximum should be positive */
84 public HighPrecisionJScrollBar(int orientation, BigInteger value, BigInteger minimum, BigInteger maximum) { argument
86 initialize(value, minimum, maximum);
127 public void setMaximumHP(BigInteger maximum) { argument
128 setRange(minimumHP, maximum);
227 private void initialize(BigInteger value, BigInteger minimum, BigInteger maximum) { argument
241 setRange(minimum, maximum);
253 private void setRange(BigInteger minimum, BigInteger maximum) { argument
254 if (minimum.compareTo(maximum) >
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DFloatControl.java44 * includes methods that return string labels for the minimum, maximum, and midpoint
68 * The maximum supported value.
70 private float maximum; field in class:FloatControl
96 * A label for the maximum value, such as "Right."
123 * @param maximum the largest value permitted for the control
133 * @param maxLabel the label for the maximum value, such as "Right" or "Full"
136 * than {@code maximum} or {@code initialValue} does not fall
139 protected FloatControl(Type type, float minimum, float maximum, argument
145 if (minimum > maximum) {
147 + " exceeds maximum valu
193 FloatControl(Type type, float minimum, float maximum, float precision, int updatePeriod, float initialValue, String units) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DScrollPaneAdjustable.java63 * and less than <code>maximum</code>
89 * The maximum value of this scrollbar.
96 private int maximum; field in class:ScrollPaneAdjustable
194 * <code>minimum</code>, <code>maximum</code> and
202 maximum = Math.max(max, minimum + 1);
203 visibleAmount = Math.min(visible, maximum - minimum);
248 return maximum;
322 * greater than the current maximum, then one of those values is
335 * greater than the current maximum, then one of those values is
344 v = Math.min(v, maximum
[all...]
H A DScrollbar.java74 * Note that the actual maximum value of the scroll bar is the
75 * <code>maximum</code> minus the <code>visible amount</code>.
76 * In the previous example, because the <code>maximum</code> is
77 * 300 and the <code>visible amount</code> is 60, the actual maximum
182 * <code>maximum - visibleAmount</code>
191 * The maximum value of the <code>Scrollbar</code>.
199 int maximum; field in class:Scrollbar
203 * This value must be less than the <code>maximum</code>
330 * <td>maximum</td>
331 * <td>maximum valu
404 Scrollbar(int orientation, int value, int visible, int minimum, int maximum) argument
871 setValues(int value, int visible, int minimum, int maximum) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Scrollbar.cpp358 // Meaningful maximum position is maximum - visible.
518 jint minimum, jint maximum)
527 svs->max = maximum;
516 Java_sun_awt_windows_WScrollbarPeer_setValues(JNIEnv *env, jobject self, jint value, jint visible, jint minimum, jint maximum) argument
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmspack.c910 cmsFloat64Number maximum = IsInkSpace(info ->InputFormat) ? 655.35 : 65535.0; local
925 vi = _cmsQuickSaturateWord(v * maximum);
966 cmsFloat64Number maximum = IsInkSpace(info ->InputFormat) ? 655.35 : 65535.0; local
981 vi = _cmsQuickSaturateWord(v * maximum);
1042 cmsFloat32Number maximum = IsInkSpace(info ->InputFormat) ? 100.0F : 1.0F; local
1057 v /= maximum;
1094 cmsFloat64Number maximum = IsInkSpace(info ->InputFormat) ? 100.0 : 1.0; local
1109 v /= maximum;
1188 // 1.15 fixed point, that means maximum value is MAX_ENCODEABLE_XYZ (0xFFFF)
2332 cmsFloat64Number maximum local
2386 cmsFloat64Number maximum = IsInkSpace(info ->OutputFormat) ? 655.35 : 65535.0; local
2442 cmsFloat64Number maximum = IsInkSpace(info ->OutputFormat) ? 100.0 : 1.0; local
2494 cmsFloat64Number maximum = IsInkSpace(info ->OutputFormat) ? 100.0 : 1.0; local
2674 cmsFloat32Number maximum = IsInkSpace(info ->InputFormat) ? 655.35F : 65535.0F; local
2726 cmsFloat32Number maximum = IsInkSpace(info ->InputFormat) ? 100.0F : 1.0F; local
2774 cmsFloat32Number maximum = IsInkSpace(info ->OutputFormat) ? 655.35F : 65535.0F; local
2828 cmsFloat32Number maximum = IsInkSpace(info ->OutputFormat) ? 100.0F : 1.0F; local
[all...]

Completed in 78 milliseconds