/external/icu/icu4c/source/i18n/unicode/ |
simpletz.h | 11 * Date Name Description 275 * the exact starting date. Their exact meaning depend on their respective signs, 319 * the exact starting date. Their exact meaning depend on their respective signs, 361 * Sets the DST start rule to a fixed date within a month. 364 * @param dayOfMonth The date in that month (1-based). 374 * Sets the DST start rule to a fixed date within a month. 377 * @param dayOfMonth The date in that month (1-based). 390 * Sets the DST start rule to a weekday before or after a give date within 394 * @param dayOfMonth A date within that month (1-based). 408 * Sets the DST start rule to a weekday before or after a give date withi [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
PutFilter.java | 347 * Check modification date headers. 351 long date = 0; local 353 if ((date = request.getDateHeader("if-unmodified-since")) > 0) 355 if (file.lastModified() / 1000 > date / 1000) 362 if ((date = request.getDateHeader("if-modified-since")) > 0) 364 if (file.lastModified() / 1000 <= date / 1000)
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
DayPickerView.java | 17 package com.android.datetimepicker.date; 35 import com.android.datetimepicker.date.DatePickerDialog.OnDateChangedListener; 36 import com.android.datetimepicker.date.MonthAdapter.CalendarDay; 271 protected void setMonthDisplayed(CalendarDay date) { 272 mCurrentMonthDisplayed = date.month; 374 * Attempts to return the date that has accessibility focus. 376 * @return The date that has accessibility focus, or {@code null} if no date 399 * Attempts to restore accessibility focus to a given date. No-op if 402 * @param day The date that should receive accessibility focu [all...] |
/external/icu/icu4c/source/test/intltest/ |
dtfmttst.cpp | 294 * Instantiate a date so we can display the time zone name. 673 tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17 10:11:42", date(97, 1 - 1, 17, 10, 11, 42)); 692 UDate date = format->parse(str, status); local 693 if (U_FAILURE(status) || date == null) 701 ((DateFormat*)format)->format(date, f); 702 logln(UnicodeString(" parse(") + str + ") -> " + dateToString(date)); 705 !(date == expected)) errln((UnicodeString)"FAIL: Expected null");//" + expected); 770 testIt917(fmt, myDate, date(97, 2 - 1, 3)); 774 testIt917(fmt, myDate, date(97, 3 - 1, 4)); 822 UDate june = date(97, UCAL_JUNE, 15) 1090 UDate date; local 1201 UDate date; local 1386 DateFormat *date=0, *time=0, *full=0; local 1568 UDate date = -9896080848000.0; local 2024 UDate date = ref.parse(ctou(datestr), ec); local 2045 UDate date = ref.parse(ctou(datestr), ec); local 2063 UDate date = ref.parse(ctou(datestr), ec); local 2125 UDate date = ref.parse(ctou(datestr), ec); local [all...] |
/external/v8/src/ |
builtins.cc | 3409 double date = MakeDate(day, time); local 3519 double date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, ms = 0.0; local 3592 double date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, ms = 0.0; local 3690 Handle<Object> date = args.at<Object>(3); local 3810 Handle<Object> date = args.at<Object>(2); local 3899 Handle<Object> date = args.at<Object>(3); local 4015 Handle<Object> date = args.at<Object>(2); local [all...] |
/external/icu/icu4c/source/i18n/ |
basictz.cpp | 130 BasicTimeZone::getSimpleRulesNear(UDate date, InitialTimeZoneRule*& initial, 148 avail = getNextTransition(date, FALSE, tr); 155 // within roughly 1 year from the specified date 159 && (date + MILLIS_PER_YEAR > nextTransitionTime)) { 201 // Make sure this rule can be applied to the specified date 202 avail = ar2->getPreviousStart(date, tr.getFrom()->getRawOffset(), tr.getFrom()->getDSTSavings(), TRUE, d); 203 if (!avail || d > date 215 avail = getPreviousTransition(date, TRUE, tr); 234 // Check if this rule start after the first rule after the specified date 235 avail = ar2->getNextStart(date, tr.getFrom()->getRawOffset(), tr.getFrom()->getDSTSavings(), FALSE, d) [all...] |
rbtz.cpp | 245 // Check if one of final rules has earlier transition date 399 RuleBasedTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset, 401 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status); 405 RuleBasedTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, 407 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status); 415 RuleBasedTimeZone::getOffsetInternal(UDate date, UBool local, 438 if (date < tstart) { 444 if (date > tend) { 446 rule = findRuleInFinal(date, local, NonExistingTimeOpt, DuplicatedTimeOpt); 456 if (date >= getTransitionTime((Transition*)fHistoricTransitions->elementAt(idx) [all...] |
tzgnames.cpp | 277 UDate date, UnicodeString& name) const; 309 UDate date, UnicodeString& name) const; 463 TZGNCore::getDisplayName(const TimeZone& tz, UTimeZoneGenericNameType type, UDate date, UnicodeString& name) const { 476 formatGenericNonLocationName(tz, type, date, name); 614 TZGNCore::formatGenericNonLocationName(const TimeZone& tz, UTimeZoneGenericNameType type, UDate date, UnicodeString& name) const { 636 fTimeZoneNames->getMetaZoneID(tzID, date, mzID); 643 tz.getOffset(date, FALSE, raw, sav, status); 663 UBool beforTrs = btz->getPreviousTransition(date, TRUE, before); 665 && (date - before.getTime() < kDstCheckRange) 670 UBool afterTrs = btz->getNextTransition(date, FALSE, after) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
DateFormatTest.java | 28 import java.util.Date; 135 Date testDate = new Date(2012-1900, 6, 1, 14, 58, 59); // just for verbose log 225 Date today = new Date(); 249 * Instantiate a date so we can display the time zone name. 306 * return Date value with TimeZone.getDefault() [Richard/GCL] 317 Date d = fmt.parse(s); 372 Date aug13 = new Date((long) 871508052513.0) 1555 Date date = null; local 1569 Date date = format.parse(str); local 1827 Date date; local 1928 Date date; local 2039 Date date = new Date(874266720000L); \/\/ Sun Sep 14 21:52:00 CET 1997 local 2085 DateFormat date=null, time=null, full=null; local 2235 Date date = new Date(-9896080848000L); local 3171 Date date = null; local 3272 Date date = null; local 3311 Date date = null; local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
DateFormatTest.java | 27 import java.util.Date; 131 Date testDate = new Date(2012-1900, 6, 1, 14, 58, 59); // just for verbose log 221 Date today = new Date(); 245 * Instantiate a date so we can display the time zone name. 302 * return Date value with TimeZone.getDefault() [Richard/GCL] 313 Date d = fmt.parse(s); 368 Date aug13 = new Date((long) 871508052513.0) 1551 Date date = null; local 1565 Date date = format.parse(str); local 1823 Date date; local 1924 Date date; local 2035 Date date = new Date(874266720000L); \/\/ Sun Sep 14 21:52:00 CET 1997 local 2081 DateFormat date=null, time=null, full=null; local 2231 Date date = new Date(-9896080848000L); local 3167 Date date = null; local 3268 Date date = null; local 3307 Date date = null; local [all...] |
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
i18n.py | 57 #: Default date formats for datetime, date and time. 67 'date': 'medium', 74 'date.short': None, 75 'date.medium': None, 76 'date.full': None, 77 'date.long': None, 78 'date.iso': "yyyy'-'MM'-'dd", 108 #: Dictionary of default date formats. 327 name or pattern to be used by Babel date format functions [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
DangiTest.java | 9 import java.util.Date; 85 Date date = grego.getTime(); local 86 cal.setTime(date); 96 buf.append(date + " -> "); 108 Date dexp = grego.getTime(); 118 Date date = cal.getTime(); local 121 buf.append(" -> " + date); 122 if (date.equals(dexp)) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
DangiTest.java | 8 import java.util.Date; 81 Date date = grego.getTime(); local 82 cal.setTime(date); 92 buf.append(date + " -> "); 104 Date dexp = grego.getTime(); 114 Date date = cal.getTime(); local 117 buf.append(" -> " + date); 118 if (date.equals(dexp)) [all...] |
/frameworks/base/core/java/android/net/http/ |
SslCertificate.java | 39 import java.util.Date; 50 * SimpleDateFormat pattern for an ISO 8601 date 65 * Not-before date from the validity period 67 private final Date mValidNotBefore; 70 * Not-after date from the validity period 72 private final Date mValidNotAfter; 149 * @param validNotBefore The not-before date from the certificate 151 * @param validNotAfter The not-after date from the certificate 165 * @param validNotBefore The not-before date from the certificate validity period 166 * @param validNotAfter The not-after date from the certificate validity perio [all...] |
/external/pdfium/xfa/src/fxfa/src/app/ |
xfa_fftextedit.cpp | 604 CFX_Unitime date = lcValue.GetDate();
local 605 if ((FX_UNITIME)date != 0) {
606 pWidget->SetCurSel(date.GetYear(), date.GetMonth(), date.GetDay());
705 CFX_Unitime date = lcValue.GetDate();
local 707 if ((FX_UNITIME)date != 0) {
709 ->SetCurSel(date.GetYear(), date.GetMonth(), date.GetDay()); [all...] |
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
XmlReport.java | 25 import java.util.Date; 43 String date = format.format(new Date(System.currentTimeMillis())); local 44 out.println("<api-coverage generatedTime=\"" + date + "\" title=\"" + reportTitle +"\">");
|
/developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/ |
PhoneMainActivity.java | 82 String date = DateUtils.formatDateTime(this, calendar.getTimeInMillis(), local 84 mSelectedDateText.setText(getString(R.string.showing_for_date, date)); 124 Log.d(TAG, "No Entries found for that date");
|
/developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/ |
PhoneMainActivity.java | 82 String date = DateUtils.formatDateTime(this, calendar.getTimeInMillis(), local 84 mSelectedDateText.setText(getString(R.string.showing_for_date, date)); 124 Log.d(TAG, "No Entries found for that date");
|
/development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/ |
PhoneMainActivity.java | 82 String date = DateUtils.formatDateTime(this, calendar.getTimeInMillis(), local 84 mSelectedDateText.setText(getString(R.string.showing_for_date, date)); 124 Log.d(TAG, "No Entries found for that date");
|
/external/autotest/server/ |
site_log_time_diff.py | 49 date, sep, fraction = syslog_time.partition('.') 50 int_time = time.mktime(time.strptime(date, '%Y-%m-%dT%H:%M:%S'))
|
/external/autotest/site_utils/ |
collect_host_stats.py | 13 from datetime import date namespace 108 today = datetime.combine(date.today(), datetime.min.time())
|
/external/autotest/utils/ |
site_check_dut_usage.py | 32 @start_time: start date of time period we are interested in. 33 @end_time: end date of time period we are interested in. Note the 60 'where tko_jobs.started_time>=DATE(%s) and ' 61 ' tko_jobs.finished_time<DATE(%s)') 159 return (datetime.datetime.strptime(start_time, _DATE_FORMAT).date(), 160 datetime.datetime.strptime(end_time, _DATE_FORMAT).date(),
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
test_httpheaders.py | 114 sample = [WWW_AUTHENTICATE, VIA, ACCEPT, DATE, 122 'Cache-Control', 'Date', 'Upgrade', 'Via', 138 ('expires','Entity An-Expiration-Date'), 139 ('date','General A-Date')] 142 ('Date', 'General A-Date'), 147 ('Expires', 'Entity An-Expiration-Date'), 152 date = 'Thu, 34 Jul 3119 29:34:18 GMT' 154 x = IF_MODIFIED_SINCE.parse({'HTTP_IF_MODIFIED_SINCE': date, [all...] |
/external/compiler-rt/make/ |
options.mk | 3 # This list of such variables should be kept up to date with AvailableOptions in
|
/external/curl/ |
maketgz | 48 # requires a date command that knows -u for UTC time zone 49 datestamp=`LC_TIME=C date -u` 132 git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./scripts/log2changes.pl > CHANGES.dist
|