HomeSort by relevance Sort by last modified time
    Searched full:qurl (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/
WKURLQt.cpp 31 WKURLRef WKURLCreateWithQUrl(const QUrl& qURL)
33 WTF::String urlString(qURL.toString());
37 QUrl WKURLCopyQUrl(WKURLRef urlRef)
40 return QUrl();
42 return QUrl(QString(reinterpret_cast<const QChar*>(string.characters()), string.length()));
WKURLQt.h 24 #include <QUrl>
28 WK_EXPORT WKURLRef WKURLCreateWithQUrl(const QUrl& url);
29 QUrl WKURLCopyQUrl(WKURLRef url);
  /external/webkit/Source/WebCore/platform/qt/
KURLQt.cpp 25 #include "qurl.h"
30 KURL::KURL(const QUrl& url)
35 KURL::operator QUrl() const
40 QUrl url = QUrl::fromEncoded(ba);
DragDataQt.cpp 37 #include <QUrl>
57 QList<QUrl> urls = m_platformDragData->urls();
58 foreach (const QUrl &url, urls) {
69 QList<QUrl> urls = m_platformDragData->urls();
70 foreach (const QUrl &url, urls) {
123 QList<QUrl> urls = m_platformDragData->urls();
CookieJarQt.cpp 62 QUrl u(url);
63 QUrl p(document->firstPartyForCookies());
81 QUrl u(url);
102 QUrl u(url);
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.h 25 #include <QtCore/qurl.h>
80 QUrl linkUrl() const;
81 QUrl linkTitle() const;
87 QUrl imageUrl() const;
111 Q_PROPERTY(QUrl url READ url WRITE setUrl)
112 Q_PROPERTY(QUrl requestedUrl READ requestedUrl)
113 Q_PROPERTY(QUrl baseUrl READ baseUrl)
126 void load(const QUrl &url);
130 void setHtml(const QString &html, const QUrl &baseUrl = QUrl());
    [all...]
qgraphicswebview.h 25 #include <QtCore/qurl.h>
47 Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged)
63 QUrl url() const;
64 void setUrl(const QUrl&);
74 void load(const QUrl& url);
77 void setHtml(const QString& html, const QUrl& baseUrl = QUrl());
79 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
120 void urlChanged(const QUrl&)
    [all...]
qwebview.h 29 #include <QtCore/qurl.h>
44 Q_PROPERTY(QUrl url READ url WRITE setUrl)
63 void load(const QUrl& url);
67 void setHtml(const QString& html, const QUrl& baseUrl = QUrl());
68 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
74 void setUrl(const QUrl &url);
75 QUrl url() const;
127 void linkClicked(const QUrl&)
    [all...]
qwebhistory.h 23 #include <QtCore/qurl.h>
45 QUrl originalUrl() const;
46 QUrl url() const;
qwebsettings.h 38 class QUrl;
113 void setUserStyleSheetUrl(const QUrl &location);
114 QUrl userStyleSheetUrl() const;
122 static QIcon iconForUrl(const QUrl &url);
qwebpluginfactory.h 29 class QUrl;
58 const QUrl&,
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.h 23 Q_PROPERTY(QUrl url READ url WRITE setUrl)
35 void load(const QUrl&);
36 void setUrl(const QUrl&);
37 QUrl url() const;
63 Q_SIGNAL void urlChanged(const QUrl&);
qwkpage.h 11 #include <QUrl>
27 Q_PROPERTY(QUrl url READ url WRITE setUrl)
88 void load(const QUrl& url);
89 void setUrl(const QUrl& url);
90 QUrl url() const;
131 Q_SIGNAL void urlChanged(const QUrl&);
  /external/webkit/Tools/QtTestBrowser/
mainwindow.cpp 83 connect(page()->mainFrame(), SIGNAL(urlChanged(QUrl)), this, SLOT(setAddressUrl(QUrl)));
116 page->setUserAgent(m_page->userAgentForUrl(QUrl()));
129 void MainWindow::setAddressUrl(const QUrl& url)
131 setAddressUrl(url.toString(QUrl::RemoveUserInfo));
142 void MainWindow::addCompleterEntry(const QUrl& url)
144 QUrl::FormattingOptions opts;
145 opts |= QUrl::RemoveScheme;
146 opts |= QUrl::RemoveUserInfo;
147 opts |= QUrl::StripTrailingSlash
160 QUrl qurl = urlFromUserInput(url); local
    [all...]
webpage.h 46 virtual QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&);
52 QString userAgentForUrl(const QUrl& url) const;
56 void openUrlInDefaultBrowser(const QUrl& url = QUrl());
mainwindow.h 47 void addCompleterEntry(const QUrl& url);
50 void load(const QUrl& url);
57 void setAddressUrl(const QUrl& url);
  /external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
tst_qdeclarativewebview.cpp 96 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/basic.qml"));
113 QCOMPARE(wv->property("url").toUrl(), QUrl("qrc:///resources/basic.html"));
139 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/elements.qml"));
161 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/basic.qml"));
187 QCOMPARE(wv->property("url").toUrl(), QUrl("qrc:///resources/basic.html"));
196 wv->setProperty("url", QUrl("qrc:///resources/forward.html"));
203 QCOMPARE(wv->property("url").toUrl(), QUrl("qrc:///resources/forward.html"));
217 QCOMPARE(wv->property("url").toUrl(), QUrl("qrc:///resources/basic.html"));
236 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/javaScript.qml"));
250 QDeclarativeComponent component(&engine, QUrl("qrc:///resources/loadError.qml"))
    [all...]
  /external/webkit/Source/WebKit/qt/tests/benchmarks/loading/
tst_loading.cpp 85 QTest::addColumn<QUrl>("url");
86 QTest::newRow("amazon") << QUrl("http://www.amazon.com");
87 QTest::newRow("kde") << QUrl("http://www.kde.org");
88 QTest::newRow("apple") << QUrl("http://www.apple.com");
93 QFETCH(QUrl, url);
  /external/webkit/Source/WebCore/xml/
XSLTProcessorQt.cpp 49 const QUrl& identifier, const QSourceLocation& sourceLocation);
62 const QUrl&, const QSourceLocation& sourceLocation)
93 virtual QUrl resolve(const QUrl& relative, const QUrl& baseURI) const;
105 QUrl XSLTUriResolver::resolve(const QUrl& relative, const QUrl& baseURI) const
107 QUrl url = baseURI.resolved(relative);
110 return QUrl();
    [all...]
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webpage/
main.cpp 30 Thumbnailer(const QUrl &url);
48 Thumbnailer thumbnail(QUrl("http://qt.nokia.com"));
57 Thumbnailer::Thumbnailer(const QUrl &url)
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/
main.cpp 21 #include <QUrl>
30 view->load(QUrl("http://qt.nokia.com/"));
  /external/webkit/Source/WebKit2/UIProcess/API/qt/tests/qwkpage/
tst_qwkpage.cpp 53 m_page->load(QUrl());
54 m_page->load(QUrl(QLatin1String("")));
  /external/webkit/Source/WebKit2/UIProcess/API/qt/tests/qgraphicswkview/
tst_qgraphicswkview.cpp 87 m_view->m_webView-> load(QUrl::fromLocalFile(QLatin1String(TESTS_SOURCE_DIR "/html/basic_page.html")));
95 m_view->m_webView->load(QUrl());
98 m_view->m_webView->load(QUrl(QLatin1String("")));
  /external/webkit/Source/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp     [all...]
  /external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 87 QTest::addColumn<QUrl>("url");
88 QTest::newRow("amazon") << QUrl("http://www.amazon.com");
93 QFETCH(QUrl, url);
112 m_view->load(QUrl("data:text/html;<html><body></body></html>"));

Completed in 3877 milliseconds

1 2 3 4 5