Searched refs:upperBound (Results 1 - 25 of 77) sorted by relevance

1234

/external/apache-http/src/org/apache/http/message/
H A DParserCursor.java53 private final int upperBound; field in class:ParserCursor
56 public ParserCursor(int lowerBound, int upperBound) { argument
61 if (lowerBound > upperBound) {
65 this.upperBound = upperBound;
74 return this.upperBound;
85 if (pos > this.upperBound) {
92 return this.pos >= this.upperBound;
102 buffer.append(Integer.toString(this.upperBound));
/external/guava/guava/src/com/google/common/collect/
H A DRange.java132 return range.upperBound;
146 .compare(left.upperBound, right.upperBound)
152 Cut<C> lowerBound, Cut<C> upperBound) {
153 return new Range<C>(lowerBound, upperBound);
223 Cut<C> upperBound = (upperType == BoundType.OPEN)
226 return create(lowerBound, upperBound);
358 final Cut<C> upperBound; field in class:Range
360 private Range(Cut<C> lowerBound, Cut<C> upperBound) { argument
361 if (lowerBound.compareTo(upperBound) >
151 create( Cut<C> lowerBound, Cut<C> upperBound) argument
658 toString(Cut<?> lowerBound, Cut<?> upperBound) argument
[all...]
H A DUnmodifiableSortedMultiset.java94 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
96 delegate().headMultiset(upperBound, boundType));
102 E upperBound, BoundType upperBoundType) {
104 lowerBound, lowerBoundType, upperBound, upperBoundType));
100 subMultiset( E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DTreeRangeSet.java131 return Range.create(firstEntry.getValue().lowerBound, lastEntry.getValue().upperBound);
145 Cut<C> ubToAdd = rangeToAdd.upperBound;
151 if (rangeBelowLB.upperBound.compareTo(lbToAdd) >= 0) {
153 if (rangeBelowLB.upperBound.compareTo(ubToAdd) >= 0) {
155 ubToAdd = rangeBelowLB.upperBound;
169 if (rangeBelowUB.upperBound.compareTo(ubToAdd) >= 0) {
171 ubToAdd = rangeBelowUB.upperBound;
196 if (rangeBelowLB.upperBound.compareTo(rangeToRemove.lowerBound) >= 0) {
199 && rangeBelowLB.upperBound.compareTo(rangeToRemove.upperBound) >
[all...]
H A DForwardingSortedMultiset.java197 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
198 return delegate().headMultiset(upperBound, boundType);
203 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
204 return delegate().subMultiset(lowerBound, lowerBoundType, upperBound, upperBoundType);
216 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
217 return tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType);
202 subMultiset( E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
215 standardSubMultiset( E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DTreeBasedTable.java182 @Nullable final C upperBound; field in class:TreeBasedTable.TreeRow
188 TreeRow(R rowKey, @Nullable C lowerBound, @Nullable C upperBound) { argument
191 this.upperBound = upperBound;
192 checkArgument(lowerBound == null || upperBound == null
193 || compare(lowerBound, upperBound) <= 0);
213 && (upperBound == null || compare(upperBound, o) > 0);
229 return new TreeRow(rowKey, fromKey, upperBound);
274 if (upperBound !
[all...]
H A DTreeRangeMap.java73 RangeMapEntry(Cut<K> lowerBound, Cut<K> upperBound, V value) { argument
74 this(Range.create(lowerBound, upperBound), value);
101 return range.upperBound;
154 lastEntry.getValue().getKey().upperBound);
157 private void putRangeMapEntry(Cut<K> lowerBound, Cut<K> upperBound, V value) { argument
158 entriesByLowerBound.put(lowerBound, new RangeMapEntry<K, V>(lowerBound, upperBound, value));
178 if (rangeMapEntry.getUpperBound().compareTo(rangeToRemove.upperBound) > 0) {
181 putRangeMapEntry(rangeToRemove.upperBound, rangeMapEntry.getUpperBound(),
191 entriesByLowerBound.lowerEntry(rangeToRemove.upperBound);
195 if (rangeMapEntry.getUpperBound().compareTo(rangeToRemove.upperBound) >
[all...]
H A DDescendingImmutableSortedMultiset.java68 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
69 return forward.tailMultiset(upperBound, boundType).descendingMultiset();
H A DEmptyImmutableSortedMultiset.java73 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
74 checkNotNull(upperBound);
H A DSortedMultiset.java113 * {@code upperBound}, optionally including {@code upperBound} itself. The
121 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); argument
125 * {@code lowerBound} and {@code upperBound}. The returned multiset is a view
133 * {@code tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound,
137 E upperBound, BoundType upperBoundType);
136 subMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DRegularImmutableSortedMultiset.java86 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
87 return getSubMultiset(0, elementSet.headIndex(upperBound, checkNotNull(boundType) == CLOSED));
H A DImmutableRangeSet.java147 ranges.get(ranges.size() - 1).upperBound);
219 lowerBound = (index == 0) ? Cut.<C>belowAll() : ranges.get(index - 1).upperBound;
221 lowerBound = ranges.get(index).upperBound;
224 Cut<C> upperBound;
226 upperBound = Cut.<C>aboveAll();
228 upperBound = ranges.get(index + (positiveBoundedBelow ? 0 : 1)).lowerBound;
231 return Range.create(lowerBound, upperBound);
279 ranges, Range.<C>lowerBoundFn(), range.upperBound, KeyPresentBehavior.FIRST_PRESENT,
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DUnivariateRealSolverUtils.java87 * <li> <code> lowerBound <= a < initial < b <= upperBound</code> </li>
108 * is a root between <code>lowerBound</code> and <code>upperBound</code>
117 * @param upperBound upper bound (b never is greater than this
123 * is not positive, or initial is not between lowerBound and upperBound
126 double initial, double lowerBound, double upperBound)
128 return bracket( function, initial, lowerBound, upperBound,
134 * <li> <code> lowerBound <= a < initial < b <= upperBound</code> </li>
155 * @param upperBound upper bound (b never is greater than this
163 * is not positive, or initial is not between lowerBound and upperBound
166 double initial, double lowerBound, double upperBound,
125 bracket(UnivariateRealFunction function, double initial, double lowerBound, double upperBound) argument
165 bracket(UnivariateRealFunction function, double initial, double lowerBound, double upperBound, int maximumIterations) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSortedMultiset.java51 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); argument
54 E upperBound, BoundType upperBoundType);
53 subMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DUnmodifiableSortedMultiset.java92 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
94 delegate().headMultiset(upperBound, boundType));
100 E upperBound, BoundType upperBoundType) {
102 lowerBound, lowerBoundType, upperBound, upperBoundType));
98 subMultiset( E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DRegularContiguousSet.java91 return range.upperBound.greatestValueBelow(domain);
138 range.upperBound.withUpperBoundType(upperBoundType, domain));
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DAbstractContinuousDistribution.java115 double upperBound = getDomainUpperBound(p);
120 lowerBound, upperBound);
130 if (FastMath.abs(rootFindingFunction.value(upperBound)) < getSolverAbsoluteAccuracy()) {
131 return upperBound;
/external/opencv/cv/src/
H A Dcvcondens.cpp232 cvConDensInitSampleSet( CvConDensation * conDens, CvMat * lowerBound, CvMat * upperBound )
242 if( !conDens || !lowerBound || !upperBound )
246 !CV_ARE_TYPES_EQ(lowerBound,upperBound) )
249 if( (lowerBound->cols != 1) || (upperBound->cols != 1) )
252 if( (lowerBound->rows != conDens->DP) || (upperBound->rows != conDens->DP) )
256 UBound = upperBound->data.fl;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNFSubstitution.java383 * @param upperBound When searching the rule set for a rule
400 double upperBound, boolean lenientParse) {
409 upperBound = calcUpperBound(upperBound);
418 tempResult = ruleSet.parse(text, parsePosition, upperBound);
487 * to upperBound are not considered.
951 double upperBound, boolean lenientParse) {
955 return super.doParse(text, parsePosition, baseValue, upperBound, lenientParse);
961 Number tempResult = ruleToUse.doParse(text, parsePosition, false, upperBound);
1243 * @param upperBound Onl
399 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
950 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
1251 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
1558 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNFSubstitution.java382 * @param upperBound When searching the rule set for a rule
399 double upperBound, boolean lenientParse) {
408 upperBound = calcUpperBound(upperBound);
417 tempResult = ruleSet.parse(text, parsePosition, upperBound);
486 * to upperBound are not considered.
950 double upperBound, boolean lenientParse) {
954 return super.doParse(text, parsePosition, baseValue, upperBound, lenientParse);
960 Number tempResult = ruleToUse.doParse(text, parsePosition, false, upperBound);
1242 * @param upperBound Onl
398 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
949 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
1250 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
1557 doParse(String text, ParsePosition parsePosition, double baseValue, double upperBound, boolean lenientParse) argument
[all...]
/external/guava/guava-tests/test/com/google/common/reflect/
H A DTypesTest.java233 WildcardType upperBound =
240 assertEqualWildcardType(upperBoundJvmType, upperBound);
246 .addEqualityGroup(upperBoundJvmType, upperBound)
306 TypeVariable<?> upperBound = withBounds(
313 assertEqualTypeVariable(upperBoundJvmType, upperBound);
318 .addEqualityGroup(upperBoundJvmType, upperBound)
/external/icu/icu4c/source/i18n/
H A Dnfsubs.cpp160 double upperBound,
226 double upperBound,
297 double upperBound,
659 * @param upperBound When searching the rule set for a rule
679 double upperBound,
684 fprintf(stderr, "<nfsubs> %x bv: %g ub: %g\n", this, baseValue, upperBound);
692 upperBound = calcUpperBound(upperBound);
701 ruleSet->parse(text, parsePosition, upperBound, result);
923 double upperBound,
676 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool lenientParse, Formattable& result) const argument
920 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool lenientParse, Formattable& result) const argument
1238 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool , Formattable& result) const argument
[all...]
H A Dnfrule.h77 double upperBound,
98 double upperBound) const;
H A Dnfsubs.h173 * @param upperBound When searching the rule set for a rule
192 double upperBound,
213 * to upperBound are not considered.
/external/guice/core/src/com/google/inject/internal/
H A DMoreTypes.java482 private final Type upperBound; field in class:MoreTypes.WildcardTypeImpl
494 this.upperBound = Object.class;
497 checkNotNull(upperBounds[0], "upperBound");
500 this.upperBound = canonicalize(upperBounds[0]);
505 return new Type[] { upperBound };
513 return MoreTypes.isFullySpecified(upperBound)
525 ^ (31 + upperBound.hashCode());
531 } else if (upperBound == Object.class) {
534 return "? extends " + typeToString(upperBound);

Completed in 491 milliseconds

1234