HomeSort by relevance Sort by last modified time
    Searched refs:months (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
datedata.h 25 static int months[] = { variable
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
datedata.h 25 static int months[] = { variable
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
MonthInputType.cpp 91 double months = date.monthsSinceEpoch(); local
92 ASSERT(std::isfinite(months));
93 return Decimal::fromDouble(months);
108 double months = date.monthsSinceEpoch(); local
109 ASSERT(std::isfinite(months));
110 return Decimal::fromDouble(months);
  /external/ppp/pppd/plugins/radius/
util.c 27 static const char * months[] = variable
40 if (strncmp (months[i], valstr, 3) == 0)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
DatePicker.java 118 mSelectedMonth = mConstant.months[0];
164 PickerColumn months = new PickerColumn(mConstant.months); local
172 ret.add(months);
203 mSelectedMonth = mConstant.months[month];
262 if (mSelectedMonth.equals(mConstant.months[1])) {
268 } else if (mSelectedMonth.equals(mConstant.months[3])
269 || mSelectedMonth.equals(mConstant.months[5])
270 || mSelectedMonth.equals(mConstant.months[8])
271 || mSelectedMonth.equals(mConstant.months[10]))
    [all...]
PickerConstant.java 32 public final String[] months; field in class:PickerConstant
45 // TODO re-init months and ampm if the locale changes
46 months = new DateFormatSymbols().getShortMonths();
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 33 * months, the names of the days of the week, and the time zone data.
59 String[] ampms, eras, months, shortMonths, shortWeekdays, weekdays; field in class:DateFormatSymbols
109 this.months = localeData.longMonthNames;
199 Arrays.equals(months, rhs.months) &&
224 ",months=" + Arrays.toString(months) +
263 * Returns the array of strings containing the full names of the months. Use
270 return months.clone();
275 * months. Use the {@link java.util.Calendar} constant
    [all...]
  /external/chromium_org/third_party/icu/source/samples/cal/
cal.c 64 UChar *months [], UBool useLongNames,
67 static void free_months(UChar *months[]);
79 UChar *days [], UChar *months [],
89 /* Number of months in a year (yes, 13) */
92 /* Separation between months in year view */
168 /* Adjust because months are 0-based */
233 UChar *months [MONTH_COUNT]; local
253 print_year(c, days, months, useLongNames, fdow, status);
359 UChar *months [],
368 get_symbols(fmt, monthType, months, MONTH_COUNT - 1, 0, 0, status); /* some locales have 13 months, no idea why *
    [all...]
  /external/icu/icu4c/source/samples/cal/
cal.c 64 UChar *months [], UBool useLongNames,
67 static void free_months(UChar *months[]);
79 UChar *days [], UChar *months [],
89 /* Number of months in a year (yes, 13) */
92 /* Separation between months in year view */
168 /* Adjust because months are 0-based */
233 UChar *months [MONTH_COUNT]; local
253 print_year(c, days, months, useLongNames, fdow, status);
359 UChar *months [],
368 get_symbols(fmt, monthType, months, MONTH_COUNT - 1, 0, 0, status); /* some locales have 13 months, no idea why *
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 116 String[] months = dfs.getShortMonths(); local
123 if (months[0].startsWith("1")) {
124 for (int i = 0; i < months.length; i++) {
125 months[i] = String.valueOf(i + 1);
132 mMonthPicker.setDisplayedValues(months);
190 reorderPickers(months);
205 private void reorderPickers(String[] months) {
216 if (months[0].startsWith("1")) {
  /external/chromium_org/third_party/icu/source/i18n/
islamcal.cpp 54 // cache of months
535 // Guess at the number of elapsed full months since the epoch
536 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH);
538 startDate = uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH);
547 months++;
552 while ((startDate = trueMonthStart(months)) > days) {
554 months--;
557 year = months / 12 + 1;
558 month = months % 12;
hebrwcal.cpp 66 * The lengths of the Hebrew months. This is complicated, because there
393 int32_t months = (235 * year - 234) / 19; // # of months before year local
395 int64_t frac = (int64_t)months * MONTH_FRACT + BAHARAD; // Fractional part of day #
396 day = months * 29 + (int32_t)(frac / DAY_PARTS); // Whole # part of calculation
497 // Resolve out-of-range months. This is necessary in order to
559 double m = ((d * (double)DAY_PARTS)/ (double) MONTH_PARTS); // Months (approx)
627 // Resolve out-of-range months. This is necessary in order to
  /external/icu/icu4c/source/i18n/
islamcal.cpp 54 // cache of months
535 // Guess at the number of elapsed full months since the epoch
536 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH);
538 startDate = uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH);
547 months++;
552 while ((startDate = trueMonthStart(months)) > days) {
554 months--;
557 year = months / 12 + 1;
558 month = months % 12;
hebrwcal.cpp 66 * The lengths of the Hebrew months. This is complicated, because there
393 int32_t months = (235 * year - 234) / 19; // # of months before year local
395 int64_t frac = (int64_t)months * MONTH_FRACT + BAHARAD; // Fractional part of day #
396 day = months * 29 + (int32_t)(frac / DAY_PARTS); // Whole # part of calculation
497 // Resolve out-of-range months. This is necessary in order to
566 double m = ((d * (double)DAY_PARTS)/ (double) MONTH_PARTS); // Months (approx)
634 // Resolve out-of-range months. This is necessary in order to
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 128 String[] months = dfs.getShortMonths(); local
135 if (months[0].startsWith("1")) {
136 for (int i = 0; i < months.length; i++) {
137 months[i] = String.valueOf(i + 1);
144 mMonthPicker.setDisplayedValues(months);
210 // We use numeric spinners for year and day, but textual months. Ask icu4c what
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
calendar.py 35 # Constants for months referenced later
89 # Full and abbreviated names of months (1-based arrays!!!)
223 value is a list of month rows. Each month row contains upto width months.
227 months = [
231 return [months[i:i+width] for i in range(0, len(months), width) ]
240 months = [
244 return [months[i:i+width] for i in range(0, len(months), width) ]
252 months =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
calendar.py 35 # Constants for months referenced later
89 # Full and abbreviated names of months (1-based arrays!!!)
223 value is a list of month rows. Each month row contains upto width months.
227 months = [
231 return [months[i:i+width] for i in range(0, len(months), width) ]
240 months = [
244 return [months[i:i+width] for i in range(0, len(months), width) ]
252 months =
    [all...]
  /external/emma/lib/internal/
stamptool.jar 
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.h 140 bool setMonthsSinceEpoch(double months);
148 // Returns the number of months from 1970-01.
DateComponents.cpp 48 static const int maximumMonthInMaximumYear = 8; // This is September, since months are 0 based.
575 bool DateComponents::setMonthsSinceEpoch(double months)
577 if (!std::isfinite(months))
579 months = round(months);
580 double doubleMonth = positiveFmod(months, 12);
581 double doubleYear = 1970 + (months - doubleMonth) / 12;
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeFactory.java 208 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
220 * @param months of this <code>Duration</code>
234 final BigInteger months,
242 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
249 * @param months of this <code>Duration</code>
262 * BigInteger months,
271 final int months,
280 // months may not be set
281 BigInteger realMonths = (months != DatatypeConstants.FIELD_UNDEFINED) ? BigInteger.valueOf((long) months) : null
    [all...]
Duration.java 34 * which consists of six fields (years, months, days, hours,
159 boolean monthSet = isSet(DatatypeConstants.MONTHS);
234 * Obtains the value of the MONTHS field as an integer value,
238 * that this method works on the MONTHS field.
240 * @return Months of this <code>Duration</code>.
243 return getFieldValueAsInt(DatatypeConstants.MONTHS);
383 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned
388 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS,
394 * For YEARS, MONTHS, DAYS, HOURS, and MINUTES, this method
406 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS
897 BigInteger months = (BigInteger) getField(DatatypeConstants.MONTHS); local
    [all...]
  /external/chromium_org/components/autofill/core/browser/
credit_card.cc 87 const icu::UnicodeString* months = date_format_symbols.getMonths(num_months); local
89 const base::string16 icu_month = base::string16(months[i].getBuffer(),
90 months[i].length());
97 months = date_format_symbols.getShortMonths(num_months);
99 const base::string16 icu_month = base::string16(months[i].getBuffer(),
100 months[i].length());
  /external/chromium_org/net/ftp/
ftp_util.cc 172 const icu::UnicodeString* months = local
176 base::string16 month_name(months[month].getBuffer(),
177 static_cast<size_t>(months[month].length()));
  /external/chromium_org/third_party/icu/source/i18n/unicode/
dtfmtsym.h 245 * @param months the new month strings. (not adopted; caller retains ownership)
249 void setMonths(const UnicodeString* months, int32_t count);
311 * @param months The new month strings. (not adopted; caller retains ownership)
317 void setMonths(const UnicodeString* months, int32_t count, DtContextType context, DtWidthType width);

Completed in 897 milliseconds

1 2 3