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

1 2 3

  /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)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
PickerConstants.java 31 public final String[] months; field in class:PickerConstants.Date
36 months = new DateFormatSymbols().getShortMonths();
DatePicker.java 167 PickerColumn months = new PickerColumn(mConstant.months); local
175 ret.add(months);
  /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);
  /external/toybox/toys/pending/
crontab.c 48 char months[]={"jan""feb""mar""apr""may""jun""jul" local
50 char *field = (size == 12) ? months : days;
crond.c 59 static char months[]={"jan""feb""mar""apr""may""jun""jul" variable
109 char *field = (size == 12) ? months : days;
  /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 726 String[] months; local
729 months = standAlone ? ld.longStandAloneMonthNames : formatData.months;
731 months = standAlone ? ld.tinyStandAloneMonthNames : ld.tinyMonthNames;
733 months = standAlone ? ld.shortStandAloneMonthNames : formatData.shortMonths;
735 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...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
SetDateTimeActivity.java 65 String[] months = PickerConstants.getDateInstance(getResources()).months; local
66 int totalMonths = months.length;
68 if (months[i].equals(month)) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
HebrewCalendar.java 21 * properties that distinguish it from the Gregorian. Months start
29 * months can vary depending on the number of days in the year.
32 * months of Shevat and Adar in leap years. Since the leap month does
42 * we treat days and months as beginning at midnight,
199 * The lengths of the Hebrew months. This is complicated, because there
609 int months = (235 * year - 234) / 19; // # of months before year local
611 long frac = months * MONTH_FRACT + BAHARAD; // Fractional part of day #
612 day = months * 29 + (frac / DAY_PARTS); // Whole # part of calculation
716 // Resolve out-of-range months. This is necessary in order t
    [all...]
IslamicCalendar.java 28 * lunar months does not correspond to the solar year used by most other
36 * we treat days and months as beginning at midnight,
41 * and 30-day months, with a leap day added to the last month of 11 out of
846 int months = (int)Math.floor(days \/ CalendarAstronomer.SYNODIC_MONTH); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 123 String[] months = dfs.getShortMonths(); local
130 if (months[0].startsWith("1")) {
131 for (int i = 0; i < months.length; i++) {
132 months[i] = String.valueOf(i + 1);
139 mMonthPicker.setDisplayedValues(months);
205 // We use numeric spinners for year and day, but textual months. Ask icu4c what
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
cookies.py 238 return bytes_(r % (weekdays[v[6]], months[v[1]]), 'ascii')
372 months = (None, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', variable
  /external/emma/lib/internal/
stamptool.jar 
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDateFormatSymbols.java 152 final String[] months = en.getMonths(); local
153 fr.setMonths(months);
155 count = months.length;
161 if(! months[i].equals(months1[i])) {
  /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 505 String[] weekdays = symbols.getWeekdays(), months = symbols local
509 } else if (month == -1 && (month = parse(text, months)) != -1) {/* empty */
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 94 static FX_LPCWSTR months[] = variable
750 if (sMonth.CompareNoCase(months[m]) == 0)
1000 sPart += months[nMonth - 1];
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateFormatSymbols.java 39 * months, the names of the days of the week, and the time zone data.
355 * of 13 strings (some calendars have 13 months), indexed by
359 String months[] = null; field in class:DateFormatSymbols
363 * 13 strings (some calendars have 13 months), indexed by
372 * 13 strings (some calendars have 13 months), indexed by
381 * of 13 strings (some calendars have 13 months), indexed by
389 * 13 strings (some calendars have 13 months), indexed by
398 * 13 strings (some calendars have 13 months), indexed by
718 return duplicate(months);
735 returnValue = months;
    [all...]
  /external/libcxx/src/
locale.cpp 4589 static string months[24]; local
4621 static wstring months[24]; local
4653 static const string* months = init_months(); local
4661 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 672 milliseconds

1 2 3