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

123

/external/apache-http/src/org/apache/http/message/
H A DParserCursor.java47 private final int lowerBound; field in class:ParserCursor
51 public ParserCursor(int lowerBound, int upperBound) { argument
53 if (lowerBound < 0) {
56 if (lowerBound > upperBound) {
59 this.lowerBound = lowerBound;
61 this.pos = lowerBound;
65 return this.lowerBound;
77 if (pos < this.lowerBound) {
93 buffer.append(Integer.toString(this.lowerBound));
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DRange.java114 final Cut<C> lowerBound; 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));
122 this.lowerBound = lowerBound;
130 return lowerBound != Cut.belowAll();
140 return lowerBound.endpoint();
152 return lowerBound.typeAsLowerBound();
194 return lowerBound
488 toString(Cut<?> lowerBound, Cut<?> upperBound) argument
[all...]
H A DTreeBasedTable.java177 @Nullable final C lowerBound; field in class:TreeBasedTable.TreeRow
184 TreeRow(R rowKey, @Nullable C lowerBound, @Nullable C upperBound) { argument
186 this.lowerBound = lowerBound;
188 checkArgument(lowerBound == null || upperBound == null
189 || compare(lowerBound, upperBound) <= 0);
204 return o != null && (lowerBound == null || compare(lowerBound, o) <= 0)
216 return new TreeRow(rowKey, lowerBound, toKey);
263 if (lowerBound !
[all...]
H A DDescendingImmutableSortedMultiset.java78 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { argument
79 return forward.headMultiset(lowerBound, boundType).descendingMultiset();
H A DEmptyImmutableSortedMultiset.java81 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { argument
82 checkNotNull(lowerBound);
H A DSortedMultiset.java108 * {@code lowerBound} and {@code upperBound}. The returned multiset is a view
116 * {@code tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound,
119 SortedMultiset<E> subMultiset(E lowerBound, BoundType lowerBoundType, argument
124 * {@code lowerBound}, optionally including {@code lowerBound} itself. The
132 SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); argument
H A DRanges.java75 Cut<C> lowerBound, Cut<C> upperBound) {
76 return new Range<C>(lowerBound, upperBound);
138 Cut<C> lowerBound = (lowerType == BoundType.OPEN)
144 return create(lowerBound, upperBound);
74 create( Cut<C> lowerBound, Cut<C> upperBound) argument
H A DRegularImmutableSortedMultiset.java171 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { argument
176 elementList(), checkNotNull(lowerBound), comparator(), ANY_PRESENT, NEXT_LOWER) + 1;
180 elementList(), checkNotNull(lowerBound), comparator(), ANY_PRESENT, NEXT_HIGHER);
H A DRegularContiguousSet.java88 return range.lowerBound.leastValueAbove(domain);
149 return Ranges.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain),
H A DImmutableSortedMultiset.java404 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
405 return tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType);
409 public abstract ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); argument
403 subMultiset( E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DTreeMultiset.java354 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { argument
355 checkNotNull(lowerBound);
357 range.intersect(GeneralRange.downTo(comparator, lowerBound, boundType)), rootReference);
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dcros_log_visualizer.js185 this.lowerBound = this.events[0].time;
188 this.lowerBound.getTime());
255 this.unitDuration + this.lowerBound.getTime());
256 this.lowerBound = new Date(this.timelineLeft * this.unitDuration +
257 this.lowerBound.getTime());
261 this.lowerBound.getTime());
262 this.lowerBound = new Date((this.timelineLeft + this.dragDistance) *
263 this.unitDuration + this.lowerBound.getTime());
266 this.lowerBound.getTime();
274 return event.time.getTime() < this.lowerBound
[all...]
/external/chromium_org/content/test/data/indexeddb/
H A Dcursor_test.js14 keyRange = webkitIDBKeyRange.lowerBound('InexistentKey');
40 var keyRange = webkitIDBKeyRange.lowerBound(3.12);
H A Dkey_path_test.js23 keyRange = webkitIDBKeyRange.lowerBound("myKey" + count);
/external/opencv/cv/src/
H A Dcvcondens.cpp224 // lowerBound - vector of lower bounds used to random update of sample set
225 // lowerBound - vector of upper bounds used to random update of sample set
232 cvConDensInitSampleSet( CvConDensation * conDens, CvMat * lowerBound, CvMat * upperBound ) argument
242 if( !conDens || !lowerBound || !upperBound )
245 if( CV_MAT_TYPE(lowerBound->type) != CV_32FC1 ||
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) )
255 LBound = lowerBound->data.fl;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyRange.idl35 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, [Default=Undefined] optional boolean open);
H A DIDBKeyRange.h70 static IDBKeyRange* lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
H A DIDBKeyRange.cpp100 IDBKeyRange* IDBKeyRange::lowerBound(ExecutionContext* context, const ScriptValue& boundValue, bool open, ExceptionState& exceptionState) function in class:WebCore::IDBKeyRange
/external/chromium_org/remoting/ios/ui/
H A Dscene_view.h148 lowerBound:(int)lowerBound
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DExceptionMessages.h105 static String indexOutsideRange(const char* name, NumberType given, NumberType lowerBound, BoundType lowerType, NumberType upperBound, BoundType upperType) argument
114 result.append(formatNumber(lowerBound));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java86 return range.lowerBound.leastValueAbove(domain);
147 return Ranges.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain),
H A DTreeMultiset.java350 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { argument
351 checkNotNull(lowerBound);
353 range.intersect(GeneralRange.downTo(comparator, lowerBound, boundType)), rootReference);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundCheckerV2.cpp114 SVal lowerBound = local
118 Optional<NonLoc> lowerBoundToCheck = lowerBound.getAs<NonLoc>();
/external/guava/guava-tests/test/com/google/common/collect/
H A DRangeTest.java279 Cut<Integer> a = Ranges.lessThan(0).lowerBound;
280 Cut<Integer> b = Ranges.atLeast(0).lowerBound;
281 Cut<Integer> c = Ranges.greaterThan(0).lowerBound;
282 Cut<Integer> d = Ranges.atLeast(1).lowerBound;
283 Cut<Integer> e = Ranges.greaterThan(1).lowerBound;
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java1006 public CallCount(long lowerBound, long upperBound) { argument
1007 mLowerBound = lowerBound;
1021 public CallCount setLowerBound(long lowerBound) { argument
1022 mLowerBound = lowerBound;
1046 public Timeout(long lowerBound, long upperBound, long timeoutMillis) { argument
1047 super(lowerBound, upperBound);

Completed in 4967 milliseconds

123