/external/icu/icu4c/source/i18n/unicode/ |
tzfmt.h | 62 * This style is equivalent to the LDML date format pattern "O". 69 * This style is equivalent to the LDML date format pattern "X". 76 * This style is equivalent to the LDML date format pattern "x". 83 * This style is equivalent to the LDML date format pattern "XX". 90 * This style is equivalent to the LDML date format pattern "xx". 97 * This style is equivalent to the LDML date format pattern "XXXX". 104 * This style is equivalent to the LDML date format pattern "xxxx". 111 * This style is equivalent to the LDML date format pattern "XXX". 118 * This style is equivalent to the LDML date format pattern "xxx" and "ZZZZZ". 125 * This style is equivalent to the LDML date format pattern "XXXXX" [all...] |
/external/icu/icu4c/source/i18n/ |
windtfmt.cpp | 80 // Get proper date time format 170 UnicodeString *date = new UnicodeString(); local 175 formatDate(&st_local, *date); 179 timeDateArray[1].adoptString(date);
|
simpletz.cpp | 11 * Date Name Description 42 // available. Set February to 29 days to accomodate rules with that date 43 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE). 273 * the exact starting date. Their exact meaning depend on their respective signs, 473 // Compare the date to the starting and ending rules.+1 = date>rule, -1 474 // = date<rule, 0 = date==rule. 509 SimpleTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, 517 double day = uprv_floor(date / U_MILLIS_PER_DAY) [all...] |
/frameworks/base/media/jni/ |
android_mtp_MtpDatabase.cpp | 402 // special case date properties, which are strings to MTP 405 char date[20]; local 406 formatDateTime(longValue, date, sizeof(date)); 407 packet.putString(date); 410 // release date is stored internally as just the year 412 char date[20]; local 413 snprintf(date, sizeof(date), "%04" PRId64 "0101T000000", longValue); 414 packet.putString(date); 1253 char date[20]; local [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/ |
DatePicker.java | 37 * This class is a widget for selecting a date. The date can be selected by a 112 private boolean parseDate(String date, Calendar outDate) { 114 outDate.setTime(mDateFormat.parse(date)); 117 Log.w(LOG_TAG, "Date: " + date + " not in format: " + DATE_FORMAT); 227 * Sets the minimal date supported by this {@link DatePicker} in 231 * @param minDate The minimal supported date. 248 * Gets the minimal date supported by this {@link DatePicker} in 252 * Note: The default minimal date is 01/01/1900 [all...] |
/libcore/ojluni/src/main/java/java/text/ |
DateFormat.java | 45 import java.util.Date; 57 * {@code DateFormat} is an abstract class for date/time formatting subclasses which 59 * The date/time formatting subclass, such as {@link SimpleDateFormat}, allows for 60 * formatting (i.e., date -> text), parsing (text -> date), and 61 * normalization. The date is represented as a <code>Date</code> object or 64 * <p>{@code DateFormat} provides many class methods for obtaining default date/time 74 * <p>To format a date for the current Locale, use one of the 89 * <p>To format a date for a different Locale, specify it in th [all...] |
/libcore/ojluni/src/main/java/sun/security/validator/ |
PKIXValidator.java | 327 * Set the check date (for debugging). 330 Date date = validationDate; local 331 if (date != null) { 332 params.setDate(date);
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaAdapter.java | 214 Time date = new Time(tzString); local 215 date.set(begin); 221 displayName = tz.getDisplayName(date.isDst != 0, TimeZone.SHORT);
|
/packages/apps/DeskClock/src/com/android/alarmclock/ |
DigitalAppWidgetProvider.java | 50 * Intent to be used for checking if a world clock's date has changed. Must be every fifteen 202 // time and the date. When we scale down they overlap, so give the date a positive 209 // Set today's date format 213 widget.setCharSequence(R.id.date, "setFormat12Hour", timeFormat); 214 widget.setCharSequence(R.id.date, "setFormat24Hour", timeFormat); 216 widget.setTextViewTextSize(R.id.date, TypedValue.COMPLEX_UNIT_PX, fontSize * ratio);
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
QuotedTextView.java | 38 import java.util.Date; 246 Date date = new Date(refMessage.dateReceivedMs); local 253 dateFormat.format(date), 266 true /* remove empty quotes */), dateFormat.format(date), Utils
|
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-reference.js | 11 var date = new Date(); 12 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years 13 var expiration = date.toGMTString(); 69 var date = new Date(); 70 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years 71 var expiration = date.toGMTString() [all...] |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
KeyGenParameterSpecTest.java | 29 import java.util.Date; 37 private static final Date DEFAULT_CERT_NOT_BEFORE = new Date(0L); // Jan 1 1970 38 private static final Date DEFAULT_CERT_NOT_AFTER = new Date(2461449600000L); // Jan 1 2048 74 Date certNotBeforeDate = new Date(System.currentTimeMillis()); 75 Date certNotAfterDate = new Date(System.currentTimeMillis() + 12345678); 76 Date keyValidityStartDate = new Date(System.currentTimeMillis() - 2222222) 144 Date date = new Date(System.currentTimeMillis() + 555555); local [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
CookieManagerTest.java | 31 import java.util.Date; 408 Date date = new Date(); local 409 date.setTime(date.getTime() + millisecondsTillExpiry); 410 return cookie + "; expires=" + date.toGMTString();
|
/external/autotest/client/cros/image_comparison/ |
publisher.py | 120 'date': datetime.date.today().strftime("%m/%d/%y"),
|
/external/autotest/client/cros/ui/ |
ui_test_base.py | 135 'date': datetime.date.today().strftime("%m/%d/%y"),
|
/external/chromium-trace/catapult/trace_processor/trace_uploader/ |
trace_info.py | 10 date = ndb.DateTimeProperty(auto_now_add=True, indexed=True) variable in class:TraceInfo
|
/external/curl/packages/vms/ |
pcsi_product_gnv_curl.com | 60 $! Make sure that the kit name is up to date for this build 90 $! Make sure that the release note file name is up to date
|
/external/doclava/res/assets/templates/assets/ |
doclava-developer-reference.js | 12 var date = new Date(); 13 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years 14 var expiration = date.toGMTString(); 64 var date = new Date(); 65 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years 66 var expiration = date.toGMTString() [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
Utils.java | 242 * Returns the date/time from the build id in format yyyymmddhm 245 * @return date/time in format YYYYMMDDHHMM, ie. 200504060010 260 // if release build, expect <release>_<release date and 261 // timestamp>_<date and timestamp test ran> 262 // use test date and time for plotting 265 int date = Integer.parseInt(buildIdParts[buildIdSegment].substring(6, 8)); local 269 calendar.set(year, month, date, hours, min); 273 // if regular build, expect <buildType><date>-<time> format 277 int date = Integer.parseInt(buildIdParts[0].substring(7, 9)); local 280 calendar.set(year, month, date, hours, min) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TimeZoneNamesImpl.java | 119 public String getMetaZoneID(String tzID, long date) { 120 return _getMetaZoneID(tzID, date); 123 static String _getMetaZoneID(String tzID, long date) { 130 if (date >= map.from() && date < map.to()) { 253 public void getDisplayNames(String tzID, NameType[] types, long date, 265 String mzID = getMetaZoneID(tzID, date); 830 * Private static method parsing the date text used by meta zone to 833 * @param text the UTC date text in the format of "yyyy-MM-dd HH:mm", 835 * @return the date 888 long date = Grego.fieldsToDay(year, month - 1, day) * Grego.MILLIS_PER_DAY local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TimeZoneNamesImpl.java | 117 public String getMetaZoneID(String tzID, long date) { 118 return _getMetaZoneID(tzID, date); 121 static String _getMetaZoneID(String tzID, long date) { 128 if (date >= map.from() && date < map.to()) { 251 public void getDisplayNames(String tzID, NameType[] types, long date, 263 String mzID = getMetaZoneID(tzID, date); 828 * Private static method parsing the date text used by meta zone to 831 * @param text the UTC date text in the format of "yyyy-MM-dd HH:mm", 833 * @return the date 886 long date = Grego.fieldsToDay(year, month - 1, day) * Grego.MILLIS_PER_DAY local [all...] |
/external/iptables/extensions/ |
libxt_time.c | 86 /* ...and have no date-begin or date-end boundary */ 160 xtables_error(PARAMETER_PROBLEM, "Invalid date \"%s\" specified. Should " 304 static void time_print_date(time_t date, const char *command) 309 if (date == 0 || date == LONG_MAX) 312 t = gmtime(&date); 407 printf(" until date");
|
/external/jetty/src/java/org/eclipse/jetty/security/authentication/ |
FormAuthenticator.java | 444 public void addDateHeader(String name, long date) 447 super.addDateHeader(name,date); 458 public void setDateHeader(String name, long date) 461 super.setDateHeader(name,date);
|
/external/libdrm/tests/nouveau/ |
threaded.c | 114 printf(" Date: %s\n", version->date);
|
/external/tcpdump/ |
makemib | 47 * This file was generated by tcpdump/makemib on `date`
|