HomeSort by relevance Sort by last modified time
    Searched refs:lastVisited (Results 1 - 9 of 9) sorted by null

  /external/webkit/WebKit/win/Interfaces/
IWebHistoryItem.idl 59 HRESULT initWithURLString([in] BSTR urlString, [in] BSTR title, [in] DATE lastVisited);
99 HRESULT lastVisitedTimeInterval([out, retval] DATE* lastVisited);
  /external/webkit/WebCore/history/
HistoryItem.h 74 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, double lastVisited)
76 return adoptRef(new HistoryItem(urlString, title, lastVisited));
78 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, const String& alternateTitle, double lastVisited)
80 return adoptRef(new HistoryItem(urlString, title, alternateTitle, lastVisited));
205 HistoryItem(const String& urlString, const String& title, double lastVisited);
206 HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double lastVisited);
  /external/webkit/WebKit/win/
WebHistoryItem.h 61 /* [in] */ DATE lastVisited);
73 /* [retval][out] */ DATE *lastVisited);
WebHistoryItem.cpp 564 /* [in] */ DATE lastVisited)
567 m_historyItem = HistoryItem::create(String(urlString, SysStringLen(urlString)), String(title, SysStringLen(title)), MarshallingHelpers::DATEToCFAbsoluteTime(lastVisited));
607 /* [retval][out] */ DATE* lastVisited)
609 if (!lastVisited)
612 *lastVisited = MarshallingHelpers::CFAbsoluteTimeToDATE(m_historyItem->lastVisitedTime());
WebHistory.cpp 720 DATE lastVisited;
721 if (!SystemTimeToVariantTime(&currentTime, &lastVisited))
724 if (FAILED(entry->initWithURLString(BString(url.string()), BString(title), lastVisited)))
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebhistory.h 49 QDateTime lastVisited() const;
qwebhistory.cpp 57 \row \o lastVisited() \o The date and time of the user's last visit to the page.
113 \sa originalUrl(), title(), lastVisited()
126 \sa icon(), url(), lastVisited()
141 QDateTime QWebHistoryItem::lastVisited() const
153 \sa title(), url(), lastVisited()
  /external/webkit/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 269 QDateTime lastVisited(a.lastVisited());
285 QCOMPARE(b.lastVisited(), lastVisited);
  /external/webkit/WebKit/mac/History/
WebHistoryItem.mm 352 NSTimeInterval lastVisited = timeIntervalString == nil ? 0 : [timeIntervalString doubleValue];
354 self = [self initWithURLString:URLString title:title displayTitle:[dict _webkit_stringForKey:displayTitleKey] lastVisitedTimeInterval:lastVisited];

Completed in 120 milliseconds