Home
last modified time | relevance | path

Searched refs:upperBound (Results 1 – 25 of 48) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
DRange.java115 final Cut<C> upperBound; field in Range
117 Range(Cut<C> lowerBound, Cut<C> upperBound) { in Range() argument
118 if (lowerBound.compareTo(upperBound) > 0) { in Range()
120 "Invalid range: " + toString(lowerBound, upperBound)); in Range()
123 this.upperBound = upperBound; in Range()
159 return upperBound != Cut.aboveAll(); in hasUpperBound()
169 return upperBound.endpoint(); in upperEndpoint()
181 return upperBound.typeAsUpperBound(); in upperBoundType()
194 return lowerBound.equals(upperBound); in isEmpty()
205 return lowerBound.isLessThan(value) && !upperBound.isLessThan(value); in contains()
[all …]
DTreeBasedTable.java178 @Nullable final C upperBound; field in TreeBasedTable.TreeRow
184 TreeRow(R rowKey, @Nullable C lowerBound, @Nullable C upperBound) { in TreeRow() argument
187 this.upperBound = upperBound; in TreeRow()
188 checkArgument(lowerBound == null || upperBound == null in TreeRow()
189 || compare(lowerBound, upperBound) <= 0); in TreeRow()
205 && (upperBound == null || compare(upperBound, o) > 0); in rangeContains()
221 return new TreeRow(rowKey, fromKey, upperBound); in tailMap()
266 if (upperBound != null) { in computeBackingRowMap()
267 map = map.headMap(upperBound); in computeBackingRowMap()
DRanges.java75 Cut<C> lowerBound, Cut<C> upperBound) { in create() argument
76 return new Range<C>(lowerBound, upperBound); in create()
141 Cut<C> upperBound = (upperType == BoundType.OPEN) in range() local
144 return create(lowerBound, upperBound); in range()
DSortedMultiset.java104 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument
120 E upperBound, BoundType upperBoundType); in subMultiset() argument
DEmptyImmutableSortedMultiset.java74 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
75 checkNotNull(upperBound); in headMultiset()
DDescendingImmutableSortedMultiset.java73 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
74 return forward.tailMultiset(upperBound, boundType).descendingMultiset(); in headMultiset()
DRegularImmutableSortedMultiset.java153 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) {
158 elementList(), checkNotNull(upperBound), comparator(), ANY_PRESENT, NEXT_HIGHER);
162 elementList(), checkNotNull(upperBound), comparator(), ANY_PRESENT, NEXT_LOWER) + 1;
DRegularContiguousSet.java92 return range.upperBound.greatestValueBelow(domain); in last()
150 range.upperBound.withUpperBoundType(upperBoundType, domain)); in range()
DImmutableSortedMultiset.java400 public abstract ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument
404 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { in subMultiset() argument
405 return tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType); in subMultiset()
/external/apache-http/src/org/apache/http/message/
DParserCursor.java53 private final int upperBound; field in ParserCursor
56 public ParserCursor(int lowerBound, int upperBound) { in ParserCursor() argument
61 if (lowerBound > upperBound) { in ParserCursor()
65 this.upperBound = upperBound; in ParserCursor()
74 return this.upperBound; in getUpperBound()
85 if (pos > this.upperBound) { in updatePos()
92 return this.pos >= this.upperBound; in atEnd()
102 buffer.append(Integer.toString(this.upperBound)); in toString()
/external/chromium_org/chrome/browser/resources/net_internals/
Dcros_log_visualizer.js186 this.upperBound = this.events[this.events.length - 1].time;
187 this.totalDuration = Math.abs(this.upperBound.getTime() -
254 this.upperBound = new Date((this.timelineLeft + this.dragDistance) *
260 this.upperBound = new Date(this.timelineLeft * this.unitDuration +
265 this.totalDuration = this.upperBound.getTime() -
275 event.time.getTime() > this.upperBound.getTime();
/external/opencv/cv/src/
Dcvcondens.cpp232 cvConDensInitSampleSet( CvConDensation * conDens, CvMat * lowerBound, CvMat * upperBound ) in cvConDensInitSampleSet() argument
242 if( !conDens || !lowerBound || !upperBound ) in cvConDensInitSampleSet()
246 !CV_ARE_TYPES_EQ(lowerBound,upperBound) ) in cvConDensInitSampleSet()
249 if( (lowerBound->cols != 1) || (upperBound->cols != 1) ) in cvConDensInitSampleSet()
252 if( (lowerBound->rows != conDens->DP) || (upperBound->rows != conDens->DP) ) in cvConDensInitSampleSet()
256 UBound = upperBound->data.fl; in cvConDensInitSampleSet()
/external/chromium_org/third_party/icu/source/i18n/
Dnfsubs.cpp161 double upperBound,
229 double upperBound,
302 double upperBound,
705 double upperBound, in doParse() argument
710 fprintf(stderr, "<nfsubs> %x bv: %g ub: %g\n", this, baseValue, upperBound); in doParse()
718 upperBound = calcUpperBound(upperBound); in doParse()
727 ruleSet->parse(text, parsePosition, upperBound, result); in doParse()
956 double upperBound, in doParse() argument
963 … return NFSubstitution::doParse(text, parsePosition, baseValue, upperBound, lenientParse, result); in doParse()
969 ruleToUse->doParse(text, parsePosition, FALSE, upperBound, result); in doParse()
[all …]
Dnfrs.cpp610 NFRuleSet::parse(const UnicodeString& text, ParsePosition& pos, double upperBound, Formattable& res… in parse() argument
639 fprintf(stderr, " <nfrs before negative> %x ub: %g\n", negativeNumberRule, upperBound); in parse()
641 UBool success = negativeNumberRule->doParse(text, workingPos, 0, upperBound, tempResult); in parse()
661 … UBool success = fractionRules[i]->doParse(text, workingPos, 0, upperBound, tempResult); in parse()
686 int64_t ub = util64_fromDouble(upperBound); in parse()
693 fprintf(stderr, "ub: %g, i64: %s (%s)\n", upperBound, ubstr, ubstrhex); in parse()
701 … UBool success = rules[i]->doParse(text, workingPos, fIsFractionRuleSet, upperBound, tempResult); in parse()
Dnfrule.h70 double upperBound,
86 double upperBound) const;
Dnfrule.cpp757 double upperBound, in doParse() argument
845 upperBound); in doParse()
865 upperBound); in doParse()
1003 double upperBound) const in matchToDelimiter()
1030 UBool success = sub->doParse(subText, tempPP, _baseValue, upperBound, in matchToDelimiter()
1079 UBool success = sub->doParse(text, tempPP, _baseValue, upperBound, in matchToDelimiter()
/external/icu/icu4c/source/i18n/
Dnfsubs.cpp161 double upperBound,
229 double upperBound,
302 double upperBound,
705 double upperBound, in doParse() argument
710 fprintf(stderr, "<nfsubs> %x bv: %g ub: %g\n", this, baseValue, upperBound); in doParse()
718 upperBound = calcUpperBound(upperBound); in doParse()
727 ruleSet->parse(text, parsePosition, upperBound, result); in doParse()
956 double upperBound, in doParse() argument
963 … return NFSubstitution::doParse(text, parsePosition, baseValue, upperBound, lenientParse, result); in doParse()
969 ruleToUse->doParse(text, parsePosition, FALSE, upperBound, result); in doParse()
[all …]
Dnfrs.cpp610 NFRuleSet::parse(const UnicodeString& text, ParsePosition& pos, double upperBound, Formattable& res… in parse() argument
639 fprintf(stderr, " <nfrs before negative> %x ub: %g\n", negativeNumberRule, upperBound); in parse()
641 UBool success = negativeNumberRule->doParse(text, workingPos, 0, upperBound, tempResult); in parse()
661 … UBool success = fractionRules[i]->doParse(text, workingPos, 0, upperBound, tempResult); in parse()
686 int64_t ub = util64_fromDouble(upperBound); in parse()
693 fprintf(stderr, "ub: %g, i64: %s (%s)\n", upperBound, ubstr, ubstrhex); in parse()
701 … UBool success = rules[i]->doParse(text, workingPos, fIsFractionRuleSet, upperBound, tempResult); in parse()
Dnfrule.h70 double upperBound,
86 double upperBound) const;
Dnfrule.cpp758 double upperBound, in doParse() argument
846 upperBound); in doParse()
866 upperBound); in doParse()
1004 double upperBound) const in matchToDelimiter()
1031 UBool success = sub->doParse(subText, tempPP, _baseValue, upperBound, in matchToDelimiter()
1080 UBool success = sub->doParse(text, tempPP, _baseValue, upperBound, in matchToDelimiter()
/external/compiler-rt/lib/ubsan/
Dubsan_diag.cc184 static Range *upperBound(MemoryLocation Loc, Range *Ranges, in upperBound() function
225 Range *InRange = upperBound(Min, Ranges, NumRanges); in renderMemorySnippet()
229 InRange = upperBound(P, Ranges, NumRanges); in renderMemorySnippet()
246 InRange = upperBound(P, Ranges, NumRanges); in renderMemorySnippet()
/external/chromium_org/third_party/sqlite/src/test/
Dcreatetab.test21 set upperBound 2
23 set upperBound 0
28 for {set av 0} {$av<=$upperBound} {incr av} {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DScriptFormatter.js68 var lineNumber = lineEndings.upperBound(position - 1);
264 var index = positions1.upperBound(position) - 1;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DExceptionMessages.h105 …mberType given, NumberType lowerBound, BoundType lowerType, NumberType upperBound, BoundType upper… in indexOutsideRange() argument
116 result.append(formatNumber(upperBound)); in indexOutsideRange()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DRegularContiguousSet.java90 return range.upperBound.greatestValueBelow(domain); in last()
148 range.upperBound.withUpperBoundType(upperBoundType, domain)); in range()

12