/external/v8/src/ |
dateparser-inl.h | 23 DayComposer day; local 38 // end of a day, 58 // as a month name) is recorded as a named month in the Day composer. 74 DateToken next_unhandled_token = ParseES5DateTime(&scanner, &day, &time, &tz); 76 bool has_read_number = !day.IsEmpty(); 115 if (!day.Add(n)) return false; 126 day.SetNamedMonth(value); 176 bool success = day.Write(out) && time.Write(out) && tz.Write(out); 245 DateStringTokenizer<Char>* scanner, DayComposer* day, TimeComposer* time, 247 DCHECK(day->IsEmpty()) [all...] |
/frameworks/base/core/java/android/widget/ |
DayPickerPagerAdapter.java | 90 * Sets the first day of the week. 92 * @param weekStart which day the week should start on, valid values are 111 * Sets the selected day. 113 * @param day the selected day 115 public void setSelectedDay(@Nullable Calendar day) { 117 final int newPosition = getPositionForDay(day); 131 final int dayOfMonth = day.get(Calendar.DAY_OF_MONTH); 136 mSelectedDay = day; 140 * Sets the listener to call when the user selects a day [all...] |
/external/pdfium/fpdfsdk/src/ |
fsdk_baseannot.cpp | 94 dt.day = newtime->tm_mday; 113 dt.day = (uint8_t)st.wDay; 134 (((int)dt1.dt.year) << 16) | (((int)dt1.dt.month) << 8) | (int)dt1.dt.day; 138 (((int)dt2.dt.year) << 16) | (((int)dt2.dt.month) << 8) | (int)dt2.dt.day; 153 (((int)dt1.dt.year) << 16) | (((int)dt1.dt.month) << 8) | (int)dt1.dt.day; 157 (((int)dt2.dt.year) << 16) | (((int)dt2.dt.month) << 8) | (int)dt2.dt.day; 172 (((int)dt1.dt.year) << 16) | (((int)dt1.dt.month) << 8) | (int)dt1.dt.day; 176 (((int)dt2.dt.year) << 16) | (((int)dt2.dt.month) << 8) | (int)dt2.dt.day; 191 (((int)dt1.dt.year) << 16) | (((int)dt1.dt.month) << 8) | (int)dt1.dt.day; 195 (((int)dt2.dt.year) << 16) | (((int)dt2.dt.month) << 8) | (int)dt2.dt.day; [all...] |
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
WT5001Sample.java | 108 short day[] = new short[1]; local 109 if (mp3.getDate(year, month, day)) 110 System.out.println("The device date is: " + year[0] + "/" + month[0] + "/" + day[0]);
|
/hardware/bsp/intel/peripheral/libupm/examples/python/ |
wt5001.py | 92 day = upmWt5001.uint8Array(0) variable 94 myMP3Player.getDate(year, month, day) 96 mp3date += (str(day.__getitem__(0)) + "/")
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
WeatherWidgetService.java | 73 String day = "Unknown Day"; local 76 final int dayColIndex = mCursor.getColumnIndex(WeatherDataProvider.Columns.DAY); 79 day = mCursor.getString(dayColIndex); 83 // Return a proper item with the proper day and temperature 87 rv.setTextViewText(R.id.widget_item, String.format(formatStr, temp, day)); 92 extras.putString(WeatherWidgetProvider.EXTRA_DAY_ID, day);
|
/external/icu/icu4c/source/i18n/ |
ethpccal.cpp | 104 int32_t eyear, month, day, era, year; local 105 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day); 124 internalSet(UCAL_DATE, day); 125 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
|
/external/icu/icu4c/source/test/intltest/ |
calcasts.h | 8 * conversion between julian-day to fields and vice versa. 32 int32_t day; member in struct:CalendarCaseTest::TestCase
|
/external/lzma/CPP/Windows/ |
TimeUtils.h | 17 bool GetSecondsSince1601(unsigned year, unsigned month, unsigned day,
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
DatePickerController.java | 31 void onDayOfMonthSelected(int year, int month, int day);
|
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
DaysOfWeek.java | 29 * 0x00: no day 52 static int convertDayToBitIndex(int day) { 53 return (day + 5) % DAYS_IN_A_WEEK; 87 // every day 110 // selected days, starting from user-selected start day of week 111 // iterate starting from user-selected start of day 128 for (int day : daysOfWeek) { 129 setBit(convertDayToBitIndex(day), value); 184 // We only use this on preemptively dismissed alarms, and alarms can only fire once a day, 185 // so there is no chance that the previous fire time is on the same day. Start dayCount o [all...] |
/libcore/ojluni/src/main/java/java/sql/ |
Timestamp.java | 177 int day = 0; local 227 day = Integer.parseInt(dd); 229 if ((month >= 1 && month <= MAX_MONTH) && (day >= 1 && day <= MAX_DAY)) { 263 return new Timestamp(year - 1900, month - 1, day, hour, minute, second, a_nanos); 278 int day = super.getDate(); local 306 if (day < 10) { 307 dayString = "0" + day; 309 dayString = Integer.toString(day);
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleWeeksAdapter.java | 44 * given day, show a reduced number of days, or display an arbitrary number of 65 * Which day the week should start on. {@link Time#SUNDAY} through 70 * The Julian day to highlight as selected. 88 // The day to highlight as selected 90 // The week since 1970 that the selected day is in 161 * Updates the selected day and related parameters. 174 * Returns the currently highlighted day 261 Time day = ((SimpleWeekView)v).getDayFromLocation(event.getX()); local 263 Log.d(TAG, "Touched day at Row=" + view.mWeek + " day=" + day.toString()) [all...] |
/external/iptables/extensions/ |
libxt_time.c | 80 /* By default, we match on every day, every daytime */ 93 unsigned int month = 1, day = 1, hour = 0, minute = 0, second = 0; local 114 day = strtoul(s, &e, 10); 115 if ((*e != 'T' && *e != '\0') || day > 31) 142 tm.tm_mday = day; 215 char day[3], *err = NULL; local 219 while (my_strseg(day, sizeof(day), &arg, ',') != NULL) { 220 i = strtoul(day, &err, 0); 223 "%s is not a valid day for --monthdays", day) 232 char day[4], *err = NULL; local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
SIPDate.java | 104 /** day member 106 protected int day; field in class:SIPDate 140 this.day == other.day && 153 day = -1; 201 day = javaCal.get(Calendar.DAY_OF_MONTH); 258 if (day < 10) { 259 dayString = "0" + day; 261 dayString = "" + day; 362 if (day != -1 [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TimeZoneAdapter.java | 84 public int getOffset(int era, int year, int month, int day, int dayOfWeek, 86 return zone.getOffset(era, year, month, day, dayOfWeek, millis);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TimeZoneAdapter.java | 83 public int getOffset(int era, int year, int month, int day, int dayOfWeek, 85 return zone.getOffset(era, year, month, day, dayOfWeek, millis);
|
/hardware/bsp/intel/peripheral/libupm/src/wt5001/ |
javaupm_wt5001.i | 12 %apply uint8_t *OUTPUT { uint8_t *month, uint8_t *day };
|
/packages/apps/Calendar/src/com/android/calendar/ |
DayOfMonthDrawable.java | 29 * A custom view to draw the day of the month in the today button in the options menu 73 public void setDayOfMonth(int day) { 74 mDayOfMonth = Integer.toString(day);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/ |
dbapi2.py | 67 year, month, day = map(int, datepart.split("-")) 75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
|
/prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/ |
dbapi2.py | 67 year, month, day = map(int, datepart.split("-")) 75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/ |
dbapi2.py | 67 year, month, day = map(int, datepart.split("-")) 75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/ |
dbapi2.py | 67 year, month, day = map(int, datepart.split("-")) 75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
|
/developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/ |
LocationDbHelper.java | 42 public static final String COLUMN_NAME_DAY = "day"; 92 values.put(COLUMN_NAME_DAY, entry.day); 103 * objects from the database for a given day. The list can be empty (but not {@code null}) if 104 * there are no such items. This method looks at the day that the calendar argument points at. 113 String day = Utils.getHashedDay(calendar); local 123 new String[]{day}, // The values for the WHERE clause 147 * Deletes all the entries in the database for the given day. The argument {@code day} should 150 public final int delete(String day) { 154 String[] selectionArgs = {day}; [all...] |
/developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/ |
LocationDbHelper.java | 42 public static final String COLUMN_NAME_DAY = "day"; 92 values.put(COLUMN_NAME_DAY, entry.day); 103 * objects from the database for a given day. The list can be empty (but not {@code null}) if 104 * there are no such items. This method looks at the day that the calendar argument points at. 113 String day = Utils.getHashedDay(calendar); local 123 new String[]{day}, // The values for the WHERE clause 147 * Deletes all the entries in the database for the given day. The argument {@code day} should 150 public final int delete(String day) { 154 String[] selectionArgs = {day}; [all...] |