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

1 2 3

  /external/openssh/
auth-shadow.c 39 #ifdef DAY
40 # undef DAY
42 #define DAY (24L * 60 * 60) /* 1 day in seconds */
48 * occurs the day after the day specified.
62 today = time(NULL) / DAY;
75 "Your account will expire in %d day%s.\n", daysleft,
101 today = time(NULL) / DAY;
135 "Your password will expire in %d day%s.\n", daysleft
    [all...]
auth-passwd.c 65 #define DAY (24L * 60 * 60) /* 1 day in seconds */
66 #define TWO_WEEKS (2L * 7 * DAY) /* 2 weeks in seconds */
151 daysleft = pwtimeleft / DAY + 1;
153 "Your password will expire in %lld day%s.\n",
158 daysleft = actimeleft / DAY + 1;
160 "Your account will expire in %lld day%s.\n",
  /frameworks/base/services/java/com/android/server/
TwilightCalculator.java 25 /** Value of {@link #mState} if it is currently day */
26 public static final int DAY = 0;
50 * Time of sunset (civil twilight) in milliseconds or -1 in the case the day
57 * day or night never ends.
97 // The day or night never ends for the given date and location, if this value is out of
105 mState = DAY;
117 mState = DAY;
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
DatePickerHelper.java 31 public static final int DAY = 1;
39 return getNumberPickerField(DAY).getText();
70 getNumberPickerIncrementButton(DAY).click();
79 getNumberPickerDecrementButton(DAY).click();
132 // Adjust day - increment or decrement using the shortest path
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 39 String day; field in class:WeatherDataPoint
43 day = d;
56 public static final String DAY = "day";
95 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
98 c.addRow(new Object[]{ new Integer(i), data.day, new Integer(data.degrees) });
129 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
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);
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 44 private static final String DAY = "day";
62 * @param dayOfMonth The day of the month that was set.
72 * @param dayOfMonth The initial day of the dialog.
88 * @param dayOfMonth The initial day of the dialog.
120 int month, int day) {
121 mDatePicker.init(year, month, day, this);
122 updateTitle(year, month, day);
139 * @param dayOfMonth The date day of month.
159 private void updateTitle(int year, int month, int day) {
195 int day = savedInstanceState.getInt(DAY); local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.3.1-2.js 74 var DAY = 12;
213 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.1-3.js 74 var DAY = 12;
191 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.1-4.js 74 var DAY = 12;
175 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.1-5.js 74 var DAY = 12;
152 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.2-1.js 69 var DAY = 12;
222 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.2-2.js 69 var DAY = 12;
200 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.2-3.js 69 var DAY = 12;
186 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.2-4.js 69 var DAY = 12;
169 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.2-5.js 69 var DAY = 12;
151 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.8-1.js 70 var DAY = 12;
280 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.8-2.js 70 var DAY = 12;
255 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.8-3.js 70 var DAY = 12;
233 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.8-4.js 70 var DAY = 12;
202 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.3.8-5.js 70 var DAY = 12;
170 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
15.9.4.2.js 79 var DAY = 12;
193 testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ResultArray[DAY], DateCase.getDay() );
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 43 private static final int DAY = 18;
128 Date date = new Date(YEAR_FROM_1900, MONTH, DAY, HOUR, MINUTE);
157 Calendar calendar = new GregorianCalendar(YEAR, MONTH, DAY);
160 Date formatDate = new Date(YEAR_FROM_1900, MONTH, DAY);
202 // for compatibility. Maybe one day we'll be able to fix this...
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 54 private static final String DAY = "day";
76 * @param dayOfMonth The day of the month that was set.
86 * @param dayOfMonth The initial day of the dialog.
102 * @param dayOfMonth The initial day of the dialog.
124 * @param dayOfMonth The initial day of the dialog.
142 * @param dayOfMonth The initial day of the dialog.
199 public void onDateChanged(DatePicker view, int year, int month, int day) {
200 updateTitle(year, month, day);
210 private void updateTitle(int year, int month, int day) {
235 int day = savedInstanceState.getInt(DAY); local
    [all...]
  /external/libmtp/
hotplug.sh.in 162 DAY=`echo ${DATE} | awk 'BEGIN { FS="/"} {print $3; }'`

Completed in 290 milliseconds

1 2 3