Searched defs:time_zone (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Devent_posix.cc130 struct timezone time_zone; local
131 time_zone.tz_minuteswest = 0;
132 time_zone.tz_dsttime = 0;
133 gettimeofday(&value, &time_zone);
231 struct timezone time_zone;
232 time_zone.tz_minuteswest = 0;
233 time_zone.tz_dsttime = 0;
234 gettimeofday(&value, &time_zone);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtzbdtest.cpp189 TimeZoneBoundaryTest::verifyDST(UDate d, TimeZone* time_zone, UBool expUseDaylightTime, UBool expInDaylightTime, UDate expZoneOffset, UDate expDSTOffset) argument
193 logln("-- Verifying time " + dateToString(d) + " in zone " + time_zone->getID(str));
194 if (time_zone->inDaylightTime(d, status) == expInDaylightTime)
195 logln(UnicodeString("PASS: inDaylightTime = ") + (time_zone->inDaylightTime(d, status)?"true":"false"));
197 dataerrln(UnicodeString("FAIL: inDaylightTime = ") + (time_zone->inDaylightTime(d, status)?"true":"false"));
200 if (time_zone->useDaylightTime() == expUseDaylightTime)
201 logln(UnicodeString("PASS: useDaylightTime = ") + (time_zone->useDaylightTime()?"true":"false"));
203 dataerrln(UnicodeString("FAIL: useDaylightTime = ") + (time_zone->useDaylightTime()?"true":"false"));
204 if (time_zone->getRawOffset() == expZoneOffset)
207 dataerrln(UnicodeString("FAIL: getRawOffset() = ") + (time_zone
[all...]
H A Dtztest.cpp342 TimeZone* time_zone = TimeZone::createTimeZone("PST"); local
345 logln("The timezone is " + time_zone->getID(str));
346 if (!time_zone->inDaylightTime(d, status)) dataerrln("FAIL: inDaylightTime returned FALSE");
348 if (!time_zone->useDaylightTime()) dataerrln("FAIL: useDaylightTime returned FALSE");
349 if (time_zone->getRawOffset() != - 8 * millisPerHour) dataerrln("FAIL: getRawOffset returned wrong value");
354 if (time_zone->getOffset(gc->AD, gc->get(UCAL_YEAR, status), gc->get(UCAL_MONTH, status),
359 delete time_zone;
/external/chromium_org/v8/src/
H A Di18n.cc149 icu::UnicodeString time_zone; local
150 tz.getID(time_zone);
153 icu::TimeZone::getCanonicalID(time_zone, canonical_time_zone, status);
/external/icu/icu4c/source/test/intltest/
H A Dtzbdtest.cpp189 TimeZoneBoundaryTest::verifyDST(UDate d, TimeZone* time_zone, UBool expUseDaylightTime, UBool expInDaylightTime, UDate expZoneOffset, UDate expDSTOffset) argument
193 logln("-- Verifying time " + dateToString(d) + " in zone " + time_zone->getID(str));
194 if (time_zone->inDaylightTime(d, status) == expInDaylightTime)
195 logln(UnicodeString("PASS: inDaylightTime = ") + (time_zone->inDaylightTime(d, status)?"true":"false"));
197 dataerrln(UnicodeString("FAIL: inDaylightTime = ") + (time_zone->inDaylightTime(d, status)?"true":"false"));
200 if (time_zone->useDaylightTime() == expUseDaylightTime)
201 logln(UnicodeString("PASS: useDaylightTime = ") + (time_zone->useDaylightTime()?"true":"false"));
203 dataerrln(UnicodeString("FAIL: useDaylightTime = ") + (time_zone->useDaylightTime()?"true":"false"));
204 if (time_zone->getRawOffset() == expZoneOffset)
207 dataerrln(UnicodeString("FAIL: getRawOffset() = ") + (time_zone
[all...]
H A Dtztest.cpp333 TimeZone* time_zone = TimeZone::createTimeZone("PST"); local
336 logln("The timezone is " + time_zone->getID(str));
337 if (!time_zone->inDaylightTime(d, status)) dataerrln("FAIL: inDaylightTime returned FALSE");
339 if (!time_zone->useDaylightTime()) dataerrln("FAIL: useDaylightTime returned FALSE");
340 if (time_zone->getRawOffset() != - 8 * millisPerHour) dataerrln("FAIL: getRawOffset returned wrong value");
345 if (time_zone->getOffset(gc->AD, gc->get(UCAL_YEAR, status), gc->get(UCAL_MONTH, status),
350 delete time_zone;
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc441 static void SetTimeZone(const char* time_zone) { argument
443 // and not being present, so we have to consider the case of time_zone
449 std::string("TZ=") + (time_zone ? time_zone : "");
455 if (time_zone) {
456 setenv(("TZ"), time_zone, 1);
/external/gtest/test/
H A Dgtest_unittest.cc446 static void SetTimeZone(const char* time_zone) { argument
448 // and not being present, so we have to consider the case of time_zone
454 std::string("TZ=") + (time_zone ? time_zone : "");
462 if (time_zone) {
463 setenv(("TZ"), time_zone, 1);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_config.h411 char *time_zone; member in struct:hostapd_bss_config
/external/wpa_supplicant_8/src/ap/
H A Dap_config.h411 char *time_zone; member in struct:hostapd_bss_config
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dap_config.h411 char *time_zone; member in struct:hostapd_bss_config

Completed in 3824 milliseconds