Lines Matching refs:data

125  * (from 1 to 7).  These numbers are taken from the locale resource data when a
315 // millis from the fields, and vice versa. The data needed to do this
317 // The data provided by the TimeZone object may also be overridden if the
322 // If the user sets the fields using set(), the data flow is as follows.
336 // UTC millis (in time data member)
339 // the data flow is as follows. This is implemented by the Calendar
342 // UTC millis (in time data member)
900 * uses the time zone data to translate between locale and GMT time.
974 * The version of the serialized data on the stream. Possible values:
1594 * @param aLocale the locale for the week data
1647 * @param aLocale the locale for the week data
1661 * @param aLocale the locale for the week data
3374 /* try to get the Locale data from the cache */
3375 int[] data = cachedLocaleData.get(desiredLocale);
3376 if (data == null) { /* cache miss */
3377 data = new int[2];
3378 // BEGIN Android-changed: Use ICU4C to get week data.
3379 // data[0] = CalendarDataUtility.retrieveFirstDayOfWeek(desiredLocale);
3380 // data[1] = CalendarDataUtility.retrieveMinimalDaysInFirstWeek(desiredLocale);
3382 data[0] = localeData.firstDayOfWeek.intValue();
3383 data[1] = localeData.minimalDaysInFirstWeek.intValue();
3384 // END Android-changed: Use ICU4C to get week data.
3385 cachedLocaleData.putIfAbsent(desiredLocale, data);
3387 firstDayOfWeek = data[0];
3388 minimalDaysInFirstWeek = data[1];
3489 * Ideally, <code>Calendar</code> would only write out its state data and
3490 * the current time, and not write any field data out, such as