HomeSort by relevance Sort by last modified time
    Searched refs:timezone (Results 51 - 75 of 515) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/sys/
timeb.h 38 short timezone; member in struct:timeb
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/sys/
timeb.h 38 short timezone; member in struct:timeb
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/
timeb.h 38 short timezone; member in struct:timeb
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/
timeb.h 38 short timezone; member in struct:timeb
  /bionic/libc/bionic/
ftime.c 33 struct timezone tz;
45 tb->timezone = tz.tz_minuteswest;
  /external/chromium/chrome/browser/chromeos/
system_access.h 11 #include "unicode/timezone.h"
16 // timezone setting.
21 // Called when the timezone has changed. |timezone| is non-null.
22 virtual void TimezoneChanged(const icu::TimeZone& timezone) = 0;
27 // Returns the current timezone as an icu::Timezone object.
28 virtual const icu::TimeZone& GetTimezone() = 0;
30 // Sets the current timezone. |timezone| must be non-null
    [all...]
system_access.cc 20 // The filepath to the timezone file that symlinks to the actual timezone file.
21 const char kTimezoneSymlink[] = "/var/lib/timezone/localtime";
22 const char kTimezoneSymlink2[] = "/var/lib/timezone/localtime2";
24 // The directory that contains all the timezone files. So for timezone
25 // "US/Pacific", the actual timezone file is: "/usr/share/zoneinfo/US/Pacific"
59 virtual const icu::TimeZone& GetTimezone();
60 virtual void SetTimezone(const icu::TimeZone& timezone);
183 icu::TimeZone* timezone = local
    [all...]
mock_system_access.h 18 MOCK_METHOD0(GetTimezone, const icu::TimeZone&());
19 MOCK_METHOD1(SetTimezone, void(const icu::TimeZone& timezone));
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
Utils.java 23 int month, int year, String timezone) {
24 Time t = new Time(timezone);
  /external/chromium_org/chrome/browser/chromeos/system/
timezone_settings.cc 24 #include "third_party/icu/source/i18n/unicode/timezone.h"
30 // The filepath to the timezone file that symlinks to the actual timezone file.
31 const char kTimezoneSymlink[] = "/var/lib/timezone/localtime";
32 const char kTimezoneSymlink2[] = "/var/lib/timezone/localtime2";
34 // The directory that contains all the timezone files. So for timezone
35 // "US/Pacific", the actual timezone file is: "/usr/share/zoneinfo/US/Pacific"
43 // we still have 400+ zones. Relaxing the criteria for the timezone
170 // incorrect states of the timezone symlink on startup. Thus errors occurin
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
system_settings_provider.cc 25 #include "unicode/timezone.h"
32 // we still have 400+ zones. Relaxing the criteria for the timezone
131 string16 GetExemplarCity(const icu::TimeZone& zone) {
167 // Take the last component of a timezone id (e.g. 'Baz' in 'Foo/Bar/Baz').
170 // any timezone for which that's the case.
185 timezones_.push_back(icu::TimeZone::createTimeZone(
207 const icu::TimeZone* timezone = GetTimezone(value); local
208 if (!timezone)
210 SystemAccess::GetInstance()->SetTimezone(*timezone);
237 const icu::TimeZone* timezone = *iter; local
295 const icu::TimeZone* timezone = *iter; local
    [all...]
  /frameworks/base/core/jni/
Time.cpp 46 if (0 == strcmp(a.timezone, b.timezone)) {
81 Time::switchTimezone(const char* timezone)
83 time_t seconds = mktime_tz(&(this->t), this->timezone);
84 localtime_tz(&seconds, &(this->t), timezone);
146 bool inUtc = strcmp("UTC", timezone) == 0;
165 t.tm_sec, timezone, t.tm_wday, t.tm_yday, tm_gmtoff, t.tm_isdst,
176 localtime_tz(&seconds, &(this->t), this->timezone);
185 int64_t r = mktime_tz(&(this->t), this->timezone);
195 localtime_tz(&seconds, &(this->t), this->timezone);
    [all...]
  /external/chromium_org/chrome/test/functional/
chromeos_time.py 18 """Tests for the ChromeOS status area clock and timezone settings."""
23 self._initial_timezone = self.GetTimeInfo()['timezone']
31 """Print the the display time, date, and timezone."""
35 """Sanity test to make sure setting the timezone works."""
45 """Check if the timezone is editable.
48 timezone settings drop down is not disabled.
51 True, if timezone dropdown is enabled
57 var timezone = document.getElementById('timezone-select');
58 if (timezone)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CityObj.java 31 public CityObj(String name, String timezone, String id) {
33 mTimeZone = timezone;
41 ", timezone=" + mTimeZone +
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 169 * @param timezone
173 protected void insertCalendar(String name, String timezone, String calendarUrl)
189 values.put(CalendarContract.Calendars.CALENDAR_TIME_ZONE, timezone);
232 // Constructor for normal events, using the default timezone
261 // Constructor for normal events, specifying the timezone
263 boolean allDay, String timezone) {
264 init(title, startDate, endDate, allDay, timezone);
268 boolean allDay, String timezone) {
272 time.timezone = Time.TIMEZONE_UTC;
273 } else if (timezone != null)
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 22 import java.util.TimeZone;
114 * The timezone for this Time. Should not be null.
116 public String timezone; field in class:Time
160 * Construct a Time object in the timezone named by the string
161 * argument "timezone". The time is initialized to Jan 1, 1970.
162 * @param timezone string containing the timezone to use.
163 * @see TimeZone
165 public Time(String timezone) {
166 if (timezone == null)
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
XMLGregorianCalendar.java 25 import java.util.TimeZone;
132 * <tr id="datetimefield-timezone">
133 * <td> timezone </td>
158 * {@link #toGregorianCalendar(java.util.TimeZone timezone, java.util.Locale aLocale, XMLGregorianCalendar defaults)},
203 * int timezone)},
212 * int timezone)},
218 * int timezone)},
223 * int timezone)},
229 * int timezone)} o
684 int timezone = getTimezone(); local
    [all...]
DatatypeFactory.java     [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
timezone_options_util.cc 21 #include "third_party/icu/source/i18n/unicode/timezone.h"
35 // Returns an exemplary city in the given timezone.
36 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 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)
133 const icu::TimeZone* timezone = *iter; local
    [all...]
  /bionic/libc/unistd/
time.c 39 if (gettimeofday(&tt, (struct timezone *)0) < 0)
  /external/chromium_org/chrome/browser/chromeos/settings/
system_settings_provider.h 14 #include "third_party/icu/source/i18n/unicode/timezone.h"
35 virtual void TimezoneChanged(const icu::TimeZone& timezone) OVERRIDE;
  /external/kernel-headers/original/asm-x86/
vsyscall.h 37 extern struct timezone sys_tz;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 30 public void __constructor__(String timezone) {
31 if (timezone == null) {
32 throw new NullPointerException("timezone is null!");
34 time.timezone = timezone;
46 time.timezone = other.timezone;
142 public void clear(String timezone) {
143 if (timezone == null) {
144 throw new NullPointerException("timezone is null!")
    [all...]
  /bionic/libc/include/sys/
time.h 37 extern int gettimeofday(struct timeval *, struct timezone *);
38 extern int settimeofday(const struct timeval *, const struct timezone *);
  /development/ndk/platforms/android-3/include/sys/
time.h 37 extern int gettimeofday(struct timeval *, struct timezone *);
38 extern int settimeofday(const struct timeval *, const struct timezone *);

Completed in 1439 milliseconds

1 23 4 5 6 7 8 91011>>