Lines Matching refs:inclusive
546 RuleBasedTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const… in getNextTransition() argument
554 UBool found = findNext(base, inclusive, transitionTime, fromRule, toRule); in getNextTransition()
565 RuleBasedTimeZone::getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) c… in getPreviousTransition() argument
573 UBool found = findPrev(base, inclusive, transitionTime, fromRule, toRule); in getPreviousTransition()
738 RuleBasedTimeZone::findNext(UDate base, UBool inclusive, UDate& transitionTime, in findNext() argument
748 if (tt > base || (inclusive && tt == base)) { in findNext()
755 if (inclusive && tt == base) { in findNext()
764 … UBool avail0 = r0->getNextStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0); in findNext()
765 … UBool avail1 = r1->getNextStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1); in findNext()
789 if (tt < base || (!inclusive && tt == base)) { in findNext()
822 RuleBasedTimeZone::findPrev(UDate base, UBool inclusive, UDate& transitionTime, in findPrev() argument
831 if (inclusive && tt == base) { in findPrev()
838 if (inclusive && tt == base) { in findPrev()
847 …ol avail0 = r0->getPreviousStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0); in findPrev()
848 …ol avail1 = r1->getPreviousStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1); in findPrev()
872 if (tt < base || (inclusive && tt == base)) { in findPrev()