HomeSort by relevance Sort by last modified time
    Searched refs:baseUrl (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/WebKit/qt/Api/
qwebframe.h 110 Q_PROPERTY(QUrl baseUrl READ baseUrl)
127 void setHtml(const QString &html, const QUrl &baseUrl = QUrl());
128 void setContent(const QByteArray &data, const QString &mimeType = QString(), const QUrl &baseUrl = QUrl());
140 QUrl baseUrl() const;
qgraphicswebview.h 70 void setHtml(const QString& html, const QUrl& baseUrl = QUrl());
72 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
qwebview.h 65 void setHtml(const QString& html, const QUrl& baseUrl = QUrl());
66 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
qwebview.cpp 441 document are located relative to \a baseUrl.
453 void QWebView::setHtml(const QString &html, const QUrl &baseUrl)
455 page()->mainFrame()->setHtml(html, baseUrl);
463 External objects referenced in the content are located relative to \a baseUrl.
469 void QWebView::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl)
471 page()->mainFrame()->setContent(data, mimeType, baseUrl);
qgraphicswebview.cpp 804 document are located relative to \a baseUrl.
816 void QGraphicsWebView::setHtml(const QString& html, const QUrl& baseUrl)
818 page()->mainFrame()->setHtml(html, baseUrl);
826 External objects referenced in the content are located relative to \a baseUrl.
832 void QGraphicsWebView::setContent(const QByteArray& data, const QString& mimeType, const QUrl& baseUrl)
834 page()->mainFrame()->setContent(data, mimeType, baseUrl);
qwebpage.h 292 QUrl baseUrl;
qwebframe.cpp 747 \property QWebFrame::baseUrl
752 QUrl QWebFrame::baseUrl() const
754 return d->frame->loader()->baseURL();
857 Sets the content of this frame to \a html. \a baseUrl is optional and used to resolve relative
871 void QWebFrame::setHtml(const QString &html, const QUrl &baseUrl)
873 KURL kurl(baseUrl);
886 External objects referenced in the content are located relative to \a baseUrl.
894 void QWebFrame::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl)
896 KURL kurl(baseUrl);
    [all...]
  /external/webkit/WebKitTools/Scripts/
svn-create-patch 136 my $baseUrl;
140 $baseUrl = $1;
144 return $baseUrl;
178 my $baseUrl = findBaseUrl(".");
184 $sourceFile = File::Spec->abs2rel($1, $baseUrl);
prepare-ChangeLog     [all...]
  /external/webkit/WebKit/wx/
WebFrame.h 121 void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString);
WebFrame.cpp 155 void wxWebFrame::SetPageSource(const wxString& source, const wxString& baseUrl)
158 WebCore::KURL url(WebCore::KURL(), baseUrl);
WebView.cpp 381 void wxWebView::SetPageSource(const wxString& source, const wxString& baseUrl)
384 m_mainFrame->SetPageSource(source, baseUrl);
WebView.h 158 void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString);
  /frameworks/base/core/java/android/webkit/
BrowserFrame.java 268 * @param baseUrl Base URL used to resolve relative paths in the content
274 public void loadData(String baseUrl, String data, String mimeType,
286 if (baseUrl == null || baseUrl.length() == 0) {
287 baseUrl = "about:blank";
292 nativeLoadData(baseUrl, data, mimeType, encoding, historyUrl);
    [all...]
WebViewCore.java     [all...]
LoadListener.java     [all...]
WebView.java     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/webkit/
WebView.java 116 public void loadDataWithBaseURL(String baseUrl, String data,
  /external/webkit/WebKit/android/jni/
WebCoreResourceLoader.cpp 240 jstring baseUrl, jstring redirectTo, jint nativeResponse)
254 WebCore::KURL url(WebCore::KURL(WebCore::ParsedURLString, to_string(env, baseUrl)),
WebCoreFrameBridge.cpp     [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp 299 static void loadDataIntoFrame(Frame* frame, KURL baseUrl, const String& url,
301 if (baseUrl.isEmpty()) {
302 baseUrl = blankURL();
304 ResourceRequest request(baseUrl);
    [all...]
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 569 void baseUrl();
    [all...]
  /external/webkit/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp 926 KURL baseUrl(output.baseUrl);
929 WebCore::ResourceRequest request(baseUrl);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java 276 String baseUrl = mVoiceSearchData.mVoiceSearchBaseUrls.get(
279 mVoiceSearchData.mLastVoiceSearchUrl = baseUrl;
280 mMainView.loadDataWithBaseURL(baseUrl,
283 "utf-8", baseUrl);
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java 871 String baseUrl = mWebServer.getAssetUrl("foo.html");
873 mWebView.loadDataWithBaseURL(baseUrl,
883 mWebView.loadDataWithBaseURL(baseUrl,
    [all...]

Completed in 1989 milliseconds

1 2