Home | History | Annotate | Download | only in google

Lines Matching defs:Bound

109   enum Bound {
126 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
127 Bound.EXCLUSIVE));
128 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
129 Bound.INCLUSIVE));
130 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
131 Bound.NO_BOUND));
132 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
133 Bound.EXCLUSIVE));
134 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
135 Bound.INCLUSIVE));
136 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.INCLUSIVE,
137 Bound.NO_BOUND));
138 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.INCLUSIVE,
139 Bound.EXCLUSIVE));
140 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.INCLUSIVE,
141 Bound.INCLUSIVE));
148 SortedMultisetTestSuiteBuilder<E> parentBuilder, final Bound from,
149 final Bound to) {
189 if (from == Bound.NO_BOUND) {
193 if (to == Bound.NO_BOUND) {
207 if (from == Bound.INCLUSIVE) {
210 } else if (from == Bound.EXCLUSIVE) {
214 if (to == Bound.INCLUSIVE) {
216 } else if (to == Bound.EXCLUSIVE) {