Searched refs:URL (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/base/core/java/android/webkit/
H A DSslCertLookupTable.java23 import java.net.URL;
50 host = new URL(sslError.getUrl()).getHost();
62 host = new URL(sslError.getUrl()).getHost();
H A DWebHistoryItem.java22 import java.net.URL;
159 URL url = new URL(mOriginalUrl);
160 mTouchIconUrlServerDefault = new URL(url.getProtocol(), url.getHost(), url.getPort(),
H A DHTML5VideoViewProxy.java38 import java.net.URL;
380 // The poster URL
381 private URL mUrl;
397 mUrl = new URL(url);
459 mUrl = new URL(mHeaders.getLocation());
601 * @param url is the URL of the video stream.
649 * @param url is the URL of the poster image.
H A DWebTextView.java66 import java.net.URL;
170 private static final int URL = 7; field in class:WebTextView
1125 case URL:
1175 URL url = null;
1177 url = new URL(urlString);
1179 Log.e(LOGTAG, "Unable to parse URL "+url);
H A DWebIconDatabase.java158 new String[] { Browser.BookmarkColumns.URL },
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DForwarderManager.java20 import java.net.URL;
58 * Returns the main part of the URL with the trailing slash
74 URL url = null;
76 url = new URL(protocol, HOST_IP, port, "/");
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DFileFilter.java31 import java.net.URL;
69 URL url = null;
71 url = new URL(ForwarderManager.getHostSchemePort(false) +
262 * Return a URL of the test on the server.
267 * @return a URL of the test on the server
269 public static URL getUrl(String relativePath, boolean allowHttps) {
273 * URL is formed differently for HTTP vs non-HTTP tests, because HTTP tests
286 return new URL(urlBase + relativePath);
288 Log.e(LOG_TAG, "Malformed URL!", e);
H A DAdditionalTextOutput.java23 import java.net.URL;
59 URL url = new URL(urlString);
H A DFsUtils.java54 import java.net.URL;
139 private URL mUrl;
142 public UrlDataGetter(URL url) {
196 public static byte[] readDataFromUrl(URL url) {
210 URL url = null;
212 url = new URL(SCRIPT_URL +
257 Log.e(LOG_TAG, "getLayoutTestsDirContents(): HTTP GET failed for URL " + url);
H A DSummarizer.java34 import java.net.URL;
388 URL url = null;
390 url = new URL(ForwarderManager.getHostSchemePort(false) + "ThirdPartyProject.prop");
567 private static final URL getViewSourceUrl(String relativePath) {
568 URL url = null;
570 url = new URL("http", "localhost", ForwarderManager.HTTP_PORT,
/frameworks/base/core/java/android/provider/
H A DBrowser.java80 BookmarkColumns.URL, // 1
230 * column, {@link BookmarkColumns#URL}.
239 new String[] { Bookmarks.URL },
245 * have a single column, {@link BookmarkColumns#URL}.
254 new String[] { Combined.URL }, null, null,
259 sb.append(" OR " + BookmarkColumns.URL + " = ");
276 whereClause = new StringBuilder(Bookmarks.URL + " = ");
283 whereClause = new StringBuilder(Bookmarks.URL + " = ");
340 values.put(History.URL, url);
366 History.URL,
583 public static final String URL = "url"; field in class:Browser.BookmarkColumns
646 public static final String URL = "url"; field in class:Browser.SearchColumns
[all...]
H A DBrowserContract.java147 * The URL of the bookmark.
148 * <P>Type: TEXT (URL)</P>
150 public static final String URL = "url"; field in interface:BrowserContract.CommonColumns
477 * The URL the images came from.
478 * <P>Type: TEXT (URL)</P>
480 public static final String URL = "url_key"; field in class:BrowserContract.Images
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DComprehensionTlvTag.java47 URL(0x31), enum constant in enum:ComprehensionTlvTag
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java29 import java.net.URL;
46 URL url = this.getClass().getClassLoader().getResource("data/mock_android.jar");
H A DAsmAnalyzerTest.java32 import java.net.URL;
49 URL url = this.getClass().getClassLoader().getResource("data/mock_android.jar");
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DBandwidthTestUtil.java41 import java.net.URL;
96 URL url = new URL(targetUrl);
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
H A DBandwidthEnforcementTestService.java34 import java.net.URL;
95 final HttpURLConnection conn = (HttpURLConnection) new URL("http://www.google.com/")
119 final HttpURLConnection conn = (HttpURLConnection) new URL("http://ipv6.google.com/")
/frameworks/media/libvideoeditor/osal/inc/
H A DM4OSA_FileCommon_priv.h49 /** The name of the URL */
79 M4OSA_Char* URL,
/frameworks/base/core/tests/utillib/src/coretestutils/http/
H A DMockWebServer.java29 import java.net.URL;
78 * Returns a URL for connecting to this server.
82 public URL getUrl(String path) throws MalformedURLException {
83 return new URL("http://localhost:" + getPort() + path);
/frameworks/base/test-runner/src/junit/runner/
H A DTestCaseClassLoader.java5 import java.net.URL;
64 public URL getResource(String name) {
/frameworks/base/media/java/android/media/
H A DTimedText.java291 * The linked-to URL
293 public String URL; field in class:TimedText.HyperText
581 hyperText.URL = new String(url, 0, len);
/frameworks/base/tests/BrowserTestPlugin/jni/
H A Dmain.cpp50 void NPP_URLNotify(NPP instance, const char* URL, NPReason reason,
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java48 import java.net.URL;
445 URL url = mServer.getUrl("/" + filename);
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/
H A DDownloadManagerBaseTest.java46 import java.net.URL;
392 URL url = mServer.getUrl("/" + filename);
/frameworks/base/core/java/android/app/
H A DLoadedApk.java47 import java.net.URL;
392 @Override public URL getResource(String resName) {
397 @Override public Enumeration<URL> getResources(String resName) throws IOException {

Completed in 915 milliseconds

12