Searched refs:lastVisited (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHistoryItem.idl59 HRESULT initWithURLString([in] BSTR urlString, [in] BSTR title, [in] DATE lastVisited);
99 HRESULT lastVisitedTimeInterval([out, retval] DATE* lastVisited);
/external/webkit/Source/WebCore/history/
H A DHistoryItem.h75 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, double lastVisited) argument
77 return adoptRef(new HistoryItem(urlString, title, lastVisited));
79 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, const String& alternateTitle, double lastVisited) argument
81 return adoptRef(new HistoryItem(urlString, title, alternateTitle, lastVisited));
221 HistoryItem(const String& urlString, const String& title, double lastVisited);
222 HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double lastVisited);
/external/webkit/Source/WebKit/win/
H A DWebHistoryItem.h61 /* [in] */ DATE lastVisited);
73 /* [retval][out] */ DATE *lastVisited);
H A DWebHistoryItem.cpp560 /* [in] */ DATE lastVisited)
563 m_historyItem = HistoryItem::create(String(urlString, SysStringLen(urlString)), String(title, SysStringLen(title)), MarshallingHelpers::DATEToCFAbsoluteTime(lastVisited));
603 /* [retval][out] */ DATE* lastVisited)
605 if (!lastVisited)
608 *lastVisited = MarshallingHelpers::CFAbsoluteTimeToDATE(m_historyItem->lastVisitedTime());
557 initWithURLString( BSTR urlString, BSTR title, DATE lastVisited) argument
602 lastVisitedTimeInterval( DATE* lastVisited) argument
H A DWebHistory.cpp718 DATE lastVisited; local
719 if (!SystemTimeToVariantTime(&currentTime, &lastVisited))
722 if (FAILED(entry->initWithURLString(BString(url.string()), BString(title), lastVisited)))
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.h49 QDateTime lastVisited() const;
H A Dqwebhistory.cpp60 \row \o lastVisited() \o The date and time of the user's last visit to the page.
116 \sa originalUrl(), title(), lastVisited()
129 \sa icon(), url(), lastVisited()
144 QDateTime QWebHistoryItem::lastVisited() const function in class:QWebHistoryItem
156 \sa title(), url(), lastVisited()
/external/webkit/Source/WebKit/qt/tests/qwebhistory/
H A Dtst_qwebhistory.cpp273 QDateTime lastVisited(a.lastVisited());
289 QCOMPARE(b.lastVisited(), lastVisited);
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItem.mm348 NSTimeInterval lastVisited = timeIntervalString == nil ? 0 : [timeIntervalString doubleValue];
350 self = [self initWithURLString:URLString title:title displayTitle:[dict _webkit_stringForKey:displayTitleKey] lastVisitedTimeInterval:lastVisited];

Completed in 304 milliseconds