Searched refs:baseUrl (Results 1 - 25 of 26) sorted by relevance

12

/external/doclava/src/com/google/doclava/
H A DFederatedSite.java33 private final URL baseUrl; field in class:FederatedSite
36 public FederatedSite(String name, URL baseUrl) throws ApiParseException { argument
38 this.baseUrl = baseUrl;
41 URL xmlUrl = new URL(baseUrl + "/xml/current.xml");
49 return baseUrl + "/" + htmlPage;
60 public URL baseUrl() { method in class:FederatedSite
61 return baseUrl;
H A DDoclavaDiff.java106 data.setValue(base + ".url", site.baseUrl().toString());
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.h113 Q_PROPERTY(QUrl baseUrl READ baseUrl)
130 void setHtml(const QString &html, const QUrl &baseUrl = QUrl());
131 void setContent(const QByteArray &data, const QString &mimeType = QString(), const QUrl &baseUrl = QUrl());
143 QUrl baseUrl() const;
H A Dqgraphicswebview.h77 void setHtml(const QString& html, const QUrl& baseUrl = QUrl());
79 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
H A Dqwebview.h67 void setHtml(const QString& html, const QUrl& baseUrl = QUrl());
68 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
H A Dqgraphicswebview.cpp733 document are located relative to \a baseUrl.
743 This is a convenience function equivalent to setContent(html, "text/html", baseUrl).
750 void QGraphicsWebView::setHtml(const QString& html, const QUrl& baseUrl) argument
752 page()->mainFrame()->setHtml(html, baseUrl);
760 External objects referenced in the content are located relative to \a baseUrl.
766 void QGraphicsWebView::setContent(const QByteArray& data, const QString& mimeType, const QUrl& baseUrl) argument
768 page()->mainFrame()->setContent(data, mimeType, baseUrl);
H A Dqwebview.cpp457 document are located relative to \a baseUrl.
467 This is a convenience function equivalent to setContent(html, "text/html", baseUrl).
474 void QWebView::setHtml(const QString &html, const QUrl &baseUrl) argument
476 page()->mainFrame()->setHtml(html, baseUrl);
484 External objects referenced in the content are located relative to \a baseUrl.
490 void QWebView::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl) argument
492 page()->mainFrame()->setContent(data, mimeType, baseUrl);
H A Dqwebframe.cpp770 QUrl baseUrl = QUrl::fromLocalFile(QFileInfo(url.toLocalFile()).absoluteFilePath());
776 return baseUrl.resolved(toResolve);
818 \property QWebFrame::baseUrl
823 QUrl QWebFrame::baseUrl() const function in class:QWebFrame
942 Sets the content of this frame to \a html. \a baseUrl is optional and used to resolve relative
956 This is a convenience function equivalent to setContent(html, "text/html", baseUrl).
965 void QWebFrame::setHtml(const QString &html, const QUrl &baseUrl) argument
967 KURL kurl(baseUrl);
980 External objects referenced in the content are located relative to \a baseUrl.
988 void QWebFrame::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl) argument
[all...]
H A Dqwebpage.h357 QUrl baseUrl; member in class:QWebPage::ErrorPageExtensionReturn
/external/webkit/Tools/Scripts/
H A Dsvn-create-patch158 my $baseUrl;
162 $baseUrl = $1;
166 return $baseUrl;
200 my $baseUrl = findBaseUrl(".");
206 $sourceFile = File::Spec->abs2rel($1, $baseUrl);
H A Dprepare-ChangeLog1342 my $baseUrl;
1346 $baseUrl = $1;
1354 $sourceFile = File::Spec->abs2rel($1, $baseUrl);
/external/webkit/Source/WebKit/qt/tests/qwebframe/
H A Dtst_qwebframe.cpp638 void baseUrl();
2602 QUrl baseUrl = QUrl::fromEncoded("http://[::1]/index.html"); local
2603 m_view->setHtml("<p>Hi", baseUrl);
2818 QTest::addColumn<QUrl>("baseUrl");
2835 void tst_QWebFrame::baseUrl() function in class:tst_QWebFrame
2840 QFETCH(QUrl, baseUrl);
2844 QCOMPARE(m_page->mainFrame()->baseUrl(), baseUrl);
3406 QCOMPARE(frame->baseUrl(), QUrl());
3418 QCOMPARE(frame->baseUrl(), ur
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebViewClient.h314 const WebString& baseUrl,
313 registerProtocolHandler(const WebString& scheme, const WebString& baseUrl, const WebString& url, const WebString& title) argument
/external/webkit/Source/WebKit/wx/
H A DWebFrame.h137 void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString, const wxString& mimetype = wxT("text/html"));
H A DWebFrame.cpp157 void wxWebFrame::SetPageSource(const wxString& source, const wxString& baseUrl, const wxString& mimetype) argument
160 WebCore::KURL url(WebCore::KURL(), baseUrl); local
H A DWebView.cpp464 void wxWebView::SetPageSource(const wxString& source, const wxString& baseUrl, const wxString& mimetype) argument
467 m_mainFrame->SetPageSource(source, baseUrl, mimetype);
H A DWebView.h159 void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString, const wxString& mimetype = wxT("text/html"));
/external/webkit/Source/WebKit/qt/declarative/
H A Dqdeclarativewebview.cpp837 void QDeclarativeWebView::setHtml(const QString& html, const QUrl& baseUrl) argument
841 page()->mainFrame()->setHtml(html, baseUrl);
844 d->pendingUrl = baseUrl;
850 void QDeclarativeWebView::setContent(const QByteArray& data, const QString& mimeType, const QUrl& baseUrl) argument
855 page()->mainFrame()->setContent(data, mimeType, qmlContext(this)->resolvedUrl(baseUrl));
858 d->pendingUrl = baseUrl;
H A Dqdeclarativewebview_p.h173 void setHtml(const QString &html, const QUrl &baseUrl = QUrl());
174 void setContent(const QByteArray &data, const QString &mimeType = QString(), const QUrl &baseUrl = QUrl());
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.cpp312 static void loadDataIntoFrame(Frame* frame, KURL baseUrl, const String& url, argument
314 if (baseUrl.isEmpty()) {
315 baseUrl = blankURL();
317 ResourceRequest request(baseUrl);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.h202 static void setAlternateHtml(QWebFrame*, const QString& html, const QUrl& baseUrl, const QUrl& failingUrl);
H A DFrameLoaderClientQt.cpp1153 KURL baseUrl(output.baseUrl);
1156 WebCore::ResourceRequest request(baseUrl);
H A DDumpRenderTreeSupportQt.cpp1056 void DumpRenderTreeSupportQt::setAlternateHtml(QWebFrame* frame, const QString& html, const QUrl& baseUrl, const QUrl& failingUrl) argument
1058 KURL kurl(baseUrl);
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp1283 static void LoadData(JNIEnv *env, jobject obj, jstring baseUrl, jstring data, argument
1290 WebCore::ResourceRequest request(jstringToWtfString(env, baseUrl));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 221 milliseconds

12