HomeSort by relevance Sort by last modified time
    Searched refs:month (Results 51 - 75 of 481) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
SimpleTimeZone.java 31 * {@code SimpleTimeZone} should count from the end of the month
102 * By default, this constructor specifies day-of-week-in-month rules. That
108 * Day of month: To specify an exact day of the month, such as March 1, set
111 * Day of week after day of month: To specify the first day of the week
112 * occurring on or after an exact day of the month, make the day of the week
117 * Day of week before day of month: To specify the last day of the week
118 * occurring on or before an exact day of the month, make the day of the
119 * week and the day of the month negative. For example, if {@code startDay} is {@code -21}
134 * the daylight savings starting month. The month indexing is 0-based. eg,
    [all...]
Date.java 37 * as the current month or day of week, or to construct a {@code Date} from a broken-down
67 * @param month
68 * the month, 0 - 11.
70 * the day of the month, 1 - 31.
76 public Date(int year, int month, int day) {
78 cal.set(1900 + year, month, day);
88 * @param month
89 * the month, 0 - 11.
91 * the day of the month, 1 - 31.
101 public Date(int year, int month, int day, int hour, int minute)
390 int year = -1, month = -1, date = -1; local
    [all...]
  /external/chromium/chrome/browser/autofill/
credit_card.cc 210 string16 month = ExpirationMonthAsString(); local
212 if (!month.empty() && !year.empty())
213 return month + ASCIIToUTF16("/") + year;
218 string16 month = ExpirationMonthAsString(); local
220 if (!month.empty() && !year.empty())
221 return month + ASCIIToUTF16("/") + year;
304 // Check if |text| is "yyyy-mm" format first, and check normal month format.
438 string16 month = base::IntToString16(expiration_month_);
440 return month;
443 zero.append(month);
462 int month; local
507 int month; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
history2_ui.cc 180 int month = 0; local
182 ExtractSearchHistoryArguments(args, &month, &query);
184 // Set the query ranges for the given month.
185 history::QueryOptions options = CreateMonthQueryOptions(month);
305 int* month,
307 *month = 0;
318 // Get search month.
325 base::StringToInt(string16_value, month);
330 int month) {
334 // current month
    [all...]
history_ui.cc 180 int month = 0; local
182 ExtractSearchHistoryArguments(args, &month, &query);
184 // Set the query ranges for the given month.
185 history::QueryOptions options = CreateMonthQueryOptions(month);
305 int* month,
313 *month = 0;
314 base::StringToInt(string16_value, month);
318 int month) {
322 // current month.
327 if (month == 0)
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_unittest.cc 75 mock_current_time_exploded.month = 11;
114 int year, month, day_of_month, hour, minute; local
116 base::StringToInt(lines[8 * i + 4], &month);
139 EXPECT_EQ(month, time_exploded.month);
ftp_util.h 30 // Converts abbreviated month (like Nov) to its number (in range 1-12).
36 // columns. The first one contains month, the second one contains day
37 // of month. The third one is either a time (and then we guess the year based
39 static bool LsDateListingToTime(const string16& month,
ftp_util_unittest.cc 114 const char* month; member in struct:__anon5005::__anon5009
158 kTestCases[i].month, kTestCases[i].day,
163 UTF8ToUTF16(kTestCases[i].month), UTF8ToUTF16(kTestCases[i].day),
169 EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
  /external/icu4c/i18n/
japancal.cpp 37 int8_t month; member in struct:__anon8660
40 // Year Month Day
329 int32_t month = 0; local
335 return kEraInfo[era].month-1;
338 return month;
341 int32_t JapaneseCalendar::getDefaultDayInMonth(int32_t eyear, int32_t month)
347 if(month == (kEraInfo[era].month-1)) {
389 // the binary search to handle the month/dom comparison.
412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year)
    [all...]
simpletz.cpp 275 * day of week in the month (e.g., (2, WEDNESDAY) is the second Wednesday
276 * of the month).
278 * the day of week in the month counting backward from the end of the month.
279 * (e.g., (-1, MONDAY) is the last Monday in the month)
281 * specifies the day of the month, regardless of what day of the week it is.
282 * (e.g., (10, 0) is the tenth day of the month)
284 * specifies the day of the month counting backward from the end of the
285 * month, regardless of what day of the week it is (e.g., (-2, 0) is the
286 * next-to-last day of the month)
515 int32_t year, month, dom, dow; local
    [all...]
ethpccal.cpp 104 int32_t eyear, month, day, era, year; local
105 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
123 internalSet(UCAL_MONTH, month);
125 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
206 EthiopicCalendar::ethiopicToJD(int32_t year, int32_t month, int32_t date)
208 return ceToJD(year, month, date, JD_EPOCH_OFFSET_AMETE_MIHRET);
vtzone.cpp 76 // Month length for non-leap year
189 int32_t year, month, dom, dow, doy, mid; local
190 Grego::timeToFields(time, year, month, dom, dow, doy, mid);
194 appendAsciiDigits(month + 1, 2, str);
229 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; local
252 month = parseAsciiDigits(str, 4, 2, status) - 1; // 0-based
263 int32_t maxDayOfMonth = Grego::monthLength(year, month);
264 if (year < 0 || month < 0 || month > 11 || day < 1 || day > maxDayOfMonth ||
277 UDate time = Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY
538 int32_t month, dayOfWeek, nthDayOfWeek, dayOfMonth = 0; local
814 int32_t month = -1, dom = 0, dow = 0; local
1938 int32_t year, month, dom, dow, doy, mid; local
    [all...]
  /external/icu4c/i18n/unicode/
gregocal.h 100 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
122 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
235 * @param month The value used to set the MONTH time field in the calendar. Month
242 GregorianCalendar(int32_t year, int32_t month, int32_t date, UErrorCode& success);
249 * @param month The value used to set the MONTH time field in the calendar. Month
258 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, UErrorCode& success)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.h 85 double dateToDaysFrom1970(int year, int month, int day);
134 , month(0)
148 , month(inTm.tm_mon)
179 ret.tm_mon = month;
201 month = rhs.month;
219 int month; member in struct:JSC::GregorianDateTime
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 43 private static final String MONTH = "month";
60 * @param monthOfYear The month that was set (0-11) for compatibility
62 * @param dayOfMonth The day of the month that was set.
71 * @param monthOfYear The initial month of the dialog.
87 * @param monthOfYear The initial month of the dialog.
120 int month, int day) {
121 mDatePicker.init(year, month, day, this);
122 updateTitle(year, month, day);
138 * @param monthOfYear The date month
194 int month = savedInstanceState.getInt(MONTH); local
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java 204 iterator.month + 1);
321 * Compute the day of the week for the first day of the month. "instance" has a
326 * (day of the month - 1) mod 7, and then make sure it's positive. We can simplify
341 * Generate a set according to the BYDAY rules. For each day of the month, determine
349 // For each month day, see if it's part of the set. (This makes some assumptions
433 int realMonth = iterator.month;
439 + " " + iterator.month
444 // if might be past the end of the month, we need to normalize it
449 realMonth = t.month;
452 Log.i(TAG, "normalized t=" + t + " " + t.month
892 int month = usebymonth local
1143 int month = date.month; local
    [all...]
  /external/v8/src/
dateparser.cc 37 // Day and month defaults to 1.
43 int month = kNone; local
50 month = comp_[1];
54 month = comp_[0];
59 month = named_month_;
79 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false;
82 output->set(MONTH, Smi::FromInt(month - 1)); // 0-based
171 // Word longer than keyword is only allowed for month names.
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 85 month=date.substring(5,7);
100 if(month>12||day>31||month<=0||day<=0||(isNaN(month)==true)||(isNaN(day)==true)||(isNaN(year)==true)){
106 if(((month==1||month==3||month==5||month==7||month==8||month==10||month==12)&&day>31)||(year%4==0&&month==2&&day>29)||(year%4!=0&&month==2&&day>28)||((month==4 (…)
    [all...]
  /external/chromium/base/
time_mac.cc 70 date.month = exploded.month;
91 exploded->month = date.month;
  /external/icu4c/test/intltest/
calcasts.h 31 int32_t month; member in struct:CalendarCaseTest::TestCase
  /external/markdown/markdown/extensions/
rss.py 27 month, date, year = heading.split()
28 month = month_map[month]
30 return rdftime(" ".join((month, date, year, "12:00:00 AM")))
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
jsref.js 385 var month = MonthFromTime(t);
387 if ( month == 0 ) {
390 if ( month == 1 ) {
393 if ( month == 2 ) {
396 if ( month == 3 ) {
399 if ( month == 4 ) {
402 if ( month == 5 ) {
405 if ( month == 6 ) {
408 if ( month == 7 ) {
411 if ( month == 8 )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
jsref.js 345 var month = MonthFromTime(t);
347 if ( month == 0 ) {
350 if ( month == 1 ) {
353 if ( month == 2 ) {
356 if ( month == 3 ) {
359 if ( month == 4 ) {
362 if ( month == 5 ) {
365 if ( month == 6 ) {
368 if ( month == 7 ) {
371 if ( month == 8 )
    [all...]
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 22 * Helps answer common questions that come up when displaying a month in a
32 // holds current month, year, helps compute display
43 * @param month The month.
46 public MonthDisplayHelper(int year, int month, int weekStartDay) {
55 mCalendar.set(Calendar.MONTH, month);
66 public MonthDisplayHelper(int year, int month) {
67 this(year, month, Calendar.SUNDAY);
76 return mCalendar.get(Calendar.MONTH);
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_time.c 47 time_ptr->month = tm_t->tm_mon + 1;

Completed in 1571 milliseconds

1 23 4 5 6 7 8 91011>>