/external/pdfium/fpdfsdk/src/javascript/ |
JS_Value.cpp | 209 void CJS_Value::operator=(CJS_Date& date) { 210 m_pValue = FXJS_NewDate(m_pJSRuntime->GetIsolate(), (double)date); 265 FX_BOOL CJS_Value::ConvertToDate(CJS_Date& date) const { 268 // date = (double)(*this); 273 date.Attach(m_pValue); 394 void CJS_PropValue::operator>>(CJS_Date& date) const { 396 ConvertToDate(date); 399 void CJS_PropValue::operator<<(CJS_Date& date) { 401 CJS_Value::operator=(date); 502 double date = MakeDate(iYear, GetMonth(), GetDay(), GetHours(), GetMinutes() local 516 double date = MakeDate(GetYear(), iMonth, GetDay(), GetHours(), GetMinutes(), local 530 double date = MakeDate(GetYear(), GetMonth(), iDay, GetHours(), GetMinutes(), local 544 double date = MakeDate(GetYear(), GetMonth(), GetDay(), iHours, GetMinutes(), local 558 double date = MakeDate(GetYear(), GetMonth(), GetDay(), GetHours(), minutes, local 572 double date = MakeDate(GetYear(), GetMonth(), GetDay(), GetHours(), local 818 double date = v->ToNumber(context).ToLocalChecked()->Value(); local [all...] |
/external/sfntly/cpp/src/sfntly/data/ |
font_output_stream.h | 40 // LONGDATETIME Date represented in number of seconds since 12:00 midnight, 64 virtual void WriteDateTime(int64_t date);
|
/external/v8/test/webkit/ |
date-parse-comments-test.js | 25 "test of JavaScript date parsing (comments in parentheses)" 28 function testDateParse(date, numericResult) 31 shouldBeNaN('Date.parse("' + date + '")'); 32 shouldBeNaN('Date.parse("' + date.toUpperCase() + '")'); 33 shouldBeNaN('Date.parse("' + date.toLowerCase() + '")'); 35 shouldBeTrue('Date.parse("' + date + '") == ' + numericResult) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPDateTimeImpl.java | 13 import java.util.Date; 68 // extract the date and timezone from the calendar provided 69 Date date = calendar.getTime(); local 72 // put that date into a calendar the pretty much represents ISO8601 76 intCalendar.setGregorianChange(new Date(Long.MIN_VALUE)); 78 intCalendar.setTime(date); 93 * a <code>Date</code> and a <code>TimeZone</code>. 95 * @param date a date describing an absolute point in tim [all...] |
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
AccessibleDateAnimator.java | 17 package com.android.datetimepicker.date; 37 * Announce the currently-selected date when launched. 42 // Clear the event's current text so that only the current date will be spoken.
|
SimpleMonthView.java | 17 package com.android.datetimepicker.date;
|
/frameworks/opt/telephony/src/java/android/provider/ |
Telephony.java | 162 * The date the message was received. 165 public static final String DATE = "date"; 168 * The date the message was sent. 323 public static final String DEFAULT_SORT_ORDER = "date DESC"; 333 * @param date the timestamp for the message 341 Long date, boolean read, boolean deliveryReport) { 343 resolver, uri, address, body, subject, date, read, deliveryReport, -1L); 354 * @param date the timestamp for the message 363 Long date, boolean read, boolean deliveryReport) [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
CallLogPullRequest.java | 34 import java.util.Date; 82 Date date = null; local 87 date = parser.parse(pair.second); 89 Log.d(TAG, "Failed to parse date " + pair.second); 97 if (date != null) { 98 values.put(CallLog.Calls.DATE, date.getTime());
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
ContactPhotoUtils.java | 41 import java.util.Date; 81 final Date date = new Date(System.currentTimeMillis()); local 83 return "ContactPhoto-" + dateFormat.format(date) + ".jpg"; 87 final Date date = new Date(System.currentTimeMillis()); local 89 return "ContactPhoto-" + dateFormat.format(date) + "-cropped.jpg";
|
/system/webservd/webservd/ |
log_manager_unittest.cc | 99 tm date = {0, 0, 0, 25, 1, 115, 2, 55, 0}; local 100 base::Time timestamp = base::Time::FromTimeT(mktime(&date)); 125 tm date = {0, 0, 0, 25, 1, 115, 2, 55, 0}; local 126 base::Time timestamp = base::Time::FromTimeT(mktime(&date));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
BuildResults.java | 33 String date; field in class:BuildResults 95 * Compare build results using the date of the build. 151 * Returns the date of the build which is a part of its name. 153 * @return The date of the build as yyyyMMddHHmm 156 if (this.date == null) { 159 this.date = this.name.substring(length-12, length); 164 this.date = this.name.substring(1, 9)+this.name.substring(10, 14); 166 this.date = this.name.substring(1); 169 int length = this.name.length() - 12 /* length of date */; 174 this.date = substring; // if no exception is raised then the substring has a correct date format => store i [all...] |
/external/autotest/client/site_tests/firmware_TouchMTB/tools/ |
create_version.py | 11 The version file contains a pair of a date-time string and a hash like 19 and the date-time string is the commit time of the above latest patch in the 77 """Get the commit date time in ISO 8601 format.""" 80 date, time, _ = ts.split() 81 return '%s.%s' % (date, time)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/ |
feedManipulationEclipse.sh | 18 tmpfolder="/tmp/antrunner-"`date +%Y%m%d_%H%M%S`;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
Holiday.java | 11 import java.util.Date; 62 * Return the first occurrence of this holiday on or after the given date 64 * @param start Only holidays on or after this date are returned. 66 * @return The date on which this holiday occurs, or null if it 67 * does not occur on or after the start date. 72 public Date firstAfter(Date start) { 78 * the given start date and before the given end date. 80 * @param start Only occurrences on or after this date are returned [all...] |
HebrewCalendar.java | 9 import java.util.Date; 37 * rather than attempting to perform date arithmetic by manipulating 151 * The absolute date, in milliseconds since 1/1/1970 AD, Gregorian, 330 * Constructs a <code>HebrewCalendar</code> with the given date set 338 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 341 public HebrewCalendar(int year, int month, int date) { 345 this.set(DATE, date); [all...] |
/external/icu/icu4c/source/i18n/ |
cecal.cpp | 110 CECalendar::ceToJD(int32_t year, int32_t month, int32_t date, int32_t jdEpochOffset) 126 + date - 1 // number of days for present month (1 based)
|
/external/icu/icu4c/source/test/intltest/ |
dadrfmt.cpp | 9 * Date Name Description 76 * Headers { "locale", "zone", "spec", "date", "str"} 79 // spec: either 'PATTERN=y mm h' etc, or 'DATE=SHORT,TIME=LONG' 80 // date: either an unsigned long (millis), or a calendar spec ERA=0,YEAR=1, etc.. applied to the calendar type specified by the locale 86 "DATE=SHORT,TIME=SHORT", 87 "ERA=1,YEAR=2007,MONTH=AUGUST,DATE=8,HOUR=18,MINUTE=54,SECOND=12", 146 UnicodeString date = currentCase->getString("date", status); local 148 errln("case %d: No 'date' line.", n); 194 // parse 'date' [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
Holiday.java | 10 import java.util.Date; 64 * Return the first occurrence of this holiday on or after the given date 66 * @param start Only holidays on or after this date are returned. 68 * @return The date on which this holiday occurs, or null if it 69 * does not occur on or after the start date. 75 public Date firstAfter(Date start) { 81 * the given start date and before the given end date. 83 * @param start Only occurrences on or after this date are returned [all...] |
/external/netperf/doc/examples/ |
bloat.sh | 16 RR_START=`date +%s` 30 STREAM_START=`date +%s` 33 STREAM_STOP=`date +%s` 40 RR_STOP=`date +%s`
|
/external/v8/build/ |
gdb-add-index | 64 local start=$(date +"%s%N") 73 local finish=$(date +"%s%N")
|
/external/vogar/src/vogar/ |
AnnotatedOutcome.java | 49 public void add(long date, Outcome outcome) { 50 previousOutcomes.put(date, outcome);
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/ |
ObexTime.java | 20 import java.util.Date; 28 private Date mDate; 78 public ObexTime(Date date) { 79 mDate = date; 82 public Date getTime() { 98 cal.get(Calendar.DATE), cal.get(Calendar.HOUR_OF_DAY),
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/utils/ |
ObexTime.java | 20 import java.util.Date; 28 private Date mDate; 78 public ObexTime(Date date) { 79 mDate = date; 82 public Date getTime() { 98 cal.get(Calendar.DATE), cal.get(Calendar.HOUR_OF_DAY),
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
TimeZoneNames.java | 42 * to meta zones mapping data are stored by date range. 199 * Returns the meta zone ID for the given canonical time zone ID at the given date. 203 * @param date 204 * The date. 205 * @return The meta zone ID for the given time zone ID at the given date. If the time zone does not have a 206 * corresponding meta zone at the given date or the implementation does not support meta zones, null is 209 public abstract String getMetaZoneID(String tzID, long date); 242 * Returns the display name of the time zone at the given date. 253 * @param date 254 * The date [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
TimeZoneNames.java | 41 * to meta zones mapping data are stored by date range. 222 * Returns the meta zone ID for the given canonical time zone ID at the given date. 226 * @param date 227 * The date. 228 * @return The meta zone ID for the given time zone ID at the given date. If the time zone does not have a 229 * corresponding meta zone at the given date or the implementation does not support meta zones, null is 233 public abstract String getMetaZoneID(String tzID, long date); 268 * Returns the display name of the time zone at the given date. 279 * @param date 280 * The date [all...] |