HomeSort by relevance Sort by last modified time
    Searched full:timezones (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/res/res/xml/
preferred_time_zones.xml 20 <timezones>
25 </timezones>
  /external/chromium_org/chrome/browser/chromeos/system/
timezone_util.cc 59 // Resource keys for timezones use ':' in place of '/'.
73 // Depending on timezones, keeping all but the 1st component
99 // Some timezones have a non-integral hour offset. So, we need to use hh:mm
104 // TODO(jungshik): When coming up with a better list of timezones, we also
111 // multiple timezones with the same "LONG" name but with different
131 const std::vector<icu::TimeZone*> &timezones = local
134 for (std::vector<icu::TimeZone*>::const_iterator iter = timezones.begin();
135 iter != timezones.end(); ++iter) {
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 294 List<TimeZoneRow> timezones = new ArrayList<TimeZoneRow>();
296 timezones.add(new TimeZoneRow(ids[i], labels[i]));
298 Collections.sort(timezones);
300 CharSequence[][] timeZones = new CharSequence[2][timezones.size()];
302 for (TimeZoneRow row : timezones) {
303 timeZones[0][i] = row.mId;
304 timeZones[1][i++] = row.mDisplayName;
306 return timeZones;
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DateTest.java 86 // Timezones
93 static String[] TIMEZONES = { TZ_LONDON, TZ_PACIFIC, TZ_JAPAN };
236 // Loop through the timezones testing the String conversion for each
237 for (int i = 0; i < TIMEZONES.length; i++) {
238 testToString(TIMEZONES[i], TIME_ARRAY, SQL_TZ_DATEARRAYS[i]);
264 // Loop over the array of test timezones
265 for (int i = 0; i < TIMEZONES.length; i++) {
266 testSetTimelong(TIMEZONES[i], SQL_TZ_DATEARRAYS[i]);
TimeTest.java 62 // Timezones
69 static String[] TIMEZONES = { TZ_LONDON, TZ_PACIFIC, TZ_JAPAN };
90 // Loop through the timezones testing the String conversion for each
92 testToString(TIMEZONES[i], TIME_ARRAY, STRING_ARRAYS[i]);
  /cts/tests/tests/permission/src/android/permission/cts/
NoSystemFunctionPermissionTest.java 67 String[] timeZones = TimeZone.getAvailableIDs();
68 String timeZone = timeZones[0];
  /packages/apps/Settings/res/xml/
timezones.xml 0 <timezones>
87 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-bg/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-el/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-he/
timezones.xml 16 <timezones>
100 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-ja/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-ko/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-ru/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-sr/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-th/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-uk/
timezones.xml 16 <timezones>
101 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-zh/
timezones.xml 16 <timezones>
100 </timezones>
  /packages/apps/TvSettings/Settings/res/xml-zh-rTW/
timezones.xml 16 <timezones>
101 </timezones>
  /frameworks/opt/timezonepicker/res/values/
strings.xml 26 <!-- Item to show when no timezones are found. [CHAR LIMIT=NONE]-->
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
EventHandler.java 30 * midnight in more populated timezones.
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/prefixmapper/
PrefixTimeZonesMapTest.java 74 static List<String> buildListOfTimeZones(String ... timezones) {
75 ArrayList<String> timezonesList = new ArrayList<String>(timezones.length);
76 for (String timezone : timezones) {
  /packages/apps/TvSettings/Settings/res/xml/
timezones.xml 16 <!-- This is a copy of the data in packages/apps/Settings/res/xml/timezones.xml -->
18 <timezones>
103 </timezones>
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneResultAdapter.java 56 * The delimiter we use when serializing recent timezones to shared
61 /** The maximum number of recent timezones to save */
190 * preferences. If there are already the maximum number of recent timezones
  /frameworks/base/services/usage/java/com/android/server/usage/
UnixCalendar.java 21 * A handy calendar object that knows nothing of Locale's or TimeZones. This simplifies
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DateTimeActivity.java 602 ArrayList<TimeZoneInfo> timeZones = getTimeZones(context);
607 Collections.sort(timeZones);
611 for (TimeZoneInfo tz : timeZones) {
626 ArrayList<TimeZoneInfo> timeZones = new ArrayList<TimeZoneInfo>();
629 XmlResourceParser xrp = context.getResources().getXml(R.xml.timezones);
650 timeZones.add(new TimeZoneInfo(id, displayName, offset));
662 Log.e(TAG, "Ill-formatted timezones.xml file");
664 Log.e(TAG, "Unable to read timezones.xml file");
666 return timeZones;

Completed in 828 milliseconds

1 2 3 4 5 6