Searched refs:lowerBound (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DCopiesSupported.java73 * @param lowerBound Lower bound of the range.
78 * non-null range is specified with <CODE>lowerBound</CODE> less than
81 public CopiesSupported(int lowerBound, int upperBound) { argument
82 super(lowerBound, upperBound);
84 if (lowerBound > upperBound) {
86 } else if (lowerBound < 1) {
H A DJobImpressionsSupported.java60 * @param lowerBound Lower bound of the range.
65 * non-null range is specified with <CODE>lowerBound</CODE> less than
68 public JobImpressionsSupported(int lowerBound, int upperBound) { argument
69 super (lowerBound, upperBound);
70 if (lowerBound > upperBound) {
72 } else if (lowerBound < 0) {
H A DJobKOctetsSupported.java59 * @param lowerBound Lower bound of the range.
64 * non-null range is specified with <CODE>lowerBound</CODE> less than
67 public JobKOctetsSupported(int lowerBound, int upperBound) { argument
68 super (lowerBound, upperBound);
69 if (lowerBound > upperBound) {
71 } else if (lowerBound < 0) {
H A DJobMediaSheetsSupported.java59 * @param lowerBound Lower bound of the range.
64 * non-null range is specified with <CODE>lowerBound</CODE> less than
67 public JobMediaSheetsSupported(int lowerBound, int upperBound) { argument
68 super (lowerBound, upperBound);
69 if (lowerBound > upperBound) {
71 } else if (lowerBound < 0) {
H A DNumberUpSupported.java110 * @param lowerBound Lower bound of the range.
115 * non-null range is specified with <CODE>lowerBound</CODE> less than
118 public NumberUpSupported(int lowerBound, int upperBound) { argument
119 super (lowerBound, upperBound);
120 if (lowerBound > upperBound) {
122 } else if (lowerBound < 1) {
H A DPageRanges.java200 * @param lowerBound Lower bound of the range.
205 * non-null range is specified with <CODE>lowerBound</CODE> less than
208 public PageRanges(int lowerBound, int upperBound) { argument
209 super (lowerBound, upperBound);
210 if (lowerBound > upperBound) {
212 } else if (lowerBound < 1) {
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DIntegerSyntax.java69 * @param lowerBound Lower bound.
74 * <CODE>lowerBound</CODE> or greater than
77 protected IntegerSyntax(int value, int lowerBound, int upperBound) { argument
78 if (lowerBound > value || value > upperBound) {
80 " not in range " + lowerBound +
H A DSetOfIntegerSyntax.java376 * @param lowerBound Lower bound of the range.
381 * <CODE>lowerBound</CODE> is less than zero.
383 protected SetOfIntegerSyntax(int lowerBound, int upperBound) { argument
384 if (lowerBound <= upperBound && lowerBound < 0) {
387 members = lowerBound <=upperBound ?
388 new int[][] {{lowerBound, upperBound}} :
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/
H A DBoundaryStatisticImpl.java39 private final long lowerBound; field in class:BoundaryStatisticImpl
53 lowerBound = lower;
68 return lowerBound;
H A DBoundedRangeStatisticImpl.java40 private long lowerBound = 0L; field in class:BoundedRangeStatisticImpl
81 lowerBound = lower;
127 return lowerBound;
137 lowerBound = initLowerBound;
/openjdk7/jdk/test/java/lang/Double/
H A DParseDouble.java576 BigDecimal lowerBound = d_BD.subtract(ulp_BD.divide(TWO));
579 double convertedLowerBound = Double.parseDouble(lowerBound.toString());
/openjdk7/jdk/test/java/lang/Math/
H A DTests.java298 // or equal to the lowerBound.
301 double ulps, double lowerBound) {
304 if (!(result >= lowerBound) && !Double.isNaN(expected)) {
316 " or result not greater than or equal to the bound " + lowerBound);
299 testUlpDiffWithLowerBound(String testName, double input, double result, double expected, double ulps, double lowerBound) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java137 // <editor-fold defaultstate="collapsed" desc="lowerBound">
146 public Type lowerBound(Type t) { method in class:Types
147 return lowerBound.visit(t);
150 private final MapVisitor<Void> lowerBound = new MapVisitor<Void>() { field in class:Types
392 Type lower = lowerBound(s);
668 return visit(t, upperBound(s)) && visit(t, lowerBound(s));
787 Type bound = lowerBound(s);
886 // L(t), t, s, lowerBound(s),
888 // || isSubtypeNoCapture(L(t), lowerBound(s)));
900 || ((t.isExtendsBound() || isSubtypeNoCapture(L(t), lowerBound(
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java3341 int lowerBound = r.getLowerBoundAt(i);
3345 // In this case, lowerBound == upperBound, for all subsequent terms.
3348 newSize = lowerBound;
3352 newSize = (int)Math.round(lowerBound+f*(upperBound - lowerBound));
3354 // size[i] = (int)(((totalUpperBound - target) * lowerBound +
3359 totalLowerBound -= lowerBound;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java534 return !types.notSoftSubtype(types.lowerBound(a), bound);
2276 if (types.lowerBound(type).tsym == syms.classType.tsym) return;

Completed in 86 milliseconds