Searched defs:date (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/intl/date-format/
H A Dparse-MMMdy.js28 // Testing v8Parse method for date and time pattern.
39 var date = dtf.v8Parse('Feb 4, 1974'); variable
40 assertEquals(1974, date.getUTCFullYear());
41 assertEquals(1, date.getUTCMonth());
42 assertEquals(4, date.getUTCDate());
H A Dparse-mdyhms.js28 // Testing v8Parse method for date and time pattern.
39 var date = dtf.v8Parse('2/4/74 12:30:42 pm'); variable
40 assertEquals(1974, date.getUTCFullYear());
41 assertEquals(1, date.getUTCMonth());
42 assertEquals(4, date.getUTCDate());
43 assertEquals(12, date.getUTCHours());
44 assertEquals(30, date.getUTCMinutes());
45 assertEquals(42, date.getUTCSeconds());
56 // Wrong date delimiter.
/external/lldb/test/functionalities/command_source/
H A Dmy.py1 def date(): function
3 today = datetime.date.today()
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_key_unittest.cc31 double date = 1370884329.0; local
32 keys.push_back(IndexedDBKey(date, blink::WebIDBKeyTypeDate));
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DDateHelper.java28 * @return date the corresponding <code>Date</code>
36 * Converts a date as long to a mac date as long
38 * @param date date to convert
39 * @return date in mac format
41 static public long convert(Date date) { argument
42 return (date.getTime() / 1000L) + 2082844800L;
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DDateParser.java41 * @param date message to parse to set
43 public DateParser(String date) { argument
44 super(date);
64 Calendar cal = date();
H A DHeaderParser.java78 * parse and return a date field.
79 * @return a date structure with the parsed value.
81 protected Calendar date() throws ParseException { method in class:HeaderParser
123 throw createParseException("bad date field");
/external/nist-sip/java/javax/sip/header/
H A DDateHeader.java9 void setDate(Calendar date); argument
/external/smack/src/org/xbill/DNS/
H A DFormattedTime.java32 * @param date The Date to convert.
36 format(Date date) { argument
40 c.setTime(date);
67 int date = Integer.parseInt(s.substring(6, 8));
71 c.set(year, month, date, hour, minute, second);
/external/apache-http/src/org/apache/http/client/
H A DCookieStore.java70 * the specified {@link java.util.Date date}.
74 boolean clearExpired(Date date); argument
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java135 * that have expired by the specified {@link java.util.Date date}.
141 public synchronized boolean clearExpired(final Date date) { argument
142 if (date == null) {
147 if (it.next().isExpired(date)) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DTime.java60 * Create a time object from a given date - if the year is in between 1950
65 Date date)
72 String d = dateF.format(date) + "Z";
119 * Get the date+tine as a String in full form century format.
134 * Get java.util.Date version of date+time.
151 throw new IllegalStateException("invalid date string: " + e.getMessage());
64 Time( Date date) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DTime.java41 * creates a time object from a given date - if the date is between 1950
46 Date date)
53 String d = dateF.format(date) + "Z";
112 throw new IllegalStateException("invalid date string: " + e.getMessage());
45 Time( Date date) argument
/external/chromium_org/media/blink/
H A Dcache_util.cc74 Time date; local
76 if (Time::FromString(response.httpHeaderField("Date").utf8().data(), &date) &&
79 date > Time() && expires > Time() &&
80 (expires - date) < kMinimumAgeForUsefulness) {
/external/chromium_org/third_party/icu/source/i18n/
H A Dwindtfmt.h55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
69 * Set the calendar to be used by this date format. Initially, the default
130 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const { argument
131 return DateFormat::format(date, appendTo);
/external/chromium_org/third_party/icu/source/samples/datefmt/answers/
H A Dmain_2.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
75 // Format the date
77 fmt->format(date, str, status);
79 // Display the formatted date string
H A Dmain_3.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
/external/chromium_org/third_party/icu/source/samples/datefmt/
H A Dmain.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
/external/chromium_org/tools/
H A Dboilerplate.py11 from datetime import date namespace
18 date.today().year,
/external/icu/icu4c/source/i18n/
H A Dwindtfmt.h55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
69 * Set the calendar to be used by this date format. Initially, the default
130 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const { argument
131 return DateFormat::format(date, appendTo);
/external/icu/icu4c/source/samples/datefmt/answers/
H A Dmain_2.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
75 // Format the date
77 fmt->format(date, str, status);
79 // Display the formatted date string
H A Dmain_3.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
/external/icu/icu4c/source/samples/datefmt/
H A Dmain.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
/external/ksoap2/kobjects/org/ksoap2/kobjects/isodate/
H A DIsoDate.java36 public static String dateToString(Date date, int type) { argument
40 c.setTime(date);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPDateHeader.java50 /** date field
52 protected SIPDate date; field in class:SIPDateHeader
64 return date.encode();
68 * Set the date member
72 date = d;
77 * Sets date of DateHeader. The date is repesented by the Calendar object.
79 * @param dat the Calendar object date of this header.
83 date = new SIPDate(dat.getTime().getTime());
87 * Gets the date o
[all...]

Completed in 3544 milliseconds

1234567891011>>