Searched refs:URL (Results 26 - 50 of 413) sorted by relevance

1234567891011>>

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DMalformedURLExceptionTest.java21 import java.net.URL;
33 new URL("notAProtocol://www.ibm.com");
H A DExcludedProxyTest.java27 import java.net.URL;
50 URL u1 = new URL("http://" + Support_Configuration.HomeAddress);
57 URL u3 = new URL("http://localhost");
67 URL u2 = new URL("http://"
89 URL u4 = new URL("http://"
156 * @tests java.net.URL#openConnectio
[all...]
H A DURLDecoderTest.java41 final String URL = "http://" + Support_Configuration.HomeAddress;
45 URLEncoder.encode(URL)).equals(URL));
H A DURLEncoderTest.java34 final String URL = "http://" + Support_Configuration.HomeAddress;
39 URLEncoder.encode(URL)).equals(URL));
/external/webkit/Source/WebCore/html/
H A DHTMLImageElement.idl33 attribute [Reflect, URL] DOMString longDesc;
34 attribute [Reflect, URL] DOMString src;
41 attribute [Reflect,URL] DOMString lowsrc;
50 readonly attribute URL absoluteImageURL;
H A DHTMLSourceElement.idl28 attribute [Reflect, URL] DOMString src;
H A DHTMLTrackElement.idl28 attribute [Reflect, URL] DOMString src;
H A DHTMLLinkElement.idl26 attribute [Reflect, URL] DOMString href;
39 readonly attribute URL absoluteLinkURL;
/external/libxml2/include/libxml/
H A Dnanohttp.h26 xmlNanoHTTPScanProxy (const char *URL);
28 xmlNanoHTTPFetch (const char *URL,
32 xmlNanoHTTPMethod (const char *URL,
39 xmlNanoHTTPMethodRedir (const char *URL,
47 xmlNanoHTTPOpen (const char *URL,
50 xmlNanoHTTPOpenRedir (const char *URL,
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DPackageTest.java21 import java.net.URL;
35 URL resourceURL = new URL("file:/" + resPath + "/Package/"
38 URLClassLoader ucl = new URLClassLoader(new URL[] { resourceURL }, null);
275 * @tests java.lang.Package#isSealed(java.net.URL)
280 .isSealed(new URL("file:/" + resPath + "/")));
282 .isSealed(new URL("file:/" + resPath + "/Package/hyts_c.jar")));
300 URL resourceURL1 = new URL("file:/" + resPath + "/Package/hyts_c.jar");
301 URL resourceURL
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/file/
H A DFileURLConnectionTest.java20 import java.net.URL;
34 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
53 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
54 URL anchorUrl = new URL(url,"#anchor");
62 URL localURL = new URL(localURLString);
70 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
91 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DUrlLocator.java42 import java.net.URL;
47 * <code>UrlLocator</code> is a locator that combines a root URL
48 * and the given path in the AssetKey to construct a new URL
55 private URL root;
59 this.root = new URL(rootPath);
69 // URL url = new URL(root, name);
73 URL url = new URL(root.toExternalForm() + name);
H A DUrlAssetInfo.java9 import java.net.URL;
13 * Handles loading of assets from a URL
19 private URL url;
22 public static UrlAssetInfo create(AssetManager assetManager, AssetKey key, URL url) throws IOException {
23 // Check if URL can be reached. This will throw
37 private UrlAssetInfo(AssetManager assetManager, AssetKey key, URL url, InputStream in) throws IOException {
61 throw new AssetLoadException("Failed to read URL " + url, ex);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSPasteboardExtras.h55 // Finds the best URL from the data on the pasteboard, giving priority to http and https URLs
58 // Writes the URL to the pasteboard with the passed types.
59 - (void)_web_writeURL:(NSURL *)URL andTitle:(NSString *)title types:(NSArray *)types;
68 // Writes an image, URL and other optional types to the pasteboard.
71 URL:(NSURL *)URL
78 URL:(NSURL *)URL
/external/okhttp/src/test/java/libcore/net/http/
H A DExternalSpdyExample.java23 import java.net.URL;
29 URL url = new URL("https://www.google.ca/");
/external/webkit/Source/WebKit/mac/History/
H A DWebHistory.h80 @param URL The URL to use to initialize the WebHistory.
85 - (BOOL)loadFromURL:(NSURL *)URL error:(NSError **)error;
89 @discussion Save history to URL. It is the client's responsibility to call this at appropriate times.
90 @param URL The URL to use to save the WebHistory.
94 - (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error;
132 @abstract Get an item for a specific URL
133 @param URL The URL o
[all...]
H A DWebHistoryInternal.h36 - (void)_visitedURL:(NSURL *)URL withTitle:(NSString *)title method:(NSString *)method wasFailure:(BOOL)wasFailure increaseVisitCount:(BOOL)increaseVisitCount;
H A DWebHistoryItemPrivate.h35 - (id)initWithURL:(NSURL *)URL title:(NSString *)title;
37 - (NSURL *)URL;
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_unittest.cc284 { ASCIIToUTF16("foo.com"), AutocompleteInput::URL },
286 { ASCIIToUTF16("foo/bar"), AutocompleteInput::URL },
295 { ASCIIToUTF16("foo:81"), AutocompleteInput::URL },
296 { ASCIIToUTF16("www.foo.com:81"), AutocompleteInput::URL },
297 { ASCIIToUTF16("localhost:8080"), AutocompleteInput::URL },
304 { ASCIIToUTF16("user:pass@foo"), AutocompleteInput::URL },
305 { ASCIIToUTF16("user:pass@foo.c"), AutocompleteInput::URL },
306 { ASCIIToUTF16("user:pass@foo.com"), AutocompleteInput::URL },
307 { ASCIIToUTF16("user:pass@foo.com:81"), AutocompleteInput::URL },
308 { ASCIIToUTF16("user:pass@foo:81"), AutocompleteInput::URL },
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DLoadLocaleProviderTestHelper.java20 import java.net.URL;
26 public LoadLocaleProviderTestHelper(URL[] classpathes)
/external/javassist/src/main/javassist/
H A DClassClassPath.java19 import java.net.URL;
78 * Obtains the URL of the specified class file.
82 public URL find(String classname) {
/external/oauth/core/src/main/java/net/oauth/
H A DConsumerProperties.java22 import java.net.URL;
39 public static URL getResource(String name, ClassLoader loader)
41 URL resource = loader.getResource(name);
48 public static Properties getProperties(URL source) throws IOException {
100 URL baseURL = (base == null) ? null : new URL(base);
123 private String getURL(URL base, String name) throws MalformedURLException {
126 url = (new URL(base, url)).toExternalForm();
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java20 import java.net.URL;
31 protected HttpResponseMessage(String method, URL url) {
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDataSourcePrivate.h33 - (NSFileWrapper *)_fileWrapperForURL:(NSURL *)URL;
/external/chromium/chrome/browser/ui/cocoa/applescript/
H A Dbookmark_item_applescript.h24 // Returns the URL that the bookmark item holds.
25 - (NSString*)URL;
27 // Sets the URL of the bookmark item, displays error in applescript console
28 // if URL is invalid.

Completed in 392 milliseconds

1234567891011>>