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

1 2

  /external/icu4c/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/net/ftp/
ftp_util.cc 135 const icu::UnicodeString* months = local
147 if (months[month].caseCompare(0, 3, unicode_text, 0) == 0) {
  /external/webkit/Source/WebCore/html/
MonthInputType.cpp 89 double months = date.monthsSinceEpoch(); local
90 ASSERT(isfinite(months));
91 return months;
124 double months = date.monthsSinceEpoch(); local
125 ASSERT(isfinite(months));
126 return months;
FTPDirectoryDocument.cpp 247 static const char* months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "???" }; local
256 dateString = makeString(months[month], ' ', String::number(fileTime.tm_mday), ", ", String::number(fileTime.tm_year));
258 dateString = makeString(months[month], ' ', String::number(fileTime.tm_mday), ", ", String::number(now.tm_year));
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
DatePickerHelper.java 172 String months[] = new String[] {"January", "February", "March", "April", "May", "June", local
175 for (int x = 0; x < months.length; x++) {
176 if (months[x].contains(monthName))
  /external/icu4c/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/icu4c/test/intltest/
tsdtfmsy.cpp 190 const UnicodeString *months = en.getMonths(count); local
191 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
111 this.months = localeData.longMonthNames;
195 Arrays.equals(months, rhs.months) &&
221 ",months=" + Arrays.toString(months) +
262 * Returns the array of strings containing the full names of the months. Use
269 return months.clone();
274 * 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...]
  /external/icu4c/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/emma/lib/internal/
stamptool.jar 
  /external/webkit/Source/JavaScriptCore/runtime/
DatePrototype.cpp 340 // Converts a list of arguments sent to a Date member function into years, months, and milliseconds, updating
343 // Format of member function: f([years,] [months,] [days])
360 // months
362 double months = exec->argument(idx++).toIntegerPreserveNaN(exec); local
363 ok = isfinite(months);
364 t->month = toInt32(months);
    [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")) {
  /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 */
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 125 String[] months = dfs.getShortMonths(); local
132 if (months[0].startsWith("1")) {
133 for (int i = 0; i < months.length; i++) {
134 months[i] = String.valueOf(i + 1);
141 mMonthPicker.setDisplayedValues(months);
201 reorderPickers(months);
217 private void reorderPickers(String[] months) {
228 if (months[0].startsWith("1")) {
  /ndk/sources/cxx-stl/llvm-libc++/src/
locale.cpp 4407 static string months[24]; local
4439 static wstring months[24]; local
4471 static const string* months = init_months(); local
4479 static const wstring* months = init_wmonths(); local
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/internal/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 1899 milliseconds

1 2