HomeSort by relevance Sort by last modified time
    Searched defs:timezone (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/v8/test/mjsunit/regress/
regress-3116.js 5 function timezone(tz) { function
19 if (timezone("CET")) {
118 if (timezone("BRT")) {
217 if (timezone("PST")) {
  /development/ndk/platforms/android-3/include/sys/
timeb.h 38 short timezone; member in struct:timeb
  /external/chromium_org/chrome/browser/chromeos/system/
timezone_util.cc 21 #include "third_party/icu/source/i18n/unicode/timezone.h"
35 // Returns an exemplary city in the given timezone.
36 base::string16 GetExemplarCity(const icu::TimeZone& zone) {
72 // Take the last component of a timezone id (e.g. 'Baz' in 'Foo/Bar/Baz').
75 // any timezone for which that's the case.
84 // Gets the given timezone's name for visualization.
85 base::string16 GetTimezoneName(const icu::TimeZone& timezone) {
92 timezone.getOffset(now, false, raw_offset, dst_offset, status);
114 timezone.getDisplayName(dst_offset != 0, icu::TimeZone::LONG, name)
136 const icu::TimeZone* timezone = *iter; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
time.h 36 struct timezone { struct
  /development/ndk/platforms/android-3/include/linux/
time.h 30 struct timezone { struct
  /development/ndk/platforms/android-L/include/linux/
time.h 36 struct timezone { struct
  /external/chromium_org/chrome/browser/chromeos/timezone/
timezone_unittest.cc 7 #include "chrome/browser/chromeos/timezone/timezone_provider.h"
23 "https://localhost/maps/api/timezone/json?";
36 : url("https://localhost/maps/api/timezone/"
51 timezone.dstOffset = 0;
52 timezone.rawOffset = -28800;
53 timezone.timeZoneId = "America/Los_Angeles";
54 timezone.timeZoneName = "Pacific Standard Time";
55 timezone.error_message.erase();
56 timezone.status = chromeos::TimeZoneResponseData::OK;
61 timezone.ToStringForDebug())
67 chromeos::TimeZoneResponseData timezone; member in struct:__anon8106::SimpleRequest
187 const TimeZoneResponseData* timezone() const { return timezone_.get(); } function in class:chromeos::TimeZoneReceiver
    [all...]
timezone_request.cc 5 #include "chrome/browser/chromeos/timezone/timezone_request.h"
30 "https://maps.googleapis.com/maps/api/timezone/json?";
46 // Sleep between timezone request retry on HTTP error.
49 // Sleep between timezone request retry on bad server response.
95 "TimeZone.TimeZoneRequest.Event", event, TIMEZONE_REQUEST_EVENT_COUNT);
99 UMA_HISTOGRAM_SPARSE_SLOWLY("TimeZone.TimeZoneRequest.ResponseCode", code);
102 // Slow timezone resolve leads to bad user experience.
105 UMA_HISTOGRAM_TIMES("TimeZone.TimeZoneRequest.ResponseSuccessTime",
108 UMA_HISTOGRAM_TIMES("TimeZone.TimeZoneRequest.ResponseFailureTime",
115 "TimeZone.TimeZoneRequest.Result", result, TIMEZONE_REQUEST_RESULT_COUNT)
372 scoped_ptr<TimeZoneResponseData> timezone = GetTimeZoneFromResponse( local
    [all...]
  /external/kernel-headers/original/uapi/linux/
time.h 20 struct timezone { struct
  /external/libnfc-nci/src/include/
buildcfg.h 96 short timezone; member in struct:_timeb
  /external/lldb/examples/summaries/cocoa/
NSDate.py 34 return time.mktime(t)-time.timezone
165 def timezone(self): member in class:NSTimeZoneClass_SummaryProvider
246 summary = provider.timezone();
  /bionic/libc/bionic/
ndk_cruft.cpp 275 short timezone; member in struct:timeb
282 struct timezone tz;
295 tb->timezone = tz.tz_minuteswest;
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_screen_handler.cc 338 const base::ListValue* timezone = NULL; local
339 CHECK(timezones->GetList(i, &timezone));
342 CHECK(timezone->GetString(0, &timezone_id));
345 CHECK(timezone->GetString(1, &timezone_name));
  /external/chromium_org/third_party/libevent/compat/sys/
_libevent_time.h 66 struct timezone { struct
_time.h 66 struct timezone { struct
  /external/chromium_org/content/zygote/
zygote_main_linux.cc 43 #include "third_party/icu/source/i18n/unicode/timezone.h"
127 std::string result, timezone; local
129 !reply.ReadString(&iter, &timezone) ||
137 const size_t copy_len = std::min(timezone_out_len - 1, timezone.size());
138 memcpy(timezone_out, timezone.data(), copy_len);
351 // Olson timezone ID by accessing the zoneinfo files on disk. After
352 // TimeZone::createDefault is called once here, the timezone ID is
354 scoped_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault())
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
icuzdump.cpp 16 * This tool write out timezone transitions for ICU timezone. This tool
17 * is used as a part of tzdata update process to check if ICU timezone
29 #include "unicode/timezone.h"
115 void setTimeZone(TimeZone* tz) {
116 timezone = tz;
136 timezone->getOffset(t, FALSE, rawOffset, dstOffset, status);
141 timezone->getOffset(newt, FALSE, newRawOffset, newDstOffset, status);
157 timezone->getOffset(medt, FALSE, medRawOffset, medDstOffset, status);
191 GregorianCalendar* gcal = new GregorianCalendar(timezone, Locale::getEnglish(), status)
202 TimeZone* timezone; member in class:ICUZDump
    [all...]
localtime.c 222 time_t timezone = 0; variable
266 timezone = 0;
286 timezone = -(ttisp->tt_gmtoff);
    [all...]
  /external/chromium_org/v8/src/
i18n.cc 21 #include "unicode/timezone.h"
83 icu::TimeZone* tz = NULL;
84 icu::UnicodeString timezone; local
85 if (ExtractStringSetting(isolate, options, "timeZone", &timezone)) {
86 tz = icu::TimeZone::createTimeZone(timezone);
88 tz = icu::TimeZone::createDefault();
148 const icu::TimeZone& tz = calendar->getTimeZone();
153 icu::TimeZone::getCanonicalID(time_zone, canonical_time_zone, status)
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
icuzdump.cpp 16 * This tool write out timezone transitions for ICU timezone. This tool
17 * is used as a part of tzdata update process to check if ICU timezone
29 #include "unicode/timezone.h"
115 void setTimeZone(TimeZone* tz) {
116 timezone = tz;
136 timezone->getOffset(t, FALSE, rawOffset, dstOffset, status);
141 timezone->getOffset(newt, FALSE, newRawOffset, newDstOffset, status);
157 timezone->getOffset(medt, FALSE, medRawOffset, medDstOffset, status);
191 GregorianCalendar* gcal = new GregorianCalendar(timezone, Locale::getEnglish(), status)
202 TimeZone* timezone; member in class:ICUZDump
    [all...]
localtime.c 222 time_t timezone = 0; variable
266 timezone = 0;
286 timezone = -(ttisp->tt_gmtoff);
    [all...]
  /bionic/libc/tzcode/
localtime.c 235 long timezone = 0; variable
276 timezone = 0;
304 timezone = -(ttisp->tt_gmtoff);
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 32 import java.util.TimeZone;
86 String timeZone = "US/Pacific";
88 Time time = new Time(timeZone);
89 assertEquals(timeZone, time.timezone);
91 assertEquals(anotherTimeZone, time.timezone);
110 assertEquals(time.timezone, anotherTime.timezone);
140 assertEquals(Time.TIMEZONE_UTC, anotherTime.timezone);
539 assertEquals(tz, t.timezone);
618 String timezone = "America\/New_York"; local
709 String timezone = "America\/New_York"; local
1348 String timezone = PstPdt.ID; local
2060 String timezone = PstPdt.ID; local
2455 String timezone = "Europe\/London"; local
2506 String timezone = "Europe\/London"; local
2557 String timezone = "Europe\/London"; local
2645 String timezone = "Pacific\/Kiritimati"; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
ccaltst.c 117 log_verbose("The number of timezone id's present with offset 0 are %d:\n", count);
175 log_verbose("%s returned %d timezone id's:\n", api, count);
357 log_err("FAIL: Error in getting the timezone display name : %s\n", u_errorName(status));
438 /*testing if the UCalendar's timezone is currently in day light saving's time*/
1824 const UChar * timezone; member in struct:__anon16815
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ccaltst.c 118 log_verbose("The number of timezone id's present with offset 0 are %d:\n", count);
176 log_verbose("%s returned %d timezone id's:\n", api, count);
358 log_err("FAIL: Error in getting the timezone display name : %s\n", u_errorName(status));
439 /*testing if the UCalendar's timezone is currently in day light saving's time*/
1828 const UChar * timezone; member in struct:__anon1548
    [all...]

Completed in 677 milliseconds

1 2