Searched defs:dstDate (Results 1 - 2 of 2) sorted by relevance
/external/chromium/third_party/icu/source/i18n/ |
H A D | simpletz.cpp | 983 UDate stdDate, dstDate; local 985 UBool dstAvail = dstRule->getNextStart(base, stdRule->getRawOffset(), stdRule->getDSTSavings(), inclusive, dstDate); 986 if (stdAvail && (!dstAvail || stdDate < dstDate)) { 992 if (dstAvail && (!stdAvail || dstDate < stdDate)) { 993 result.setTime(dstDate); 1017 UDate stdDate, dstDate; local 1019 UBool dstAvail = dstRule->getPreviousStart(base, stdRule->getRawOffset(), stdRule->getDSTSavings(), inclusive, dstDate); 1020 if (stdAvail && (!dstAvail || stdDate > dstDate)) { 1026 if (dstAvail && (!stdAvail || dstDate > stdDate)) { 1027 result.setTime(dstDate); [all...] |
/external/icu4c/i18n/ |
H A D | simpletz.cpp | 983 UDate stdDate, dstDate; local 985 UBool dstAvail = dstRule->getNextStart(base, stdRule->getRawOffset(), stdRule->getDSTSavings(), inclusive, dstDate); 986 if (stdAvail && (!dstAvail || stdDate < dstDate)) { 992 if (dstAvail && (!stdAvail || dstDate < stdDate)) { 993 result.setTime(dstDate); 1017 UDate stdDate, dstDate; local 1019 UBool dstAvail = dstRule->getPreviousStart(base, stdRule->getRawOffset(), stdRule->getDSTSavings(), inclusive, dstDate); 1020 if (stdAvail && (!dstAvail || stdDate > dstDate)) { 1026 if (dstAvail && (!stdAvail || dstDate > stdDate)) { 1027 result.setTime(dstDate); [all...] |
Completed in 178 milliseconds