HomeSort by relevance Sort by last modified time
    Searched refs:inclusive (Results 1 - 25 of 37) sorted by null

1 2

  /external/icu4c/test/intltest/
tzrulets.h 44 UDate start, UDate end, UBool inclusive);
46 UDate start, UDate end, UBool inclusive);
tzrulets.cpp 688 // Ascending/inclusive
692 // Descending/inclusive
    [all...]
  /libcore/luni/src/main/java/java/util/
NavigableSet.java 31 * whether lower and upper bounds are inclusive versus exclusive.
182 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
203 * (or equal to, if {@code inclusive} is true) {@code toElement}. The
212 * @param inclusive {@code true} if the high endpoint
215 * (or equal to, if {@code inclusive} is true) {@code toElement}
228 NavigableSet<E> headSet(E toElement, boolean inclusive);
232 * than (or equal to, if {@code inclusive} is true) {@code fromElement}.
241 * @param inclusive {@code true} if the low endpoint
257 NavigableSet<E> tailSet(E fromElement, boolean inclusive);
NavigableMap.java 34 * whether lower and upper bounds are inclusive versus exclusive.
308 * equal to, if {@code inclusive} is true) {@code toKey}. The returned
317 * @param inclusive {@code true} if the high endpoint
320 * (or equal to, if {@code inclusive} is true) {@code toKey}
333 NavigableMap<K,V> headMap(K toKey, boolean inclusive);
337 * equal to, if {@code inclusive} is true) {@code fromKey}. The returned
346 * @param inclusive {@code true} if the low endpoint
349 * (or equal to, if {@code inclusive} is true) {@code fromKey}
362 NavigableMap<K,V> tailMap(K fromKey, boolean inclusive);
TreeMap.java 698 Bound fromBound = fromInclusive ? INCLUSIVE : EXCLUSIVE;
699 Bound toBound = toInclusive ? INCLUSIVE : EXCLUSIVE;
704 return new BoundedMap(true, fromInclusive, INCLUSIVE, toExclusive, EXCLUSIVE);
707 public NavigableMap<K, V> headMap(K to, boolean inclusive) {
708 Bound toBound = inclusive ? INCLUSIVE : EXCLUSIVE;
716 public NavigableMap<K, V> tailMap(K from, boolean inclusive) {
717 Bound fromBound = inclusive ? INCLUSIVE : EXCLUSIVE;
722 return new BoundedMap(true, fromInclusive, INCLUSIVE, null, NO_BOUND)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 39 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive);
47 ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive);
ConcurrentSkipListSet.java 386 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
387 return new ConcurrentSkipListSet<E>(m.headMap(toElement, inclusive));
395 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
396 return new ConcurrentSkipListSet<E>(m.tailMap(fromElement, inclusive));
ConcurrentSkipListMap.java     [all...]
  /external/icu4c/i18n/unicode/
basictz.h 45 * @param inclusive Whether the base time is inclusive or not.
50 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/ = 0;
55 * @param inclusive Whether the base time is inclusive or not.
60 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/ = 0;
68 * @param start The start time of the evaluated time range (inclusive)
69 * @param end The end time of the evaluated time range (inclusive)
tzrule.h 132 * @param inclusive Whether the base time is inclusive or not.
140 UBool inclusive, UDate& result) const = 0;
149 * @param inclusive Whether the base time is inclusive or not.
157 UBool inclusive, UDate& result) const = 0;
314 * @param inclusive Whether the base time is inclusive or not.
322 UBool inclusive, UDate& result) const;
331 * @param inclusive Whether the base time is inclusive or not
    [all...]
rbtz.h 253 * @param inclusive Whether the base time is inclusive or not.
258 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/;
263 * @param inclusive Whether the base time is inclusive or not.
268 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/;
312 UBool findNext(UDate base, UBool inclusive, UDate& time, TimeZoneRule*& from, TimeZoneRule*& to) const;
313 UBool findPrev(UDate base, UBool inclusive, UDate& time, TimeZoneRule*& from, TimeZoneRule*& to) const;
vtzone.h 317 * @param inclusive Whether the base time is inclusive or not.
322 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/;
327 * @param inclusive Whether the base time is inclusive or not.
332 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/;
simpletz.h     [all...]
  /external/icu4c/i18n/
