Searched defs:lastVisited (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebKit/qt/Api/
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/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.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)))

Completed in 88 milliseconds