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

1 2

  /external/icu4c/test/perf/DateFmtPerf/
datedata.h 25 static int months[] = { variable
DateFmtPerf.h 183 cal->set(years[i], months[i], days[i]);
  /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;
DateComponents.h 127 bool setMonthsSinceEpoch(double months);
133 // Returns the number of months from 1970-01.
DateComponents.cpp 50 static const int maximumMonthInMaximumYear = 8; // This is September, since months are 0 based.
588 bool DateComponents::setMonthsSinceEpoch(double months)
590 if (!isfinite(months))
592 months = round(months);
593 double doubleMonth = positiveFmod(months, 12);
594 double doubleYear = 1970 + (months - doubleMonth) / 12;
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));
  /external/ppp/pppd/plugins/radius/
util.c 27 static const char * months[] = variable
40 if (strncmp (months[i], valstr, 3) == 0)
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 32 * months, the names of the days of the week, and the time zone data.
58 String[] ampms, eras, months, shortMonths, shortWeekdays, weekdays; field in class:DateFormatSymbols
112 this.months = localeData.longMonthNames;
164 longStandAloneMonths = months;
207 Arrays.equals(months, rhs.months) &&
233 ",months=" + Arrays.toString(months) +
274 * Returns the array of strings containing the full names of the months. Use
281 return months.clone()
    [all...]
SimpleDateFormat.java 619 appendMonth(buffer, count, formatData.months, formatData.shortMonths);
727 String[] months = isLong ? longs : shorts; local
728 buffer.append(months[month]);
    [all...]
  /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/i18n/
islamcal.cpp 53 // cache of months
405 // Guess at the number of elapsed full months since the epoch
406 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH);
408 startDate = uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH);
417 months++;
422 while ((startDate = trueMonthStart(months)) > days) {
424 months--;
427 year = months / 12 + 1;
428 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
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 119 String[] months = dfs.getShortMonths(); local
126 if (months[0].startsWith("1")) {
127 for (int i = 0; i < months.length; i++) {
128 months[i] = String.valueOf(i + 1);
135 mMonthPicker.setDisplayedValues(months);
193 reorderPickers(months);
208 private void reorderPickers(String[] months) {
219 if (months[0].startsWith("1")) {
  /external/emma/lib/internal/
stamptool.jar 
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeFactory.java 205 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
217 * @param months of this <code>Duration</code>
231 final BigInteger months,
239 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
246 * @param months of this <code>Duration</code>
259 * BigInteger months,
268 final int months,
277 // months may not be set
278 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
901 BigInteger months = (BigInteger) getField(DatatypeConstants.MONTHS); local
    [all...]
  /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/icu4c/i18n/unicode/
dtfmtsym.h 244 * @param months the new month strings. (not adopted; caller retains ownership)
248 void setMonths(const UnicodeString* months, int32_t count);
301 * @param months The new month strings. (not adopted; caller retains ownership)
307 void setMonths(const UnicodeString* months, int32_t count, DtContextType context, DtWidthType width);
  /libcore/luni/src/main/java/java/util/
Date.java 494 String[] weekdays = symbols.getWeekdays(), months = symbols local
498 } else if (month == -1 && (month = parse(text, months)) != -1) {/* empty */
  /external/icu4c/test/intltest/
tsdtfmsy.cpp 190 const UnicodeString *months = en.getMonths(count); local
191 fr.setMonths(months, count);
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp 344 static jobjectArray getNames(JNIEnv* env, UResourceBundle* namesBundle, bool months, NameType type, NameWidth width) {
354 // The months array has a trailing empty string. The days array has a leading empty string.
356 int offset = months ? 0 : 1;
359 env->SetObjectArrayElement(result, months ? count : 0, emptyString.get());
    [all...]
  /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...]
  /external/webkit/Source/WebKit/mac/History/
WebHistory.mm 488 return [[NSCalendarDate calendarDate] dateByAddingYears:0 months:0 days:-[self historyAgeInDaysLimit]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 400 milliseconds

1 2