HomeSort by relevance Sort by last modified time
    Searched full:month (Results 201 - 225 of 787) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.36-3.js 151 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
160 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() );
178 this.month = 0;
195 d.month = MonthFromTime(t);
203 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
211 var MONTH = ( mon == void 0 ) ? MonthFromTime(T) : Number( mon );
214 var DAY = MakeDay( YEAR, MONTH, DATE );
15.9.5.37-1.js 170 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
179 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() );
197 this.month = 0;
214 d.month = MonthFromTime(t);
222 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
230 var MONTH = ( mon == void 0 ) ? MonthFromTime(T) : Number( mon );
232 var DAY = MakeDay( YEAR, MONTH, DATE );
15.9.3.1-4.js 24 ECMA Section: 15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms)
32 2. Call ToNumber(month)
59 var TITLE = "new Date( year, month, date, hours, minutes, seconds, ms )";
72 var MONTH = 10;
173 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", ResultArray[MONTH], DateCase.getMonth() );
15.9.3.1-5.js 24 ECMA Section: 15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms)
32 2. Call ToNumber(month)
59 var TITLE = "new Date( year, month, date, hours, minutes, seconds, ms )";
72 var MONTH = 10;
150 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", ResultArray[MONTH], DateCase.getMonth() );
15.9.3.2-4.js 24 ECMA Section: 15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms)
32 2. Call ToNumber(month)
67 var MONTH = 10;
77 var TITLE = "Date( year, month, date, hours, minutes, seconds )";
167 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", ResultArray[MONTH], DateCase.getMonth() );
15.9.3.2-5.js 24 ECMA Section: 15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms)
32 2. Call ToNumber(month)
67 var MONTH = 10;
77 var TITLE = "Date( year, month, date, hours, minutes, seconds )";
149 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", ResultArray[MONTH], DateCase.getMonth() );
15.9.5.25-1.js 126 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
135 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() );
152 this.month = 0;
169 d.month = MonthFromTime(t);
177 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
15.9.5.26-1.js 136 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
145 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() );
163 this.month = 0;
180 d.month = MonthFromTime(t);
188 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
15.9.5.27-1.js 134 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
143 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() );
161 this.month = 0;
178 d.month = MonthFromTime(t);
186 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
15.9.5.29-1.js 144 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
153 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() );
170 this.month = 0;
187 d.month = MonthFromTime(t);
195 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
  /packages/apps/Settings/src/com/android/settings/
