HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 176 - 200 of 688) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/java/net/
Authenticator.java 42 private URL url; field in class:Authenticator
145 * the realm that the URL is pointing to requires authorization.
223 * url of the connection that requests authentication.
229 String rPrompt, String rScheme, URL rURL,
242 thisAuthenticator.url = rURL;
252 * Returns the URL of the authentication request.
254 * @return authentication request url.
256 protected URL getRequestingURL() {
257 return url;
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 35 import java.net.URL;
133 // create url connection to be tested
134 URL url = new URL("https://localhost:" + ss.getLocalPort()); local
135 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
164 // create url connection to be tested
165 URL url = new URL("https://localhost:" + ss.getLocalPort()) local
204 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
242 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
277 URL url = new URL("https:\/\/localhost:55555"); local
320 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
356 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
385 URL url = new URL("https:\/\/requested.host:55556\/requested.data"); local
425 URL url = new URL("https:\/\/requested.host:55555\/requested.data"); local
459 URL url = new URL("https:\/\/requested.host:55555\/requested.data"); local
508 URL url = new URL("https:\/\/requested.host:55554\/requested.data"); local
539 URL url = new URL("https:\/\/requested.host:55555\/requested.data"); local
575 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebDataSource.mm 172 - (NSFileWrapper *)_fileWrapperForURL:(NSURL *)URL
174 if ([URL isFileURL]) {
175 NSString *path = [[URL path] stringByResolvingSymlinksInPath];
179 WebResource *resource = [self subresourceForURL:URL];
183 NSCachedURLResponse *cachedResponse = [[self _webView] _cachedResponseForURL:URL];
301 DOMDocumentFragment *fragment = [[self webFrame] _documentFragmentWithMarkupString:markupString baseURLString:[[mainResource URL] _web_originalDataAsString]];
331 // FIXME: calling _web_originalDataAsString on a file URL returns an absolute path. Workaround this.
332 NSURL *URL = [resource URL];
333 [imageElement setAttribute:@"src" value:[URL isFileURL] ? [URL absoluteString] : [URL _web_originalDataAsString]]
    [all...]
WebDataSource.h 161 @abstract Returns a subresource for a given URL.
162 @param URL The URL of the subresource.
163 @description Returns non-nil if the data source has fully downloaded a subresource with the given URL.
165 - (WebResource *)subresourceForURL:(NSURL *)URL;
172 Later, if something causes the data source to load the URL of the subresource, the data source
176 subresource with the same URL, addSubresource: will replace it.
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 34 import java.net.URL;
341 conn = (HttpURLConnection) new URL("http://localhost:" + port
354 conn = (HttpURLConnection) new URL("http://localhost:" + port
376 conn = (HttpURLConnection) new URL("http://localhost:" + port
429 URL url = new URL(jettyURL);
430 HttpURLConnection httpURLConnect = (HttpURLConnection) url
463 // @tests the url with space
467 HttpURLConnection httpURLConnect = (HttpURLConnection) new URL(
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/applescript/
tab_applescript.h 18 // Contains the temporary URL when a user creates a new folder/item with
19 // url specified like
20 // |make new tab with properties {url:"http://google.com"}|.
35 // Return the URL currently visible to the user in the location bar.
36 - (NSString*)URL;
38 // Sets the URL, returns an error if it is invalid.
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 21 import java.net.URL;
44 public HttpMessage(String method, URL url)
46 this(method, url, null);
49 public HttpMessage(String method, URL url, InputStream body)
52 this.url = url;
57 public URL url; field in class:HttpMessage
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.idl 27 attribute [Reflect, URL] DOMString href;
67 readonly attribute URL absoluteLinkURL;
HTMLObjectElement.idl 35 attribute [Reflect, URL] DOMString data;
62 readonly attribute URL absoluteImageURL;
HTMLButtonElement.idl 26 attribute [Reflect, URL] DOMString formAction;
HTMLFrameElement.idl 32 attribute [Reflect, URL] DOMString src;
  /external/webkit/Source/WebKit/mac/Plugins/
npapi.mm 82 NPError NPN_GetURLNotify(NPP instance, const char* URL, const char* target, void* notifyData)
84 return [pluginViewForInstance(instance) getURLNotify:URL target:target notifyData:notifyData];
87 NPError NPN_GetURL(NPP instance, const char* URL, const char* target)
89 return [pluginViewForInstance(instance) getURL:URL target:target];
92 NPError NPN_PostURLNotify(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData)
94 return [pluginViewForInstance(instance) postURLNotify:URL target:target len:len buf:buf file:file notifyData:notifyData];
97 NPError NPN_PostURL(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file)
99 return [pluginViewForInstance(instance) postURL:URL target:target len:len buf:buf file:file];
194 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32_t* len)
196 return [pluginViewForInstance(instance) getVariable:variable forURL:url value:value length:len]
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
TestNavigationController.cpp 49 int pageID, const WebURL& url, const WebString& title, const WebString& targetFrame)
51 return adoptRef(new TestNavigationEntry(pageID, url, title, targetFrame));
58 int pageID, const WebURL& url, const WebString& title, const WebString& targetFrame)
60 , m_url(url)
134 // result in a download or a 'no content' response (e.g., a mailto: URL).
189 // same URL, a new PageID is not created.
197 // The given entry might provide a new URL... e.g., navigating back to a
199 existingEntry->setURL(entry->URL());
205 && GURL(m_pendingEntry->URL()) == GURL(existingEntry->URL().spec()))
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
ComprehensionTlvTag.java 47 URL(0x31),
  /frameworks/support/volley/src/com/android/volley/toolbox/
HurlStack.java 36 import java.net.URL;
52 * Returns a URL to use instead of the provided one, or null to indicate
53 * this URL should not be used at all.
74 String url = request.getUrl(); local
79 String rewritten = mUrlRewriter.rewriteUrl(url);
81 throw new IOException("URL blocked by rewriter: " + url);
83 url = rewritten;
85 URL parsedUrl = new URL(url)
    [all...]
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 27 import java.net.URL;
55 URL url = null; local
61 url = new URL("file:/" + resPath + "/" + fileName);
66 return url.toString();
138 public static File getExternalLocalFile(String url) throws IOException {
140 InputStream in = new URL(url).openStream();
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksContract.java 133 * <p>Type: TEXT (URL)</p>
135 public static final String URL = "url";
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
JarHostTestTest.java 26 import java.net.URL;
49 Class<?> loadClass(String className, URL[] urls) throws ClassNotFoundException {
  /external/chromium/chrome/browser/autocomplete/
builtin_provider.cc 43 ACMatchClassification::MATCH | ACMatchClassification::URL));
47 ACMatchClassification::URL));
  /external/doclava/src/com/google/doclava/