zrule.cpp 129 int32_t prevDSTSavings, UBool inclusive, UDate& result) {
130 return ((InitialTimeZoneRule*)rule)->InitialTimeZoneRule::getNextStart(base, prevRawOffset, prevDSTSavings, inclusive, result);
135 int32_t prevDSTSavings, UBool inclusive, UDate& result) {
136 return ((InitialTimeZoneRule*)rule)->InitialTimeZoneRule::getPreviousStart(base, prevRawOffset, prevDSTSavings, inclusive, result);
zrule.h 239 * @param inclusive Whether the base time is inclusive or not.
248 int32_t prevDSTSavings, UBool inclusive, UDate& result);
258 * @param inclusive Whether the base time is inclusive or not.
267 int32_t prevDSTSavings, UBool inclusive, UDate& result);
rbtz.cpp 526 RuleBasedTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/ {
534 UBool found = findNext(base, inclusive, transitionTime, fromRule, toRule);
545 RuleBasedTimeZone::getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/ {
553 UBool found = findPrev(base, inclusive, transitionTime, fromRule, toRule);
713 RuleBasedTimeZone::findNext(UDate base, UBool inclusive, UDate& transitionTime,
723 if (tt > base || (inclusive && tt == base)) {
730 if (inclusive && tt == base) {
739 UBool avail0 = r0->getNextStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0);
740 UBool avail1 = r1->getNextStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1);
764 if (tt < base || (!inclusive && tt == base))
    [all...]
vzone.cpp 161 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) {
162 return ((VTimeZone*)zone)->VTimeZone::getNextTransition(base, inclusive, *(TimeZoneTransition*)result);
166 vzone_getPreviousTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) {
167 return ((VTimeZone*)zone)->VTimeZone::getPreviousTransition(base, inclusive, *(TimeZoneTransition*)result);
olsontz.h 229 * @param inclusive Whether the base time is inclusive or not.
233 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/;
239 * @param inclusive Whether the base time is inclusive or not.
243 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/;
tzrule.cpp 162 UBool /*inclusive*/,
171 UBool /*inclusive*/,
354 UBool inclusive,
363 if (tmp < base || (!inclusive && (tmp == base))) {
378 UBool inclusive,
387 if (tmp > base || (!inclusive && (tmp == base))) {
544 UBool inclusive,
549 if (time < base || (!inclusive && time == base)) {
564 UBool inclusive,
569 if (time < base || (inclusive && time == base))
    [all...]
vzone.h 322 * @param inclusive Whether the base time is inclusive or not.
328 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result);
334 * @param inclusive Whether the base time is inclusive or not.
340 vzone_getPreviousTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result);
olsontz.cpp 854 OlsonTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/ {
862 if (inclusive && base == firstFinalTZTransition->getTime()) {
867 //return finalZone->getNextTransition(base, inclusive, result);
868 return finalZoneWithStartYear->getNextTransition(base, inclusive, result);
881 if (base > t || (!inclusive && base == t)) {
    [all...]
simpletz.cpp     [all...]
  /external/valgrind/main/callgrind/
callgrind_annotate.in 155 # Inclusive statistics (with subroutine events)
156 my $inclusive = 0;
158 # Inclusive totals for each function, for overall summary.
213 --inclusive=yes|no add subroutine costs to functions calls [no]
279 # --inclusive=yes|no
280 } elsif ($arg =~ /^--inclusive=(yes|no)$/) {
281 $inclusive = 1 if ($1 eq "yes");
282 $inclusive = 0 if ($1 eq "no");
567 # inclusive costs
573 if ($inclusive) {
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domstringlistgetlength01.js 79 The range of valid child node indices is 0 to length-1 inclusive.
  /dalvik/vm/arch/arm/
CallOldABI.S 126 @ inclusive and get the right set of args.

Completed in 3716 milliseconds

1 2