DateTimeSettings.java 183 public void onDateSet(DatePicker view, int year, int month, int day) {
184 setDate(year, month, day);
237 calendar.get(Calendar.MONTH),
268 calendar.get(Calendar.MONTH),
339 /* package */ static void setDate(int year, int month, int day) {
343 c.set(Calendar.MONTH, month);
  /external/chromium/base/metrics/
field_trial.cc 35 const int month,
49 DCHECK_GT(month, 0);
50 DCHECK_LT(month, 13);
56 exploded.month = month;
  /external/icu4c/i18n/unicode/
vtzone.h 204 * @param month The reference date's month (0-based; 0 is January)
205 * @param day The reference date's day-in-month (1-based)
212 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
225 * @param month The reference date's month (0-based; 0 is January)
226 * @param day The reference date's day-in-month (1-based)
229 * @param monthLength The length of the given month in days.
234 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
388 int32_t month, int32_t dayOfMonth, UDate startTime, UDate untilTime
    [all...]
rbtz.h 140 * @param month The reference date's month (0-based; 0 is January)
141 * @param day The reference date's day-in-month (1-based)
148 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
161 * @param month The reference date's month (0-based; 0 is January)
162 * @param day The reference date's day-in-month (1-based)
165 * @param monthLength The length of the given month in days.
170 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
  /external/icu4c/i18n/
vzone.h 193 * @param month The reference date's month (0-based; 0 is January)
194 * @param day The reference date's day-in-month (1-based)
202 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
216 * @param month The reference date's month (0-based; 0 is January)
217 * @param day The reference date's day-in-month (1-based)
220 * @param monthLength The length of the given month in days.
226 vzone_getOffset2(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
calendar.cpp 563 {/*N/A*/-1, /*N/A*/-1, /*N/A*/-1, /*N/A*/-1}, // MONTH
595 // fields such as MONTH, HOUR, AM_PM, etc. It is possible to compute the
609 // local fields (YEAR, MONTH, DATE, HOUR, MINUTE, etc.)
631 // local fields (YEAR, MONTH, DATE, HOUR, MINUTE, etc.)
2700 int32_t month; local
    [all...]
buddhcal.cpp 79 int32_t BuddhistCalendar::handleComputeMonthStart(int32_t eyear, int32_t month,
83 return GregorianCalendar::handleComputeMonthStart(eyear, month, useMonth);
  /frameworks/base/core/java/android/text/format/
Time.java 72 * Day of month [1-31]
77 * Month [0-11]
79 public int month; field in class:Time
124 public static final int MONTH = 5;
234 int n = DAYS_PER_MONTH[this.month];
242 case MONTH:
275 this.month = 0;
582 this.month = that.month;
594 public void set(int second, int minute, int hour, int monthDay, int month, int year)
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 56 * <p>For example, 30 days cannot be meaningfully compared to one month.
68 * subtract 15 days from 1 month. See the javadoc of those methods
113 * <td>month</td>
200 + " month set = " + monthSet
320 * The length of a month/year varies. The <code>startInstant</code> is
357 * The length of a month/year varies. The <code>startInstant</code> is
449 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
481 * example, adding negative one day to one month causes
580 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
599 * the computation needs to borrow 1 or -1 month to compensat
    [all...]
  /external/icu4c/test/intltest/
incaltst.cpp 150 * { era, year, gregorianYear, month, dayOfMonth, ... ... , -1 }
174 int32_t month = data[i++]; local
178 grego->set(gregorianYear, month, dayOfMonth);
183 cal.set(year, month, dayOfMonth);
190 logln(UnicodeString("OK: ") + era + ":" + year + "/" + (month+1) + "/" + dayOfMonth +
193 errln(UnicodeString("Fail: (fields to millis)") + era + ":" + year + "/" + (month+1) + "/" + dayOfMonth +
214 ", expected " + era + ":" + year + "/" + (month+1) + "/" +
270 UCAL_JUNE, // month
276 UCAL_FEBRUARY, // month
279 0, // test month calculation: 4795 BE = 4252 AD is a leap year, but 4795 AD is not
    [all...]
  /development/ndk/platforms/android-3/include/
time.h 49 int tm_mday; /* day of the month */
50 int tm_mon; /* month */
  /development/ndk/platforms/android-8/include/
time.h 49 int tm_mday; /* day of the month */
50 int tm_mon; /* month */
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DateWidgets1.java 83 mMonth = c.get(Calendar.MONTH);
120 // Month is 0 based so add 1
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_SimpleDateFormat.java 77 t_FormatWithField(2, format, date, null, Field.MONTH, 26, 27);
111 t_FormatWithField(26, format, date, null, Field.MONTH, 0, 0);
169 v.add(new FieldContainer(4, 6, Field.MONTH));
183 v.add(new FieldContainer(8, 17, Field.MONTH));
220 v.add(new FieldContainer(17, 18, Field.MONTH));
221 v.add(new FieldContainer(19, 21, Field.MONTH));
222 v.add(new FieldContainer(22, 25, Field.MONTH));
223 v.add(new FieldContainer(26, 35, Field.MONTH));
  /external/chromium/chrome/browser/autofill/
credit_card_unittest.cc 13 // existence of credit card number, month, and year fields.
40 // Case 2: No month.

Completed in 545 milliseconds

1 2 3 4 5 6 7 891011>>