• Home
  • Raw
  • Download

Lines Matching refs:inclusive

526 RuleBasedTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*con…  in getNextTransition()  argument
534 UBool found = findNext(base, inclusive, transitionTime, fromRule, toRule); in getNextTransition()
545 RuleBasedTimeZone::getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /… in getPreviousTransition() argument
553 UBool found = findPrev(base, inclusive, transitionTime, fromRule, toRule); in getPreviousTransition()
713 RuleBasedTimeZone::findNext(UDate base, UBool inclusive, UDate& transitionTime, in findNext() argument
723 if (tt > base || (inclusive && tt == base)) { in findNext()
730 if (inclusive && tt == base) { in findNext()
739 … UBool avail0 = r0->getNextStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0); in findNext()
740 … UBool avail1 = r1->getNextStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1); in findNext()
764 if (tt < base || (!inclusive && tt == base)) { in findNext()
797 RuleBasedTimeZone::findPrev(UDate base, UBool inclusive, UDate& transitionTime, in findPrev() argument
806 if (inclusive && tt == base) { in findPrev()
813 if (inclusive && tt == base) { in findPrev()
822 …ol avail0 = r0->getPreviousStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0); in findPrev()
823 …ol avail1 = r1->getPreviousStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1); in findPrev()
847 if (tt < base || (inclusive && tt == base)) { in findPrev()