JarUtils.java 23 import java.net.URL;
35 URL jarUrl = clazz.getResource(path);
40 String url = jarUrl.toString(); local
41 int bang = url.indexOf("!");
43 if (url.startsWith(JAR_URI_PREFIX) && bang != -1) {
45 return new JarFile(url.substring(JAR_URI_PREFIX.length(), bang));
  /external/e2fsprogs/lib/ext2fs/tdb/
build-tdb 16 grep ^URL .svninfo >> tdb.c
  /external/javassist/src/main/javassist/
ClassPoolTail.java 21 import java.net.URL;
53 public URL find(String classname) {
104 public URL find(String classname) {
107 URL url = jars[i].find(classname); local
108 if (url != null)
109 return url;
153 public URL find(String classname) {
158 return new URL("jar:" + jarfileURL + "!/" + jarname);
355 * Searches the class path to obtain the URL of the class fil
367 URL url = null; local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
ClasspathLocator.java 40 import java.net.URL;
69 URL url; local
80 url = ClasspathLocator.class.getResource("/" + name);
82 url = Thread.currentThread().getContextClassLoader().getResource(name);
84 if (url == null)
87 if (url.getProtocol().equals("file")){
89 String path = new File(url.toURI()).getCanonicalPath();
102 throw new AssetLoadException("Error converting URL to URI", ex);
104 throw new AssetLoadException("Failed to get canonical path for " + url, ex)
    [all...]
  /external/quake/quake/src/QW/
qwcl.x11.spec.sh 16 URL: http://www.idsoftware.com/
  /external/quake/quake/src/WinQuake/
quake-hipnotic.spec.sh 16 URL: http://www.ritual.com/

Completed in 1096 milliseconds

1 2 3 4 5 6 78 91011>>