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

1234567891011>>

/external/javassist/src/main/javassist/
H A DClassPath.java19 import java.net.URL;
53 * Returns the uniform resource locator (URL) of the class file
59 URL find(String classname);
H A DByteArrayClassPath.java19 import java.net.URL;
84 * Obtains the URL.
86 public URL find(String classname) {
91 return new URL("file:/ByteArrayClassPath/" + cname);
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpClientPool.java19 import java.net.URL;
33 /** Get the appropriate HttpClient for sending a request to the given URL. */
34 public org.apache.http.client.HttpClient getHttpClient(URL server);
/external/webkit/Source/WebCore/html/
H A DHTMLBlockquoteElement.idl23 attribute [Reflect, URL] DOMString cite;
H A DHTMLQuoteElement.idl23 attribute [Reflect, URL] DOMString cite;
H A DHTMLBaseElement.idl23 attribute [Reflect, URL] DOMString href;
H A DHTMLHtmlElement.idl24 attribute [Reflect, URL] DOMString manifest;
H A DHTMLModElement.idl23 attribute [Reflect, URL] DOMString cite;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLTest.java31 import java.net.URL;
44 protected URLConnection openConnection(URL u)
50 URL u;
52 URL u1;
54 URL u2;
56 URL u3;
58 URL u4;
60 URL u5;
62 URL u6;
69 * @tests java.net.URL#UR
[all...]
H A DJarURLConnectionTest.java27 import java.net.URL;
51 URL u = new URL("jar:"+BASE+"!/swt.dll");
64 URL u = new URL("jar:"+BASE+"!/plus.bmp");
68 u = new URL("jar:"+BASE+"!/");
72 URL url = new URL("jar:file:///bar.jar!/foo.jar!/Bugs/HelloWorld.class");
80 URL u = new URL("ja
[all...]
H A DURLClassLoaderTest.java25 import java.net.URL;
64 public URL getResource(String res) {
66 return new URL("http://test/BogusClassLoader");
75 public URLClassLoaderExt(URL[] urls) {
85 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[])
88 URL[] u = new URL[0];
94 URLClassLoader loader = new URLClassLoader(new URL[] { null });
104 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[],
109 URL[]
[all...]
/external/clang/lib/Basic/
H A DVersion.cpp28 StringRef URL(SVN_REPOSITORY);
30 StringRef URL("");
35 static StringRef SVNRepository("$URL$");
36 if (URL.empty()) {
37 URL = SVNRepository.slice(SVNRepository.find(':'),
42 URL = URL.slice(0, URL.find("/src/tools/clang"));
45 size_t Start = URL.find("cfe/");
47 URL
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js4 var idx=document.URL.indexOf("php?");
6 window.open(document.URL+"?fp_type="+type, "_self");
8 window.open(document.URL.substring(0,idx)+"php?fp_type="+type, "_self");
13 var idx=document.URL.indexOf("?");
16 var typeStr=document.URL.substring(idx+1, document.URL.length);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebIconDatabase.h32 // The userInfo contains the site URL whose icon has changed.
81 @param URL
84 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size;
88 @discussion Returns an icon for a web site URL from memory or disk. nil if none is found.
89 Usually called by a UI element to determine if a site URL has an associated icon.
91 @param URL
95 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache;
99 @discussion Returns an icon URL for a web site URL from memory or disk. nil if none is found.
100 @param URL
[all...]
H A DWebIconDatabaseDelegate.h31 - (NSImage *)webIconDatabase:(WebIconDatabase *)webIconDatabase defaultIconForURL:(NSString *)URL withSize:(NSSize)size;
H A DWebKitErrorsPrivate.h54 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URL;
55 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL;
/external/guava/guava/src/com/google/common/io/
H A DResources.java28 import java.net.URL;
34 * Note that even though these methods use {@link URL} parameters, they
49 * read from the given URL.
51 * @param url the URL to read from
55 final URL url) {
67 * {@link InputStreamReader} that read a URL using the given character set.
69 * @param url the URL to read from
70 * @param charset the character set used when reading the URL contents
74 URL url, Charset charset) {
79 * Reads all bytes from a URL int
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebResource.h36 @discussion A WebResource represents a fully downloaded URL.
46 @method initWithData:URL:MIMEType:textEncodingName:frameName
49 @param URL The URL of the resource.
55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName;
64 @method URL
65 @result The URL of the resource.
67 - (NSURL *)URL;
H A DWebResourcePrivate.h34 URL:(NSURL *)URL
41 - (id)_initWithData:(NSData *)data URL:(NSURL *)URL response:(NSURLResponse *)response;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/test_protocol/
H A DHandler.java21 import java.net.URL;
26 protected URLConnection openConnection(URL u) throws IOException {
/external/webkit/Source/WebKit2/Shared/API/c/cf/
H A DWKURLCF.h36 WK_EXPORT WKURLRef WKURLCreateWithCFURL(CFURLRef URL);
37 WK_EXPORT CFURLRef WKURLCopyCFURL(CFAllocatorRef alloc, WKURLRef URL);
/external/doclava/src/com/google/doclava/
H A DFederatedSite.java24 import java.net.URL;
33 private final URL baseUrl;
36 public FederatedSite(String name, URL baseUrl) throws ApiParseException {
41 URL xmlUrl = new URL(baseUrl + "/xml/current.xml");
52 public FederatedSite(String name, URL baseUrl, String api) throws ApiParseException {
70 public URL baseUrl() {
/external/okhttp/src/main/java/libcore/net/http/
H A DHttpsHandler.java22 import java.net.URL;
28 @Override protected URLConnection openConnection(URL url) throws IOException {
32 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
/external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
H A DURLClassLoaderImplTest.java21 import java.net.URL;
36 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[], java.lang.ClassLoader,
52 final URL base = getClass().getResource("lf.jar");
54 final URL[] urls = { base };
57 final URL res = ucl.findResource("swt.dll");
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebErrorsMac.mm47 #define WebKitErrorDescriptionCannotShowURL WEB_UI_STRING("The URL can’t be shown", "WebKitErrorCannotShowURL description")
62 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL;
74 -(id)_webkit_initWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
83 URL, @"NSErrorFailingURLKey",
84 [URL absoluteString], @"NSErrorFailingURLStringKey",
90 +(id)_webkit_errorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
92 return [[[self alloc] _webkit_initWithDomain:domain code:code URL
[all...]

Completed in 411 milliseconds

1234567891011>>