/external/doclava/src/com/google/doclava/ |
FederatedSite.java | 33 private final URL baseUrl; 36 public FederatedSite(String name, URL baseUrl) throws ApiParseException { 38 this.baseUrl = baseUrl; 41 URL xmlUrl = new URL(baseUrl + "/xml/current.xml"); 52 public FederatedSite(String name, URL baseUrl, String api) throws ApiParseException { 54 this.baseUrl = baseUrl; 59 return baseUrl + "/" + htmlPage; 70 public URL baseUrl() { [all...] |
/ndk/sources/host-tools/sed-4.2.1/ |
Makefile.am | 48 ## BASEURL="http://$$HOST/cgi-bin/cvsweb.cgi/~checkout~/libc/posix" && \ 50 ## wget -O lib/regcomp.c "$$BASEURL/regcomp.c?$$QUERY" && \ 51 ## wget -O lib/regexec.c "$$BASEURL/regexec.c?$$QUERY" && \ 52 ## wget -O lib/regex.c "$$BASEURL/regex.c?$$QUERY" && \ 53 ## wget -O lib/regex_.h "$$BASEURL/regex.h?$$QUERY" && \ 54 ## wget -O lib/regex_internal.c "$$BASEURL/regex_internal.c?$$QUERY" && \ 55 ## wget -O lib/regex_internal.h "$$BASEURL/regex_internal.h?$$QUERY" && \ 56 ## wget -O testsuite/BOOST.tests "$$BASEURL/BOOST.tests?$$QUERY" && \ 57 ## wget -O testsuite/PCRE.tests "$$BASEURL/PCRE.tests?$$QUERY" && \ 58 ## wget -O testsuite/SPENCER.tests "$$BASEURL/rxspencer/tests?$$QUERY [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/ |
NavigatorContentUtils.cpp | 72 static bool verifyCustomHandlerURL(const String& baseURL, const String& url, ExceptionState& exceptionState) 88 KURL base(ParsedURLString, baseURL); 148 String baseURL = document->baseURL().baseAsString(); 150 if (!verifyCustomHandlerURL(baseURL, url, exceptionState)) 156 NavigatorContentUtils::from(navigator->frame()->page())->client()->registerProtocolHandler(scheme, baseURL, url, title); 187 String baseURL = document->baseURL().baseAsString(); 189 if (!verifyCustomHandlerURL(baseURL, url, exceptionState)) 195 return customHandlersStateString(NavigatorContentUtils::from(navigator->frame()->page())->client()->isProtocolHandlerRegistered(scheme, baseURL, url)) [all...] |
NavigatorContentUtilsClient.h | 40 virtual void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) = 0; 49 virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url) = 0; 50 virtual void unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url) = 0;
|
/external/oauth/core/src/main/java/net/oauth/ |
ConsumerProperties.java | 99 + ".serviceProvider.baseURL"); 100 URL baseURL = (base == null) ? null : new URL(base); 102 baseURL, name + ".serviceProvider.requestTokenURL"), getURL( 103 baseURL, name + ".serviceProvider.userAuthorizationURL"), 104 getURL(baseURL, name + ".serviceProvider.accessTokenURL")); 110 if (baseURL != null) { 111 consumer.setProperty("serviceProvider.baseURL", baseURL);
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
LoadDataWithBaseUrlTest.java | 47 final String baseUrl, final String historyUrl) throws Throwable { 49 data, mimeType, isBase64Encoded, baseUrl, historyUrl); 160 final String baseUrl = webServer.getBaseUrl().replaceFirst("localhost", "127.0.0.1"); 163 loadDataWithBaseUrlSync(html, "text/html", false, baseUrl, null); 185 final String baseUrl = "http://base.com/"; 190 baseUrl, "about:blank"); 192 assertEquals(baseUrl, onPageStartedHelper.getUrl()); 200 final String baseUrl = "http://example.com"; 204 loadDataWithBaseUrlSync(pageHtml, "text/html", false, baseUrl, historyUrl); 208 loadDataWithBaseUrlSync(pageHtml, "text/html", false, baseUrl, null) [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
LoadUrlParams.java | 103 * @param baseUrl Base url of this data load. Note that for WebView compatibility, 104 * baseUrl and historyUrl are ignored if this is a data: url. 107 * this is ignored if baseUrl is a data: url. Defaults to about:blank 112 String baseUrl, String historyUrl) { 114 baseUrl, historyUrl, null); 123 * @param baseUrl Base url of this data load. Note that for WebView compatibility, 124 * baseUrl and historyUrl are ignored if this is a data: url. 127 * this is ignored if baseUrl is a data: url. Defaults to about:blank 134 String baseUrl, String historyUrl, String charset) { 138 // baseUrl and historyUrl [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
StyleRuleImport.cpp | 60 void StyleRuleImport::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* cachedStyleSheet) 67 if (!baseURL.isNull()) 68 context.setBaseURL(baseURL); 101 if (!m_parentStyleSheet->baseURL().isNull()) 103 absURL = KURL(m_parentStyleSheet->baseURL(), m_strHref); 111 if (equalIgnoringFragmentIdentifier(absURL, sheet->baseURL())
|
CSSParserMode.cpp | 42 CSSParserContext::CSSParserContext(const Document& document, const KURL& baseURL, const String& charset) 43 : m_baseURL(baseURL.isNull() ? document.baseURL() : baseURL)
|
StyleRuleImport.h | 61 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) 63 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet); 69 void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*);
|
CSSParserMode.h | 95 CSSParserContext(const Document&, const KURL& baseURL = KURL(), const String& charset = emptyString()); 101 const KURL& baseURL() const { return m_baseURL; } 113 void setBaseURL(const KURL& baseURL) { m_baseURL = baseURL; }
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLResourcePreloader.h | 38 static PassOwnPtr<PreloadRequest> create(const String& initiatorName, const TextPosition& initiatorPosition, const String& resourceURL, const KURL& baseURL, Resource::Type resourceType, const String& mediaAttribute) 40 return adoptPtr(new PreloadRequest(initiatorName, initiatorPosition, resourceURL, baseURL, resourceType, mediaAttribute)); 43 static PassOwnPtr<PreloadRequest> create(const String& initiatorName, const TextPosition& initiatorPosition, const String& resourceURL, const KURL& baseURL, Resource::Type resourceType) 45 return adoptPtr(new PreloadRequest(initiatorName, initiatorPosition, resourceURL, baseURL, resourceType, "")); 65 PreloadRequest(const String& initiatorName, const TextPosition& initiatorPosition, const String& resourceURL, const KURL& baseURL, Resource::Type resourceType, const String& mediaAttribute) 69 , m_baseURL(baseURL.copy())
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowWebView.java | 49 public void loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) { 50 lastLoadDataWithBaseURL = new LoadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl); 215 public final String baseUrl; 221 public LoadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) { 222 this.baseUrl = baseUrl;
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
LinkHighlightTest.cpp | 59 const std::string baseURL("http://www.test.com/"); 62 URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(baseURL.c_str()), WebString::fromUTF8("test_touch_link_highlight.html")); 64 WebViewImpl* webViewImpl = webViewHelper.initializeAndLoad(baseURL + fileName, true); 164 const std::string baseURL("http://www.test.com/"); 167 URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(baseURL.c_str()), WebString::fromUTF8("test_touch_link_highlight.html")); 169 WebViewImpl* webViewImpl = webViewHelper.initializeAndLoad(baseURL + fileName, true, 0, compositingWebViewClient()); 201 const std::string baseURL("http://www.test.com/"); 204 URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(baseURL.c_str()), WebString::fromUTF8("test_touch_link_highlight.html")); 206 WebViewImpl* webViewImpl = webViewHelper.initializeAndLoad(baseURL + fileName, true, 0, compositingWebViewClient());
|
/external/chromium_org/components/test/data/web_database/ |
version_49.sql | 17 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client=chrome&q={searchTerms}&{google:cursorPosition}sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:instantEnabledParameter}{google:instantExtendedEnabledParameter}{google:ntpIsThemedParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',0,'711AEC98-A563-FD8B-87D5-427C60828A43','["{google:baseURL}#q={searchTerms}","{google:baseURL}search#q={searchTerms}","{google:baseURL}webhp#q={searchTerms}"]','espv');
|
version_50.sql | 17 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client=chrome&q={searchTerms}&{google:cursorPosition}sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:instantEnabledParameter}{google:instantExtendedEnabledParameter}{google:ntpIsThemedParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',0,'711AEC98-A563-FD8B-87D5-427C60828A43','["{google:baseURL}#q={searchTerms}","{google:baseURL}search#q={searchTerms}","{google:baseURL}webhp#q={searchTerms}"]','espv');
|
version_42.sql | 9 INSERT INTO "meta" VALUES('Default Search Provider Backup','2Googlegoogle.comhttp://www.google.com/favicon.ico{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}100UTF-81{google:baseSuggestURL}search?client=chrome&hl={language}&q={searchTerms}1162620{google:baseURL}webhp?{google:RLZ}sourceid=chrome-instant&ie={inputEncoding}&ion=1{searchTerms}&nord=10{1234-5678-90AB-CDEF}'); 12 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}',1,1,'',0,0,'UTF-8','{google:baseSuggestURL}search?client=chrome&hl={language}&q={searchTerms}',1,1,6262,0,'{google:baseURL}webhp?{google:RLZ}sourceid=chrome-instant&ie={inputEncoding}&ion=1{searchTerms}&nord=1',0,'{1234-5678-90AB-CDEF}');
|
version_43.sql | 11 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}',1,1,'',0,0,'UTF-8','{google:baseSuggestURL}search?client=chrome&hl={language}&q={searchTerms}',1,1,1234,0,'{google:baseURL}webhp?{google:RLZ}sourceid=chrome-instant&ie={inputEncoding}&ion=1{searchTerms}&nord=1',0,'{1234-5678-90AB-CDEF}'); 13 INSERT INTO "keywords_backup" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}',1,1,'',0,0,'UTF-8','{google:baseSuggestURL}search?client=chrome&hl={language}&q={searchTerms}',1,1,1234,0,'{google:baseURL}webhp?{google:RLZ}sourceid=chrome-instant&ie={inputEncoding}&ion=1{searchTerms}&nord=1',0,'{1234-5678-90AB-CDEF}');
|
version_52.sql | 11 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client={google:suggestClient}&q={searchTerms}&{google:cursorPosition}{google:zeroPrefixUrl}{google:pageClassification}sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:instantEnabledParameter}{google:instantExtendedEnabledParameter}{google:ntpIsThemedParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',0,'2BB4ECA1-7D0F-2FB9-45B0-AD87B8298C9D','["{google:baseURL}#q={searchTerms}","{google:baseURL}search#q={searchTerms}","{google:baseURL}webhp#q={searchTerms}"]','espv','{google:baseURL}searchbyimage/upload','','','','encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource}');
|
version_53.sql | 9 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:bookmarkBarPinned}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',1,'',0,0,'UTF-8',1,'{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client={google:suggestClient}&xssi=t&q={searchTerms}&{google:cursorPosition}{google:zeroPrefixUrl}{google:pageClassification}sugkey={google:suggestAPIKeyParameter}',1,0,'{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ}{google:forceInstantResults}{google:instantExtendedEnabledParameter}{google:ntpIsThemedParameter}{google:omniboxStartMarginParameter}ie={inputEncoding}',0,'1D955A9B-6F30-D3FF-5F5C-002E40BDF482','["{google:baseURL}#q={searchTerms}","{google:baseURL}search#q={searchTerms}","{google:baseURL}webhp#q={searchTerms}"]','espv','{google:baseURL}searchbyimage/upload','','','','encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight}','{google:baseURL}_/chrome/newtab?{google:RLZ}{google:instantExtendedEnabledParameter}{google:ntpIsThemedParameter}ie={inputEncoding}');
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XSLImportRule.cpp | 50 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) 55 m_styleSheet = XSLStyleSheet::create(this, href, baseURL); 89 if (!parentSheet->baseURL().isNull()) 91 absHref = KURL(parentSheet->baseURL(), m_strHref).string(); 96 if (absHref == parentSheet->baseURL().string())
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_Driver4.java | 36 String baseURL; 50 baseURL = "jdbc:mikes4"; 60 if (url.startsWith(baseURL)) { 78 String datasource = url.substring(baseURL.length() + 1);
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
builders_unittests.js | 33 var baseUrl = 'http://dummyurl'; 35 var master = new builders.BuilderMaster(name, baseUrl, tests); 39 equal(master.logPath(builder, buildNumber), baseUrl + '/builders/' + builder + '/builds/' + buildNumber); 40 equal(master.builderJsonPath(), baseUrl + '/json/builders');
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/ |
dromaeorunner.js | 3 baseURL: "./resources/dromaeo/web/index.html", 10 var url = DRT.baseURL + "?" + testName + '&numTests=' + ITERATION_COUNT;
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
StyleSheetResourceClient.h | 41 virtual void setCSSStyleSheet(const String& /* href */, const KURL& /* baseURL */, const String& /* charset */, const CSSStyleSheetResource*) { } 42 virtual void setXSLStyleSheet(const String& /* href */, const KURL& /* baseURL */, const String& /* sheet */) { }
|