HomeSort by relevance Sort by last modified time
    Searched refs:URI (Results 26 - 50 of 2895) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/net/
ProxySelector.java 112 * Returns the proxy servers to use on connections to {@code uri}. This list
115 * @throws IllegalArgumentException if {@code uri} is null.
117 public abstract List<Proxy> select(URI uri);
123 * @param uri the URI to which the connection could not be established.
129 public abstract void connectFailed(URI uri, SocketAddress address, IOException failure);
CookieStoreImpl.java 32 private final Map<URI, List<HttpCookie>> map = new HashMap<URI, List<HttpCookie>>();
34 public synchronized void add(URI uri, HttpCookie cookie) {
39 uri = cookiesUri(uri);
40 List<HttpCookie> cookies = map.get(uri);
43 map.put(uri, cookies);
50 private URI cookiesUri(URI uri)
    [all...]
CookieHandler.java 45 * Gets all cookies for a specific URI from the cookie cache.
47 * @param uri
48 * a URI to search for applicable cookies.
55 public abstract Map<String, List<String>> get(URI uri,
59 * Sets all cookies of a specific URI in the {@code responseHeaders} into
62 * @param uri
63 * the origin URI of the cookies.
69 public abstract void put(URI uri, Map<String, List<String>> responseHeaders
    [all...]
ResponseCache.java 51 * @param uri
52 * the request URI.
64 public abstract CacheResponse get(URI uri, String requestMethod,
73 * @param uri
84 public abstract CacheRequest put(URI uri, URLConnection connection) throws IOException;
  /external/libxslt/libxslt/
extensions.c 57 xmlChar *URI;
100 * @URI: the namespace URI
107 xsltNewExtDef(const xmlChar * prefix, const xmlChar * URI)
120 if (URI != NULL)
121 cur->URI = xmlStrdup(URI);
138 if (extensiond->URI != NULL)
139 xmlFree(extensiond->URI);
302 * @URI: the function or element namespace UR
    [all...]
documents.h 28 const xmlChar *URI);
37 const xmlChar *URI);
61 * @URI: the URI of the document to load
76 typedef xmlDocPtr (*xsltDocLoaderFunc) (const xmlChar *URI,
imports.c 40 #include <libxml/uri.h>
92 xmlChar *URI = NULL;
107 URI = xmlBuildURI(uriRef, base);
108 if (URI == NULL) {
110 "xsl:import : invalid URI reference %s\n", uriRef);
118 if (xmlStrEqual(res->doc->URL, URI)) {
120 "xsl:import : recursion detected on imported URL %s\n", URI);
133 secres = xsltCheckRead(sec, NULL, URI);
137 URI);
142 import = xsltDocDefaultLoader(URI, style->dict, XSLT_PARSE_OPTIONS
    [all...]
documents.c 46 * @URI: the URI of the document to load
61 xsltDocDefaultLoaderFunc(const xmlChar * URI, xmlDictPtr dict, int options,
85 inputStream = xmlLoadExternalEntity((const char *) URI, NULL, pctxt);
92 pctxt->directory = xmlParserGetDirectory((const char *) URI);
277 * @URI: the computed URI of the document
285 xsltLoadDocument(xsltTransformContextPtr ctxt, const xmlChar *URI) {
289 if ((ctxt == NULL) || (URI == NULL))
298 res = xsltCheckRead(ctxt->sec, ctxt, URI);
    [all...]
  /external/nist-sip/java/javax/sip/address/
AddressFactory.java 8 Address createAddress(URI uri);
9 Address createAddress(String displayName, URI uri)
11 SipURI createSipURI(String uri) throws ParseException;
13 TelURL createTelURL(String uri) throws ParseException;
14 URI createURI(String uri) throws ParseException;
URI.java 5 public interface URI extends Cloneable, Serializable {
Address.java 17 URI getURI();
18 void setURI(URI uri);
  /external/nist-sip/java/javax/sip/message/
Request.java 4 import javax.sip.address.URI;
26 URI getRequestURI();
27 void setRequestURI(URI requestURI);
  /external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderImplTest.java 20 import java.net.URI;
60 final URI e = new URI("jar:" + base.toExternalForm() + "!/swt.dll");
61 final URI a = res.toURI();
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
URIParameterTest.java 19 import java.net.URI;
29 private URI uri; field in class:URIParameterTest
32 * @tests {@link java.security.URIParamter#constructor(java.net.URI)}
50 URI u = uriParameter.getURI();
51 assertEquals(uri, u);
52 assertSame(uri, u);
60 uri = new URI("http://www.test.com");
61 uriParameter = new URIParameter(uri);
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
UrlEncodingTest.java 20 import java.net.URI;
31 assertEquals("%61", new URI("http://foo#%61").getRawFragment());
35 * URLDecoder and URI disagree on what '+' should decode to.
40 assertEquals("a+b", new URI("http://foo#a+b").getFragment());
46 assertEquals("a+b", new URI("http", "foo", "/", "a+b").getRawFragment());
53 new URI("http://foo#a b");
62 assertEquals("a%20b", new URI("http", "foo", "/", "a b").getRawFragment());
67 new URI("http://foo#%");
72 new URI("http://foo#%0");
93 new URI("http://foo#%0g")
    [all...]
OldCookieHandlerTest.java 21 import java.net.URI;
30 URI getURI, putURI;
80 public Map get(URI uri, Map requestHeaders) throws IOException {
81 getURI = uri;
86 public void put(URI uri, Map responseHeaders) throws IOException {
87 putURI = uri;
  /external/apache-http/src/org/apache/http/client/
RedirectHandler.java 34 import java.net.URI;
74 * @return redirect URI
76 URI getLocationURI(HttpResponse response, HttpContext context)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookiePolicyTest.java 21 import java.net.URI;
29 * @tests java.net.CookiePolicy#shouldAccept(java.net.URI,
36 URI uri = new URI(""); local
45 CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(uri, null);
65 accept = CookiePolicy.ACCEPT_ALL.shouldAccept(uri, null);
75 accept = CookiePolicy.ACCEPT_NONE.shouldAccept(uri, null);
79 accept = CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(uri, cookie);
83 accept = CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(new URI(
    [all...]
CookieHandlerTest.java 22 import java.net.URI;
53 public Map get(URI uri, Map requestHeaders) throws IOException {
57 public void put(URI uri, Map responseHeaders) throws IOException {
CookieManagerTest.java 23 import java.net.URI;
35 private static void checkValidParams4Get(URI uri,
39 manager.get(uri, map);
47 private static void checkValidParams4Put(URI uri,
51 manager.put(uri, map);
60 * @tests {@link java.net.CookieManager#get(java.net.URI, java.util.Map)} &
61 * @tests {@link java.net.CookieManager#put(java.net.URI, java.util.Map)}
68 checkValidParams4Get(new URI(""), null)
99 URI uri = new URI(cookies[i][j]); local
273 URI uri = new URI("http:\/\/a.b.c"); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
GenericURI.java 29 import javax.sip.address.URI;
32 * Implementation of the URI class. This relies on the 1.4 URI class.
39 public class GenericURI extends NetObject implements javax.sip.address.URI {
53 /** Imbedded URI
58 * The URI Scheme.
67 /** Constructor given the URI string
68 * @param uriString The imbedded URI string.
69 * @throws java.net.URISyntaxException When there is a syntaz error in the imbedded URI.
77 throw new ParseException("GenericURI, Bad URI format", 0)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AlertInfo.java 53 /** URI field
55 protected GenericURI uri; field in class:AlertInfo
72 if (uri != null) {
73 encoding.append(LESS_THAN).append(uri.encode()).append(GREATER_THAN);
84 * Set the uri member
85 * @param uri URI to set
87 public void setAlertInfo(URI uri) {
88 this.uri = (GenericURI) uri
    [all...]
  /external/nist-sip/java/javax/sip/header/
AuthorizationHeader.java 4 import javax.sip.address.URI;
39 URI getURI();
40 void setURI(URI uri);
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java 22 import java.net.URI;
34 super(URI.create("string:///" + sourceName.replace(".", "/") + ".java"),
MemoryByteCode.java 22 import java.net.URI;
34 super(URI.create("byte:///" + name.replace(".", "/") + ".class"),

Completed in 589 milliseconds

12 3 4 5 6 7 8 91011>>