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

123

/external/apache-http/src/org/apache/http/message/
H A DParserCursor.java48 private final int upperBound; field in class:ParserCursor
51 public ParserCursor(int lowerBound, int upperBound) { argument
56 if (lowerBound > upperBound) {
60 this.upperBound = upperBound;
69 return this.upperBound;
80 if (pos > this.upperBound) {
87 return this.pos >= this.upperBound;
97 buffer.append(Integer.toString(this.upperBound));
/external/guava/guava/src/com/google/common/collect/
H A DRange.java115 final Cut<C> upperBound; field in class:Range
117 Range(Cut<C> lowerBound, Cut<C> upperBound) { argument
118 if (lowerBound.compareTo(upperBound) > 0) {
120 "Invalid range: " + toString(lowerBound, upperBound));
123 this.upperBound = upperBound;
159 return upperBound != Cut.aboveAll();
169 return upperBound.endpoint();
181 return upperBound.typeAsUpperBound();
194 return lowerBound.equals(upperBound);
488 toString(Cut<?> lowerBound, Cut<?> upperBound) argument
[all...]
H A DTreeBasedTable.java178 @Nullable final C upperBound; field in class:TreeBasedTable.TreeRow
184 TreeRow(R rowKey, @Nullable C lowerBound, @Nullable C upperBound) { argument
187 this.upperBound = upperBound;
188 checkArgument(lowerBound == null || upperBound == null
189 || compare(lowerBound, upperBound) <= 0);
205 && (upperBound == null || compare(upperBound, o) > 0);
221 return new TreeRow(rowKey, fromKey, upperBound);
266 if (upperBound !
[all...]
H A DDescendingImmutableSortedMultiset.java73 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
74 return forward.tailMultiset(upperBound, boundType).descendingMultiset();
H A DEmptyImmutableSortedMultiset.java74 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
75 checkNotNull(upperBound);
H A DSortedMultiset.java96 * {@code upperBound}, optionally including {@code upperBound} itself. The
104 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); argument
108 * {@code lowerBound} and {@code upperBound}. The returned multiset is a view
116 * {@code tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound,
120 E upperBound, BoundType upperBoundType);
119 subMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DRanges.java75 Cut<C> lowerBound, Cut<C> upperBound) {
76 return new Range<C>(lowerBound, upperBound);
141 Cut<C> upperBound = (upperType == BoundType.OPEN)
144 return create(lowerBound, upperBound);
74 create( Cut<C> lowerBound, Cut<C> upperBound) argument
H A DRegularImmutableSortedMultiset.java153 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { argument
158 elementList(), checkNotNull(upperBound), comparator(), ANY_PRESENT, NEXT_HIGHER);
162 elementList(), checkNotNull(upperBound), comparator(), ANY_PRESENT, NEXT_LOWER) + 1;
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dcros_log_visualizer.js175 * - lower/upperBound: Time range (Events out of range will be skipped)
186 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/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyRange.idl35 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, [Default=Undefined] optional boolean open);
H A DIDBKeyRange.h70 static PassRefPtr<IDBKeyRange> upperBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
/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/chromium_org/third_party/icu/source/i18n/
H A Dnfrule.h70 double upperBound,
86 double upperBound) const;
H A Dnfsubs.cpp154 double upperBound,
214 double upperBound,
281 double upperBound,
313 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, resul
676 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool lenientParse, Formattable& result) const argument
927 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool lenientParse, Formattable& result) const argument
1225 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool , Formattable& result) const argument
[all...]
H A Dnfsubs.h170 * @param upperBound When searching the rule set for a rule
189 double upperBound,
210 * to upperBound are not considered.
H A Dnfrs.cpp550 * of its rules (with a base value less than upperBound) and returns
557 * @param upperBound Limits the rules that can be allowed to match.
558 * Only rules whose base values are strictly less than upperBound
585 NFRuleSet::parse(const UnicodeString& text, ParsePosition& pos, double upperBound, Formattable& result) const argument
614 fprintf(stderr, " <nfrs before negative> %x ub: %g\n", negativeNumberRule, upperBound);
616 UBool success = negativeNumberRule->doParse(text, workingPos, 0, upperBound, tempResult);
636 UBool success = fractionRules[i]->doParse(text, workingPos, 0, upperBound, tempResult);
661 int64_t ub = util64_fromDouble(upperBound);
668 fprintf(stderr, "ub: %g, i64: %s (%s)\n", upperBound, ubstr, ubstrhex);
676 UBool success = rules[i]->doParse(text, workingPos, fIsFractionRuleSet, upperBound, tempResul
[all...]
/external/icu4c/i18n/
H A Dnfrule.h70 double upperBound,
86 double upperBound) const;
H A Dnfsubs.cpp161 double upperBound,
229 double upperBound,
302 double upperBound,
337 double /*upperBound*/,
685 * @param upperBound When searching the rule set for a rule
705 double upperBound,
710 fprintf(stderr, "<nfsubs> %x bv: %g ub: %g\n", this, baseValue, upperBound);
718 upperBound = calcUpperBound(upperBound);
727 ruleSet->parse(text, parsePosition, upperBound, resul
702 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool lenientParse, Formattable& result) const argument
953 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool lenientParse, Formattable& result) const argument
1272 doParse(const UnicodeString& text, ParsePosition& parsePosition, double baseValue, double upperBound, UBool , Formattable& result) const argument
[all...]
H A Dnfrs.h54 UBool parse(const UnicodeString& text, ParsePosition& pos, double upperBound, Formattable& result) const;
H A Dnfsubs.h170 * @param upperBound When searching the rule set for a rule
189 double upperBound,
210 * to upperBound are not considered.
H A Dnfrs.cpp575 * of its rules (with a base value less than upperBound) and returns
582 * @param upperBound Limits the rules that can be allowed to match.
583 * Only rules whose base values are strictly less than upperBound
610 NFRuleSet::parse(const UnicodeString& text, ParsePosition& pos, double upperBound, Formattable& result) const argument
639 fprintf(stderr, " <nfrs before negative> %x ub: %g\n", negativeNumberRule, upperBound);
641 UBool success = negativeNumberRule->doParse(text, workingPos, 0, upperBound, tempResult);
661 UBool success = fractionRules[i]->doParse(text, workingPos, 0, upperBound, tempResult);
686 int64_t ub = util64_fromDouble(upperBound);
693 fprintf(stderr, "ub: %g, i64: %s (%s)\n", upperBound, ubstr, ubstrhex);
701 UBool success = rules[i]->doParse(text, workingPos, fIsFractionRuleSet, upperBound, tempResul
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc145 static Range *upperBound(MemoryLocation Loc, Range *Ranges, function
187 Range *InRange = upperBound(Min, Ranges, NumRanges);
191 InRange = upperBound(P, Ranges, NumRanges);
208 InRange = upperBound(P, Ranges, NumRanges);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DScriptFormatter.js68 var lineNumber = lineEndings.upperBound(position - 1);
264 var index = positions1.upperBound(position) - 1;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java90 return range.upperBound.greatestValueBelow(domain);
148 range.upperBound.withUpperBoundType(upperBoundType, domain));
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
H A DTimingFunction.h243 void appendSegment(double upperBound, TimingFunction* timingFunction) argument
246 ASSERT(upperBound > max);
247 m_segments.append(Segment(max, upperBound, timingFunction));

Completed in 762 milliseconds

123