Home
last modified time | relevance | path

Searched refs:QDateTime (Results 1 – 24 of 24) sorted by relevance

/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dwpamsg.h20 timestamp = QDateTime::currentDateTime(); in msg()
25 QDateTime getTimestamp() const { return timestamp; } in getTimestamp()
30 QDateTime timestamp;
/external/webkit/Source/JavaScriptCore/qt/api/
Dqscriptengine.h31 class QDateTime; variable
74 QScriptValue newDate(const QDateTime& value);
Dqscriptvalue.h29 class QDateTime; variable
127 QDateTime toDateTime() const;
Dqscriptvalue_p.h118 inline QDateTime toDateTime();
682 QDateTime QScriptValuePrivate::toDateTime() in toDateTime()
685 return QDateTime(); in toDateTime()
692 return QDateTime(); in toDateTime()
695 QDateTime result; in toDateTime()
Dqscriptengine.cpp386 QScriptValue QScriptEngine::newDate(const QDateTime& value) in newDate()
Dqscriptvalue.cpp508 QDateTime QScriptValue::toDateTime() const in toDateTime()
/external/webkit/Source/WebKit/qt/Api/
Dqwebhistory.cpp144 QDateTime QWebHistoryItem::lastVisited() const in lastVisited()
148 return QDateTime::fromTime_t((uint)d->item->lastVisitedTime()); in lastVisited()
149 return QDateTime(); in lastVisited()
Dqwebhistory.h49 QDateTime lastVisited() const;
/external/webkit/Source/WebCore/bridge/qt/
Dqt_runtime.cpp224 hint = QMetaType::QDateTime; in convertValueToQVariant()
493 case QMetaType::QDateTime: in convertValueToQVariant()
500 if (hint == QMetaType::QDateTime) { in convertValueToQVariant()
501 …ret = QDateTime(QDate(gdt.year + 1900, gdt.month + 1, gdt.monthDay), QTime(gdt.hour, gdt.minute, g… in convertValueToQVariant()
514 if (hint == QMetaType::QDateTime) { in convertValueToQVariant()
515 …ret = QDateTime(QDate(gdt.year + 1900, gdt.month + 1, gdt.monthDay), QTime(gdt.hour, gdt.minute, g… in convertValueToQVariant()
529 if (hint == QMetaType::QDateTime) { in convertValueToQVariant()
530 QDateTime dt = QDateTime::fromString(qstring, Qt::ISODate); in convertValueToQVariant()
532 dt = QDateTime::fromString(qstring, Qt::TextDate); in convertValueToQVariant()
534 dt = QDateTime::fromString(qstring, Qt::SystemLocaleDate); in convertValueToQVariant()
[all …]
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
Dtst_qscriptengine.cpp701 QDateTime dt = QDateTime(QDate(1, 2, 3), QTime(4, 5, 6, 7), Qt::LocalTime); in newDate()
714 QDateTime dt = QDateTime(QDate(1, 2, 3), QTime(4, 5, 6, 7), Qt::UTC); in newDate()
/external/webkit/Source/WebKit/qt/tests/qwebhistory/
Dtst_qwebhistory.cpp273 QDateTime lastVisited(a.lastVisited()); in serialize_3()
/external/webkit/Source/WebCore/loader/
DFTPDirectoryParser.cpp44 struct tm gmtimeQt(const QDateTime& input) in gmtimeQt()
65 const QDateTime dt(QDateTime::fromTime_t(*timep)); in gmtimeQt()
/external/webkit/Source/WebKit/qt/tests/qwebframe/
Dtst_qwebframe.cpp392 void emitMySignalWithDateTimeArg(QDateTime dt) { in emitMySignalWithDateTimeArg()
455 void myOverloadedSlot(const QDateTime &arg) { in myOverloadedSlot()
494 void mySignalWithDateTimeArg(QDateTime dt);
2156 QDateTime localdt(QDate(2008,1,18), QTime(12,31,0)); in typeConversion()
2157 QDateTime utclocaldt = localdt.toUTC(); in typeConversion()
2158 QDateTime utcdt(QDate(2008,1,18), QTime(12,31,0), Qt::UTC); in typeConversion()
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
Dtst_qdeclarativewebview.cpp53 + QDateTime::currentDateTime().toString(QLatin1String("yyyyMMddhhmmss")); in tmpDir()
/external/webkit/Source/JavaScriptCore/qt/
DChangeLog29 QDateTime::{to,set}MSecsSinceEpoch() functions to do the
/external/webkit/Source/WebKit/qt/docs/
Dqtwebkit-bridge.qdoc292 … Both \l{QDate}, \l{QTime} and \l{QDateTime} are automatically translated to or from the JavaScript
/external/webkit/Source/WebKit/qt/symbian/bwins/
DQtWebKitu.def271 …?lastVisited@QWebHistoryItem@@QBE?AVQDateTime@@XZ @ 270 NONAME ; class QDateTime QWebHistoryItem::…
/external/webkit/Source/WebCore/
DChangeLog-2002-12-034739 for QTime, QDate, QDateTime.
4743 Redid QDateTime using CoreFoundation instead of time/localtime.
DChangeLog-2005-08-2314920 (QDateTime::time):
31362 (QDateTime::secsTo):
DChangeLog-2006-05-1028418 replace QDateTime with a simpler platform abstraction
DChangeLog-2005-12-198699 explicit ref/deref. Changed m_createTime to be a DOMTimeStamp instead of a QDateTime.
DChangeLog-2008-08-1057420 calling back to the thread-unsafe localtime use QDateTime instead.
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-141228 …Implemented currentTime() in the interpreter by using QDateTime, so that we don't need timeGetTime…
DChangeLog-2008-08-1020982 Fix QDateTime to JS Date conversion.