Lines Matching refs:inclusive

544 RuleBasedTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const…  in getNextTransition()  argument
552 UBool found = findNext(base, inclusive, transitionTime, fromRule, toRule); in getNextTransition()
563 RuleBasedTimeZone::getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) c… in getPreviousTransition() argument
571 UBool found = findPrev(base, inclusive, transitionTime, fromRule, toRule); in getPreviousTransition()
736 RuleBasedTimeZone::findNext(UDate base, UBool inclusive, UDate& transitionTime, in findNext() argument
746 if (tt > base || (inclusive && tt == base)) { in findNext()
753 if (inclusive && tt == base) { in findNext()
762 … UBool avail0 = r0->getNextStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0); in findNext()
763 … UBool avail1 = r1->getNextStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1); in findNext()
787 if (tt < base || (!inclusive && tt == base)) { in findNext()
820 RuleBasedTimeZone::findPrev(UDate base, UBool inclusive, UDate& transitionTime, in findPrev() argument
829 if (inclusive && tt == base) { in findPrev()
836 if (inclusive && tt == base) { in findPrev()
845 …ol avail0 = r0->getPreviousStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0); in findPrev()
846 …ol avail1 = r1->getPreviousStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1); in findPrev()
870 if (tt < base || (inclusive && tt == base)) { in findPrev()