Home | History | Annotate | Download | only in calendar

Lines Matching refs:ids

170      * Static cache of all known timezones, mapped to their string IDs. This is
227 // we use a linked hash set to guarantee only unique IDs are added, and
229 LinkedHashSet<String> ids = new LinkedHashSet<String>();
232 ids.add(mCurrentTimezone);
235 ids.add(TimeZone.getDefault().getID());
243 ids.add(recent);
252 for (String id : ids) {
325 * Returns an array of ids/time zones.
327 * This returns a double indexed array of ids and time zones
332 * @return double array of tz ids and tz names
336 List<String> ids = new ArrayList<String>(sTimezones.keySet());
340 timeZones[0][i] = ids.get(i);
348 String[] ids = resources.getStringArray(R.array.timezone_values);
351 int length = ids.length;
354 if (ids.length != labels.length) {
355 Log.wtf(TAG, "ids length (" + ids.length + ") and labels length(" + labels.length +
359 sTimezones.put(ids[i], new TimezoneRow(ids[i], labels[i]));