HomeSort by relevance Sort by last modified time
    Searched defs:months (Results 1 - 25 of 52) 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/ppp/pppd/plugins/radius/
util.c 27 static const char * months[] = variable
40 if (strncmp (months[i], valstr, 3) == 0)
  /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/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);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
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();
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...]
  /external/chromium_org/third_party/icu/source/i18n/
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/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/chromium_org/third_party/icu/source/test/intltest/
tsdtfmsy.cpp 226 const UnicodeString *months = en.getMonths(count); local
227 fr.setMonths(months, count);
  /external/icu/icu4c/source/i18n/
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
  /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...]
  /external/icu/icu4c/source/test/intltest/
tsdtfmsy.cpp 226 const UnicodeString *months = en.getMonths(count); local
227 fr.setMonths(months, count);
  /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...]
SimpleDateFormat.java 717 String[] months; local
720 months = standAlone ? ld.longStandAloneMonthNames : formatData.months;
722 months = standAlone ? ld.tinyStandAloneMonthNames : ld.tinyMonthNames;
724 months = standAlone ? ld.shortStandAloneMonthNames : formatData.shortMonths;
726 buffer.append(months[month]);
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
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());
  /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
  /external/emma/lib/internal/
stamptool.jar 
  /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")) {
  /libcore/luni/src/main/java/java/util/
Date.java 502 String[] weekdays = symbols.getWeekdays(), months = symbols local
506 } else if (month == -1 && (month = parse(text, months)) != -1) {/* empty */
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 93 static FX_LPCWSTR months[] = variable
760 if (sMonth.CompareNoCase(months[m]) == 0)
1010 sPart += months[nMonth - 1];
    [all...]
  /external/chromium_org/third_party/libxslt/libexslt/
date.c 1108 double years, months; local
1120 months = (double)(dt->mon % 12);
1135 if (months < 0) {
1136 months = -months;
1148 if (months != 0.0) {
1149 FORMAT_ITEM(months, cur, 1, 'M');
    [all...]
  /external/libcxx/src/
locale.cpp 4506 static string months[24]; local
4538 static wstring months[24]; local
4570 static const string* months = init_months(); local
4578 static const wstring* months = init_wmonths(); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
locale.cpp 4595 static string months[24]; local
4627 static wstring months[24]; local
4659 static const string* months = init_months(); local
4667 static const wstring* months = init_wmonths(); local
    [all...]

Completed in 905 milliseconds

1 2 3