Home | History | Annotate | Download | only in testing

Lines Matching defs:Bound

61       derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
62 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
63 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
64 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
65 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
66 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.INCLUSIVE));
96 enum Bound {
111 parentBuilder, final Bound from, final Bound to) {
143 if (from == Bound.NO_BOUND) {
147 if (to == Bound.NO_BOUND) {
161 if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
163 } else if (from == Bound.NO_BOUND && to == Bound.INCLUSIVE) {
165 } else if (from == Bound.EXCLUSIVE && to == Bound.NO_BOUND) {
167 } else if (from == Bound.EXCLUSIVE && to == Bound.EXCLUSIVE) {
169 } else if (from == Bound.EXCLUSIVE && to == Bound.INCLUSIVE) {
171 } else if (from == Bound.INCLUSIVE && to == Bound.NO_BOUND) {
173 } else if (from == Bound.INCLUSIVE && to == Bound.EXCLUSIVE) {
175 } else if (from == Bound.INCLUSIVE && to == Bound.INCLUSIVE) {