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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthAdapter.java 55 int day; field in class:SimpleMonthAdapter.CalendarDay
68 day = calendar.get(Calendar.DAY_OF_MONTH);
71 public CalendarDay(int year, int month, int day) {
72 setDay(year, month, day);
78 day = date.day;
81 public void setDay(int year, int month, int day) {
84 this.day = day;
94 day = calendar.get(Calendar.DAY_OF_MONTH)
    [all...]
DayPickerView.java 166 public boolean goTo(CalendarDay day, boolean animate, boolean setSelected, boolean forceScroll) {
168 // Set the selected day
170 mSelectedDay.set(day);
173 mTempDay.set(day);
174 final int position = (day.year - mController.getMinYear())
175 * SimpleMonthAdapter.MONTHS_IN_YEAR + day.month;
207 // Check if the selected day is now outside of our visible range
386 * {@code day} is {@code null}.
388 * @param day The date that should receive accessibility focus
391 private boolean restoreAccessibilityFocus(CalendarDay day) {
463 CalendarDay day = new CalendarDay(year, month, 1); local
    [all...]
SimpleMonthView.java 52 * A calendar-like view displaying a specified month and the appropriate selectable day numbers
83 * Which day the week should start on. {@link Time#SUNDAY} through
139 // The Julian day of the first day displayed by this item
141 // The month of the first day in this week
143 // The month of the last day in this week
155 // Which day is selected [0-6] or -1 if no day is selected
157 // Which day is today [0-6] or -1 if no day is toda
251 final CalendarDay day = getDayFromLocation(event.getX(), event.getY()); local
365 final int day = i + 1; local
493 int day = column - findDayOffset() + 1; local
    [all...]
DatePickerController.java 29 void onDayOfMonthSelected(int year, int month, int day);
  /device/samsung/manta/gps/
gps.conf 1 XTRA_SERVER_1=http://gllto.glpals.com/7day/glo/v2/latest/lto2.dat
  /external/v8/test/cctest/
test-date.cc 49 int year, month, day; local
50 YearMonthDayFromDays(days, &year, &month, &day);
51 Rule* rule = FindRuleFor(year, month, day, time_in_day_sec);
61 Rule* FindRuleFor(int year, int month, int day, int time_in_day_sec) {
64 if (Match(&rules_[i], year, month, day, time_in_day_sec)) {
71 bool Match(Rule* rule, int year, int month, int day, int time_in_day_sec) {
76 if (rule->start_month == month && start_day > day) return false;
77 if (rule->start_month == month && start_day == day &&
81 if (rule->end_month == month && end_day < day) return false;
82 if (rule->end_month == month && end_day == day &
    [all...]
  /external/icu4c/test/compat/
tzone.pl 8 print "Usage: tzone [year month day hour minute]\n";
20 my $day = 0;
26 ($year, $month, $day, $hour, $minute) = @ARGV;
27 print "The date we are using is: $month-$day-$year $hour:$minute.\n";
52 my @result = `./tzdate $year $month $day $hour $minute $USECURRENT`;
tzdate.c 32 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
39 int year, month, day, hour, minute; local
44 sysyear = year = month = day = 0;
53 day = atoi(argv[3]);
61 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
109 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
121 ts.tm_mday = day;
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 44 * @param weekStartDay What day of the week the week should start.
85 * @return The first day of the month using a constants such as
102 * box. For example, if the calendar is set to display the first day of
132 * @return The day at a particular row, column
140 int day = 7 * row + column - mOffset + 1; local
142 return (day > mNumDaysInMonth) ?
143 day - mNumDaysInMonth : day;
147 * @return Which row day is in.
149 public int getRowOf(int day) {
189 int day = 7 * row + column - mOffset + 1; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
SimpleDate.java 23 * Represents a date (year, month, day)
27 public int day; // DD field in class:SimpleDate
45 this.day = sCalendarInstance.get(Calendar.DATE);
57 result = prime * result + day;
76 if (day != other.day)
91 return this.day - other.getDay();
96 return day;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPDateTimeImpl.java 36 private int day = 0; field in class:XMPDateTimeImpl
82 this.day = intCalendar.get(Calendar.DAY_OF_MONTH);
104 this.day = calendar.get(Calendar.DAY_OF_MONTH);
177 return day;
184 public void setDay(int day)
186 if (day < 1)
188 this.day = 1;
190 else if (day > 31)
192 this.day = 31;
196 this.day = day
    [all...]
  /libcore/luni/src/main/java/java/util/
Grego.java 86 * Convert a year, month, and day-of-month, given in the proleptic
90 * @param dom 1-based day of month
91 * @return the day number, with day 0 == Jan 1 1970
99 return julian - JULIAN_1970_CE; // JD => epoch day
103 * Return the day of week on the 1970-epoch day
104 * @param day the 1970-epoch day (integral value)
105 * @return the day of week
175 long day = floorDivide(time, 24*60*60*1000 \/* milliseconds per day *\/, remainder); local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/
DateTime.java 36 private final int day; field in class:DateTime
42 public DateTime(String yearString, int month, int day, int hour, int minute, int second, int timeZone) {
44 this.date = convertToDate(year, month, day, hour, minute, second, timeZone);
46 this.day = day;
69 public static Date convertToDate(int year, int month, int day, int hour, int minute, int second, int timeZone) {
71 c.set(year, month - 1, day, hour, minute, second);
95 return day;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
shell.js 259 * year-month-day mode: dt = new Date(2000, 5, 1, ...);
275 // Use our date arithmetic functions to determine the local hour, day, etc.
277 ResultArray[DAY] = WeekDay(t);
288 // Use our date arithmetic functions to determine the UTC hour, day, etc.
299 function Day( t ) {
379 var day = DayWithinYear( t );
382 if ( (0 <= day) && (day < 31) ) {
385 if ( (31 <= day) && (day < (59+leap)) )
    [all...]
jsref.js 258 function Day( t ) {
338 var day = DayWithinYear( t );
341 if ( (0 <= day) && (day < 31) ) {
344 if ( (31 <= day) && (day < (59+leap)) ) {
347 if ( ((59+leap) <= day) && (day < (90+leap)) ) {
350 if ( ((90+leap) <= day) && (day < (120+leap)) )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/
shell.js 251 function Day( t)
346 var day = DayWithinYear( t );
350 if ( (0 <= day) && (day < 31) ) {return 0;}
351 if ( (31 <= day) && (day < (59+leap) )) {return 1;}
352 if ( ((59+leap) <= day) && (day < (90+leap) )) {return 2;}
353 if ( ((90+leap) <= day) && (day < (120+leap) )) {return 3;
    [all...]
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_time.h 47 uint16_t day; member in struct:__db_system_time_
  /external/icu4c/i18n/
coptccal.cpp 78 int32_t eyear, month, day, era, year; local
79 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
93 internalSet(UCAL_DATE, day);
94 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
169 CopticCalendar::copticToJD(int32_t year, int32_t month, int32_t day)
171 return CECalendar::ceToJD(year, month, day, COPTIC_JD_EPOCH_OFFSET);
hebrwcal.cpp 32 * time of day in sync with that of the Gregorian calendar, we use
33 * midnight, rather than sunset the day before.
363 // counting from noon on the day before. BAHARAD is an abbreviation of
368 * Finds the day # of the first day in the given Hebrew year.
390 int32_t day = CalendarCache::get(&gCache, year, status); local
392 if (day == 0) {
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
397 frac = frac % DAY_PARTS; // Time of day
641 int32_t day = startOfYear(eyear, status); local
    [all...]
  /external/icu4c/test/cintltst/
ccaltst.h 85 static void verify1(const char* msg, UCalendar* c, UDateFormat* dat, int32_t year, int32_t month, int32_t day);
87 static void verify2(const char* msg, UCalendar* c, UDateFormat* dat, int32_t year, int32_t month, int32_t day,
  /external/v8/src/
dateparser.cc 37 // Day and month defaults to 1.
44 int day = kNone; local
51 day = comp_[2];
55 day = comp_[1];
62 day = comp_[0];
66 day = comp_[1];
69 day = comp_[0];
79 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false;
83 output->set(DAY, Smi::FromInt(day));
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
jsref.js 218 function Day( t ) {
298 var day = DayWithinYear( t );
301 if ( (0 <= day) && (day < 31) ) {
304 if ( (31 <= day) && (day < (59+leap)) ) {
307 if ( ((59+leap) <= day) && (day < (90+leap)) ) {
310 if ( ((90+leap) <= day) && (day < (120+leap)) )
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPDateTime.java 23 * <li> day - The day of the month in the range 1..31.
33 * fields (year, month, and day).
49 /** @return Returns the day of the month in the range 1..31. */
52 /** @param day Sets the day 1..31 */
53 void setDay(int day);
  /frameworks/av/media/mtp/
MtpUtils.cpp 31 DD replaced by the day (01-31), T is a constant character 'T' delimiting time from date,
37 int year, month, day, hour, minute, second; local
41 &year, &month, &day, &hour, &minute, &second) != 6)
57 tm.tm_mday = day;
  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_rel.h 43 #define YMD_HMS_2_INT(year, mon, day, date, hour, min, sec, time) do{\
44 date = year * 10000 + mon * 100 + day;\
54 int32_t date; /**< year * 10000 + mon *100 + day */
95 * \param day day of the date
103 int32_t drm_checkDate(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec);

Completed in 842 milliseconds

1 2 3 4 5 6 7 8 91011>>