HomeSort by relevance Sort by last modified time
    Searched refs:URI (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-82306.js 31 var URI = '';
45 URI += '<?xml version="1.0"?>';
46 URI += '<zcti application="xxxx_demo">';
47 URI += '<pstn_data>';
48 URI += '<ani>650-930-xxxx</ani>';
49 URI += '<dnis>877-485-xxxx</dnis>';
50 URI += '</pstn_data>';
51 URI += '<keyvalue key="name" value="xxx"/>';
52 URI += '<keyvalue key="phone" value="6509309000"/>';
53 URI += '</zcti>'
    [all...]
  /external/nist-sip/java/javax/sip/header/
AlertInfoHeader.java 3 import javax.sip.address.URI;
8 URI getAlertInfo();
9 void setAlertInfo(URI alertInfo);
WWWAuthenticateHeader.java 3 import javax.sip.address.URI;
11 URI getURI();
16 void setURI(URI uri);
CallInfoHeader.java 3 import javax.sip.address.URI;
8 URI getInfo();
9 void setInfo(URI info);
ErrorInfoHeader.java 4 import javax.sip.address.URI;
9 URI getErrorInfo();
10 void setErrorInfo(URI errorInfo);
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 34 import java.net.URI;
43 private final Set<URI> uris;
47 this.uris = new HashSet<URI>();
51 * Returns true if this collection contains the given URI.
53 public boolean contains(final URI uri) {
54 return this.uris.contains(uri);
58 * Adds a new URI to the list of redirects.
60 public void add(final URI uri) {
    [all...]
  /libcore/luni/src/main/java/java/net/
CookieStore.java 36 * A cookie may or may not has an associated URI. If not, the cookie's
38 * associated URI and no domain and path attribute are speicifed for the
39 * cookie, the given URI will indicate where this cookie comes from.
41 * If a cookie corresponding to the given URI already exists, then it is
44 * @param uri
45 * the uri associated with the specified cookie. A null value
46 * indicates the cookie is not associated with a URI
50 void add(URI uri, HttpCookie cookie);
53 * Retrieves cookies that match the specified URI. Return not expired cookies
    [all...]
CookiePolicy.java 34 public boolean shouldAccept(URI uri, HttpCookie cookie) {
43 public boolean shouldAccept(URI uri, HttpCookie cookie) {
52 public boolean shouldAccept(URI uri, HttpCookie cookie) {
53 return HttpCookie.domainMatches(cookie.getDomain(), uri.getHost());
61 * @param uri
62 * the URI to used to determine acceptability
67 boolean shouldAccept(URI uri, HttpCookie cookie)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
UriTest.java 19 import java.net.URI;
29 assertEquals(null, new URI("http://./").getHost());
34 new URI("http://[192.168.0.1]/");
42 new URI("http://[google.com]/");
49 assertEquals(null, new URI("http://fe80::1234/").getHost());
53 assertFalse(new URI("http://android.com").equals(new URI("http://android.com/")));
OldURITest.java 20 import java.net.URI;
94 new URI(s);
96 fail("Failed to construct URI for: " + s + " : " + e);
102 URI.create(s);
111 URI b = new URI("http://www.google.com/dir1/dir2");
120 URI b = new URI("http://www.test.com/dir");
121 b.resolve((URI) null);
129 URI b = new URI("http://www.test.com/dir")
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URITest.java 21 import java.net.URI;
30 private URI[] uris;
32 private URI[] getUris() throws URISyntaxException {
37 uris = new URI[] {
39 new URI(
42 new URI(
45 new URI(
48 // URI("ascheme://user\u00df\u00a3info@host:0/a\u0080path?qu\u00a9\u00aeery#fr\u00e4\u00e8g"),
51 new URI("http", "user%60%20info", "host", 80, "/a%20path",
54 new URI("http", "user%C3%9F%C2%A3info", "host", -1
233 URI uri = new URI("http:\/\/host:-8096\/path\/index.html"); local
267 URI uri = new URI("path[one"); local
275 URI uri = new URI(" "); local
289 URI uri = new URI("mailto", "mduerst@ifi.unizh.ch", null); local
380 URI uri; local
405 URI uri = new URI(scheme, userinfo, host, port, path, query, local
431 URI uri; local
480 URI uri = new URI("ht12-3+tp", "", "\/p#a%E2%82%ACth", "q^u%25ery", local
515 URI uri = new URI("ftp", "[0001:1234::0001]", "\/dir1\/dir2", "query", local
617 URI uri, uri2; local
729 URI uri = new URI("http:\/\/\/~\/dictionary"); local
786 URI uri = new URI("file:\/\/\/tmp\/"); local
919 URI uri = new URI("http:\/\/myhost:-8096\/site\/index.html"); local
1487 URI uri = uris[i].parseServerAuthority(); local
1508 URI uri = new URI("http:\/\/us[er@host:80\/"); local
1515 URI uri = new URI("http:\/\/[ddd::hgghh]\/"); local
1522 URI uri = new URI("http", "[3ffe:2a00:100:7031:2e:1:80:80]a:80", local
1530 URI uri = new URI("http", "host:80", "\/path", "fragment"); local
1617 URI uri = new URI("file", null, "\/test\/location", null); local
1855 URI uri = new URI("http:\/\/harmony.apache.org\/"); local
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpDelete.java 34 import java.net.URI;
43 * identified by the Request-URI. [...] The client cannot
58 public HttpDelete(final URI uri) {
60 setURI(uri);
64 * @throws IllegalArgumentException if the uri is invalid.
66 public HttpDelete(final String uri) {
68 setURI(URI.create(uri));
HttpGet.java 34 import java.net.URI;
43 * entity) is identified by the Request-URI. If the Request-URI refers
65 public HttpGet(final URI uri) {
67 setURI(uri);
71 * @throws IllegalArgumentException if the uri is invalid.
73 public HttpGet(final String uri) {
75 setURI(URI.create(uri));
    [all...]
HttpHead.java 34 import java.net.URI;
65 public HttpHead(final URI uri) {
67 setURI(uri);
71 * @throws IllegalArgumentException if the uri is invalid.
73 public HttpHead(final String uri) {
75 setURI(URI.create(uri));
HttpPost.java 34 import java.net.URI;
44 * the Request-URI in the Request-Line. POST is designed to allow a uniform
69 public HttpPost(final URI uri) {
71 setURI(uri);
75 * @throws IllegalArgumentException if the uri is invalid.
77 public HttpPost(final String uri) {
79 setURI(URI.create(uri));
HttpPut.java 34 import java.net.URI;
43 * supplied Request-URI. If the Request-URI refers to an already
61 public HttpPut(final URI uri) {
63 setURI(uri);
67 * @throws IllegalArgumentException if the uri is invalid.
69 public HttpPut(final String uri) {
71 setURI(URI.create(uri));
    [all...]
HttpTrace.java 34 import java.net.URI;
64 public HttpTrace(final URI uri) {
66 setURI(uri);
70 * @throws IllegalArgumentException if the uri is invalid.
72 public HttpTrace(final String uri) {
74 setURI(URI.create(uri));
HttpUriRequest.java 34 import java.net.URI;
40 * convenience methods to access request properties such as request URI
59 * Returns the URI this request uses, such as
62 URI getURI();
  /external/nist-sip/java/gov/nist/javax/sip/header/
ProxyAuthenticate.java 31 import javax.sip.address.URI;
63 * @since 1.2 this method is deprecated, uri is not a valid paramter for this header
66 public URI getURI() {
71 * @see gov.nist.javax.sip.header.AuthenticationHeader#setURI(javax.sip.address.URI)
73 * @since 1.2 this method is deprecated, uri is not a valid paramter for this header
76 public void setURI(URI uri) {
SipRequestLine.java 3 import javax.sip.address.URI;
13 /** get the Request-URI.
15 * @return the request URI
17 public abstract URI getUri();
34 * Set the URI.
36 * @param uri URI to set.
38 public abstract void setUri(URI uri);
WWWAuthenticate.java 33 import javax.sip.address.URI;
65 * @since 1.2 this method is deprecated, uri is not a valid paramter for this header
68 public URI getURI() {
73 * @see gov.nist.javax.sip.header.AuthenticationHeader#setURI(javax.sip.address.URI)
75 * @since 1.2 this method is deprecated, uri is not a valid paramter for this header
78 public void setURI(URI uri) {
  /frameworks/base/tests/CoreTests/android/core/
URITest.java 21 import java.net.URI;
35 URI uri = new URI(str); local
36 assertEquals(host, uri.getHost());
37 assertEquals(path, uri.getPath());
38 assertEquals(absolute, uri.isAbsolute());
48 private static void resolve(String base, String uri, String expected) {
49 URI b = URI.create(base)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAssociatedURIHeader.java 34 import javax.sip.address.URI;
39 * <p>P-Associated-URI SIP Private Header. </p>
40 * <p>An associated URI is a URI that the service provider
45 * P-Associated-URI = "P-Associated-URI" HCOLON
46 * (p-aso-uri-spec) *(COMMA p-aso-uri-spec)
47 * p-aso-uri-spec = name-addr *(SEMI ai-param)
68 public final static String NAME = "P-Associated-URI";
    [all...]
  /external/apache-http/src/org/apache/http/client/utils/
URIUtils.java 32 import java.net.URI;
38 * A collection of utilities for {@link URI URIs}, to workaround
44 * Constructs a {@link URI} using all the parameters. This should be
46 * {@link URI#URI(String, String, String, int, String, String, String)}
47 * or any of the other URI multi-argument URI constructors.
68 * relative, if the URI string constructed from the given
73 public static URI createURI(
107 return new URI(buffer.toString())
    [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;

Completed in 1420 milliseconds

1 2 3 4 5 6 7 8 910