HomeSort by relevance Sort by last modified time
    Searched full:datetime (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/
DateTime.java 20 package org.apache.james.mime4j.field.datetime;
22 import org.apache.james.mime4j.field.datetime.parser.DateTimeParser;
23 import org.apache.james.mime4j.field.datetime.parser.ParseException;
24 import org.apache.james.mime4j.field.datetime.parser.TokenMgrError;
32 public class DateTime {
42 public DateTime(String yearString, int month, int day, int hour, int minute, int second, int timeZone) {
119 public static DateTime parse(String dateString) throws ParseException {
  /packages/apps/Email/src/org/apache/james/mime4j/field/
DateTimeField.java 26 import org.apache.james.mime4j.field.datetime.DateTime;
27 import org.apache.james.mime4j.field.datetime.parser.ParseException;
59 date = DateTime.parse(body).getDate();
  /development/testrunner/
logger.py 24 import datetime namespace
63 return "# %s: %s" % (datetime.datetime.now().strftime("%m/%d/%y %H:%M:%S"),
  /external/webkit/WebCore/html/
HTMLModElement.idl 24 attribute [ConvertNullToNullString] DOMString dateTime;
HTMLModElement.cpp 46 String HTMLModElement::dateTime() const
HTMLModElement.h 41 String dateTime() const;
HTMLInputElement.cpp 176 case DATETIME:
217 case DATETIME:
279 case DATETIME:
304 case DATETIME:
340 case DATETIME:
376 case DATETIME:
416 case DATETIME:
464 case DATETIME:
522 case DATETIME:
573 case DATETIME
    [all...]
DateComponents.h 46 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond
78 // The format argument is valid for DateTime, DateTimeLocal, and Time types.
115 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
178 DateTime,
  /external/skia/include/core/
SkTime.h 27 struct DateTime {
36 static void GetDateTime(DateTime*);
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRecorder.java 66 * dateTime="20090921-17:08:43"
68 * <response result="OK" dateTime="20090921-17:08:43"/>
72 * dateTime="20090921-17:09:44"
74 * <response result="OK" dateTime="20090921-17:09:45" screenshot="home_screen-20090921-17:09:45.png"/>
151 mXmlWriter.start("command", "dateTime", now());
168 * Attributes include the monkey result, datetime, and possibly screenshot filename
179 names[1] = "dateTime";
232 * Add datetime in front of filetype (the stuff after and including the last infamous '.')
  /external/skia/src/animator/
SkTime.cpp 26 void SkTime::GetDateTime(DateTime* t)
56 void SkTime::GetDateTime(DateTime* t)
  /external/chromium/third_party/icu/public/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/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)
  /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>
XMLGregorianCalendar.java 31 * <a href="#DATETIME"><code>dateTime</code></a>,
41 * <a href="http://www.w3.org/TR/xmlschema-2/#dateTime">W3C XML Schema 1.0 Part 2, Section 3.2.7-14</a>.</p>
244 * <p>Set low and high order component of XSD <code>dateTime</code> year field.</p>
257 * <p>Set year of XSD <code>dateTime</code> year field.</p>
453 * <p>Return high order component for XML Schema 1.0 dateTime datatype field for
468 * <p>Return low order component for XML Schema 1.0 dateTime datatype field for
482 * <p>Return XML Schema 1.0 dateTime datatype field for
554 * When this field is not defined, the optional xs:dateTime
610 * xs:dateTime second field, represented by {@link #getSecond()}
    [all...]
DatatypeConstants.java 204 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>dateTime</code>.</p>
206 public static final QName DATETIME = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "dateTime");
  /packages/apps/Email/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(
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 21 import datetime namespace
98 entity.updated = datetime.datetime.utcnow()
205 result.updated = datetime.datetime.utcnow()
253 result.updated = datetime.datetime.utcnow()
main.py 28 from datetime import datetime namespace
72 self.timestamp = datetime.strptime(timestamp, '%Y/%m/%d %H:%M')
  /frameworks/base/tests/ImfTest/res/values/
strings.xml 35 <string name="normal_datetime_edit_text_label">Datetime</string>
  /external/webkit/WebKitTools/Scripts/webkitpy/
queueengine.py 35 from datetime import datetime, timedelta namespace
138 wake_time = datetime.now() + timedelta(seconds=cls.seconds_to_sleep)
  /frameworks/base/media/java/android/media/
ExifInterface.java 35 public static final String TAG_DATETIME = "DateTime";
332 Date datetime = sFormatter.parse(dateTimeString, pos); local
333 if (datetime == null) return -1;
334 return datetime.getTime();
355 Date datetime = sFormatter.parse(dateTimeString, pos); local
356 if (datetime == null) return -1;
357 return datetime.getTime();
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 74 private static final String VCARD_PROPERTY_X_TIMESTAMP = "X-IRMC-CALL-DATETIME";
244 * Format according to RFC 2445 DATETIME type.
266 // e.g. "X-IRMC-CALL-DATETIME;MISSED:20050320T100000Z"

Completed in 1592 milliseconds

1 2 3 4 5 6