Searched refs:QWebHistoryItem (Results 1 – 15 of 15) sorted by relevance
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebhistory.cpp | 77 QWebHistoryItem::QWebHistoryItem(const QWebHistoryItem &other) in QWebHistoryItem() function in QWebHistoryItem 87 QWebHistoryItem &QWebHistoryItem::operator=(const QWebHistoryItem &other) in operator =() 96 QWebHistoryItem::~QWebHistoryItem() in ~QWebHistoryItem() 105 QUrl QWebHistoryItem::originalUrl() const in originalUrl() 118 QUrl QWebHistoryItem::url() const in url() 131 QString QWebHistoryItem::title() const in title() 144 QDateTime QWebHistoryItem::lastVisited() const in lastVisited() 158 QIcon QWebHistoryItem::icon() const in icon() 172 QVariant QWebHistoryItem::userData() const in userData() 188 void QWebHistoryItem::setUserData(const QVariant& userData) in setUserData() [all …]
|
D | qwebhistory.h | 39 class QWEBKIT_EXPORT QWebHistoryItem { 41 QWebHistoryItem(const QWebHistoryItem &other); 42 QWebHistoryItem &operator=(const QWebHistoryItem &other); 43 ~QWebHistoryItem(); 59 QWebHistoryItem(QWebHistoryItemPrivate *priv); 76 QList<QWebHistoryItem> items() const; 77 QList<QWebHistoryItem> backItems(int maxItems) const; 78 QList<QWebHistoryItem> forwardItems(int maxItems) const; 85 void goToItem(const QWebHistoryItem &item); 87 QWebHistoryItem backItem() const; [all …]
|
D | qwebhistory_p.h | 32 static QExplicitlySharedDataPointer<QWebHistoryItemPrivate> get(QWebHistoryItem* q) in get() 48 static WebCore::HistoryItem* core(const QWebHistoryItem* q);
|
D | qwebpage.h | 46 class QWebHistoryItem; variable 398 void saveFrameStateRequested(QWebFrame* frame, QWebHistoryItem* item);
|
D | qwebframe.h | 48 class QWebHistoryItem; variable
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | DumpRenderTreeSupportQt.h | 52 class QWebHistoryItem; variable 176 static QMap<QString, QWebHistoryItem> getChildHistoryItems(const QWebHistoryItem& historyItem); in Q_DECLARE_METATYPE() 177 static bool isTargetItem(const QWebHistoryItem& historyItem); in Q_DECLARE_METATYPE() 178 static QString historyItemTarget(const QWebHistoryItem& historyItem); in Q_DECLARE_METATYPE()
|
D | DumpRenderTreeSupportQt.cpp | 837 bool DumpRenderTreeSupportQt::isTargetItem(const QWebHistoryItem& historyItem) in isTargetItem() 839 QWebHistoryItem it = historyItem; in isTargetItem() 845 QString DumpRenderTreeSupportQt::historyItemTarget(const QWebHistoryItem& historyItem) in historyItemTarget() 847 QWebHistoryItem it = historyItem; in historyItemTarget() 851 QMap<QString, QWebHistoryItem> DumpRenderTreeSupportQt::getChildHistoryItems(const QWebHistoryItem&… in getChildHistoryItems() 853 QWebHistoryItem it = historyItem; in getChildHistoryItems() 858 QMap<QString, QWebHistoryItem> kids; in getChildHistoryItems() 860 QWebHistoryItem kid(new QWebHistoryItemPrivate(children[i].get())); in getChildHistoryItems()
|
D | FrameLoaderClientQt.cpp | 882 QWebHistoryItem historyItem(new QWebHistoryItemPrivate(item)); in saveViewStateToItem()
|
/external/webkit/Source/WebKit/qt/tests/qwebhistory/ |
D | tst_qwebhistory.cpp | 172 QWebHistoryItem current = hist->currentItem(); in goToItem() 188 QList<QWebHistoryItem> items = hist->items(); in items() 221 QList<QWebHistoryItem> items = hist->items(); in serialize_1() 268 QWebHistoryItem a = hist->currentItem(); in serialize_3() 285 QWebHistoryItem b = hist->currentItem(); in serialize_3()
|
/external/webkit/Source/WebKit/qt/symbian/bwins/ |
D | QtWebKitu.def | 17 …??0QWebHistoryItem@@AAE@PAVQWebHistoryItemPrivate@@@Z @ 16 NONAME ; QWebHistoryItem::QWebHistoryIt… 18 …??0QWebHistoryItem@@QAE@ABV0@@Z @ 17 NONAME ; QWebHistoryItem::QWebHistoryItem(class QWebHistoryIt… 42 ??1QWebHistoryItem@@QAE@XZ @ 41 NONAME ; QWebHistoryItem::~QWebHistoryItem(void) 55 …??4QWebHistoryItem@@QAEAAV0@ABV0@@Z @ 54 NONAME ; class QWebHistoryItem & QWebHistoryItem::operato… 99 …?backItem@QWebHistory@@QBE?AVQWebHistoryItem@@XZ @ 98 NONAME ; class QWebHistoryItem QWebHistory::… 100 …BE?AV?$QList@VQWebHistoryItem@@@@H@Z @ 99 NONAME ; class QList<class QWebHistoryItem> QWebHistory:… 130 …?currentItem@QWebHistory@@QBE?AVQWebHistoryItem@@XZ @ 129 NONAME ; class QWebHistoryItem QWebHisto… 194 …?forwardItem@QWebHistory@@QBE?AVQWebHistoryItem@@XZ @ 193 NONAME ; class QWebHistoryItem QWebHisto… 195 …E?AV?$QList@VQWebHistoryItem@@@@H@Z @ 194 NONAME ; class QList<class QWebHistoryItem> QWebHistory:… 213 …QAEXABVQWebHistoryItem@@@Z @ 212 NONAME ; void QWebHistory::goToItem(class QWebHistoryItem const &) [all …]
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | DumpRenderTreeQt.cpp | 840 static QString dumpHistoryItem(const QWebHistoryItem& item, int indent, bool current) in dumpHistoryItem() 875 QMap<QString, QWebHistoryItem> children = DumpRenderTreeSupportQt::getChildHistoryItems(item); in dumpHistoryItem() 876 foreach (QWebHistoryItem item, children) in dumpHistoryItem() 895 foreach (const QWebHistoryItem item, history->backItems(maxItems)) { in dumpBackForwardList() 901 QWebHistoryItem item = history->currentItem(); in dumpBackForwardList() 905 foreach (const QWebHistoryItem item, history->forwardItems(maxItems)) { in dumpBackForwardList()
|
/external/webkit/Source/WebKit/qt/ |
D | ChangeLog-2011-02-16 | 3191 (QWebHistoryItem::originalUrl): 3192 (QWebHistoryItem::url): 15588 Explain the implications in the QWebHistoryItem documentation, and get rid 16765 New autotests that test QWebHistory and QWebHistoryItem serialization. 16797 Returns an invalid QWebHistoryItem if the index is out of range. 19808 Add userData() and setUserData() to QWebHistoryItem. 19814 Small cleanup by Simon (docs and forward declaration of QWebHistoryItem in qwebframe.h) 19818 (QWebHistoryItem::userData): 19819 (QWebHistoryItem::setUserData): 19892 (QWebHistoryItem::originalUrl): [all …]
|
D | ChangeLog | 1163 (QWebHistoryItem::icon): 1249 (QWebHistoryItem::icon): Use IconDatabase directly.
|
/external/webkit/Source/WebKit/qt/tests/qwebpage/ |
D | tst_qwebpage.cpp | 516 QVERIFY(::waitForSignal(m_page, SIGNAL(saveFrameStateRequested(QWebFrame*,QWebHistoryItem*)))); in modified()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 93757 New autotests that test QWebHistory and QWebHistoryItem serialization.
|