Home | History | Annotate | Download | only in i18n

Lines Matching defs:base

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);
683 UDate base;
686 base = date;
691 base -= localDelta;
693 UBool avail0 = fr0->getPreviousStart(base, fr1->getRawOffset(), fr1->getDSTSavings(), TRUE, start0);
695 base = date;
700 base -= localDelta;
702 UBool avail1 = fr1->getPreviousStart(base, fr0->getRawOffset(), fr0->getDSTSavings(), TRUE, start1);
713 RuleBasedTimeZone::findNext(UDate base, UBool inclusive, UDate& transitionTime,
723 if (tt > base || (inclusive && tt == base)) {
730 if (inclusive && tt == base) {
733 } else if (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)) {
797 RuleBasedTimeZone::findPrev(UDate base, UBool inclusive, UDate& transitionTime,
806 if (inclusive && tt == base) {
809 } else if (tt < base) {
813 if (inclusive && tt == base) {
816 } else if (tt < base) {
822 UBool avail0 = r0->getPreviousStart(base, r1->getRawOffset(), r1->getDSTSavings(), inclusive, start0);
823 UBool avail1 = r1->getPreviousStart(base, r0->getRawOffset(), r0->getDSTSavings(), inclusive, start1);
847 if (tt < base || (inclusive && tt == base)) {