/external/webkit/Tools/QueueStatusServer/handlers/ |
recentstatus.py | 29 import datetime namespace 66 return self.last_heard_from() > (datetime.datetime.now() - datetime.timedelta(minutes=30))
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
feeders_unittest.py | 29 from datetime import datetime namespace 60 long_ago_date = datetime(1900, 1, 21) 61 recent_date = datetime(2010, 1, 21)
|
queueengine_unittest.py | 29 import datetime namespace 193 self.assertTrue(isinstance(engine._now(), datetime.datetime)) 197 engine._now = lambda: datetime.datetime(2010, 1, 1)
|
queueengine.py | 34 from datetime import datetime, timedelta namespace 156 return datetime.now()
|
/frameworks/base/media/mtp/ |
MtpUtils.cpp | 28 DateTime strings follow a compatible subset of the definition found in ISO 8601, and 36 bool parseDateTime(const char* dateTime, time_t& outSeconds) { 40 if (sscanf(dateTime, "%04d%02d%02dT%02d%02d%02d", 43 const char* tail = dateTime + 15;
|
MtpUtils.h | 24 bool parseDateTime(const char* dateTime, time_t& outSeconds);
|
/external/skia/include/core/ |
SkTime.h | 27 struct DateTime { 36 static void GetDateTime(DateTime*);
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
dashboard.py | 23 import datetime namespace 114 entity.updated = datetime.datetime.utcnow() 128 contact.updated = datetime.datetime.utcnow() 158 contact.updated = datetime.datetime.utcnow()
|
/external/webkit/Tools/QueueStatusServer/model/ |
activeworkitems.py | 31 from datetime import timedelta, datetime namespace 96 return datetime.fromtimestamp(time)
|
/external/webkit/Tools/TestResultServer/model/ |
dashboardfile.py | 29 from datetime import datetime namespace 102 file.date = datetime.now()
|
testfile.py | 29 from datetime import datetime namespace 120 self.date = datetime.now()
|
/frameworks/compile/libbcc/tools/ |
gen-build-stamp.py | 3 import datetime namespace 92 build_time = datetime.datetime.now().strftime('%Y/%m/%d %H:%M:%S')
|
/external/skia/src/animator/ |
SkTime.cpp | 26 void SkTime::GetDateTime(DateTime* t) 56 void SkTime::GetDateTime(DateTime* t)
|
/external/webkit/Source/WebCore/html/ |
BaseDateAndTimeInputType.h | 39 // A super class of date, datetime, datetime-local, month, time, and week types.
|
DateTimeLocalInputType.cpp | 58 // valueAsDate doesn't work for the datetime-local type according to the standard. 64 // valueAsDate doesn't work for the datetime-local type according to the standard.
|
DateComponents.h | 45 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond 77 // The format argument is valid for DateTime, DateTimeLocal, and Time types. 114 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond. 190 DateTime,
|
/external/icu4c/i18n/unicode/ |
utmscale.h | 19 * There are quite a few different conventions for binary datetime, depending on different 167 * and converted back to any other datetime time scale. 171 * .NET <code>System.DateTime</code> values without severe loss of precision. ICU4C time addresses this by using a 188 * <code>System.DateTime</code> would be the best pivot. However, we use the full range 236 * Used in the .NET framework's <code>System.DateTime</code> structure. Data is an <code>int64_t</code>. Value 449 * Convert a <code>int64_t</code> datetime from the given time scale to the universal time scale. 451 * @param otherTime The <code>int64_t</code> datetime 455 * @return The datetime converted to the universal time scale 465 * Convert a datetime from the universal time scale to a <code>int64_t</code> in the given time scale. 467 * @param universalTime The datetime in the universal time scal [all...] |
/external/skia/src/ports/ |
SkTime_Unix.cpp | 24 void SkTime::GetDateTime(DateTime* dt)
|
SkTime_win.cpp | 20 void SkTime::GetDateTime(DateTime* dt)
|
/external/webkit/Source/WebCore/css/ |
themeWin.css | 38 input[type="datetime"], 39 input[type="datetime-local"], 75 input[type="datetime"]:disabled, 76 input[type="datetime-local"]:disabled,
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
package.html | 12 <meta name="@see" content='<a href="http://www.w3.org/TR/xmlschema-2/#dateTime">W3C XML Schema 1.0 Part 2, Section 3.2.7-14</a>' /> 26 <li><a href="http://www.w3.org/TR/xmlschema-2/#dateTime">W3C XML Schema 1.0 Part 2, Section 3.2.7-14</a></li> 47 <td>xs:dateTime</td> 137 <li>See <a href="http://www.w3.org/TR/xmlschema-2/#dateTime">W3C XML Schema 1.0 Part 2, Section 3.2.7-14</a></li>
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParserConstants.java | 17 package org.apache.james.mime4j.field.datetime.parser;
|
DateTimeParser.java | 17 package org.apache.james.mime4j.field.datetime.parser; 19 import org.apache.james.mime4j.field.datetime.DateTime; 115 final public DateTime parseLine() throws ParseException { 116 DateTime dt; 131 final public DateTime parseAll() throws ParseException { 132 DateTime dt; 139 final public DateTime date_time() throws ParseException { 158 {if (true) return new DateTime(
|
/frameworks/base/tests/ImfTest/res/values/ |
strings.xml | 35 <string name="normal_datetime_edit_text_label">Datetime</string>
|
/frameworks/base/media/java/android/media/ |
ExifInterface.java | 35 public static final String TAG_DATETIME = "DateTime"; 342 Date datetime = sFormatter.parse(dateTimeString, pos); local 343 if (datetime == null) return -1; 344 return datetime.getTime(); 365 Date datetime = sFormatter.parse(dateTimeString, pos); local 366 if (datetime == null) return -1; 367 return datetime.getTime();
|