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

1 2 3 4 5 6 7 8 9

  /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;
48 private final Set<URI> uris;
52 this.uris = new HashSet<URI>();
56 * Returns true if this collection contains the given URI.
58 public boolean contains(final URI uri) {
59 return this.uris.contains(uri);
63 * Adds a new URI to the list of redirects.
65 public void add(final URI uri) {
    [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
63 public HttpDelete(final URI uri) {
65 setURI(uri);
69 * @throws IllegalArgumentException if the uri is invalid.
71 public HttpDelete(final String uri) {
73 setURI(URI.create(uri));
HttpGet.java 34 import java.net.URI;
43 * entity) is identified by the Request-URI. If the Request-URI refers
70 public HttpGet(final URI uri) {
72 setURI(uri);
76 * @throws IllegalArgumentException if the uri is invalid.
78 public HttpGet(final String uri) {
80 setURI(URI.create(uri));
    [all...]
HttpHead.java 34 import java.net.URI;
70 public HttpHead(final URI uri) {
72 setURI(uri);
76 * @throws IllegalArgumentException if the uri is invalid.
78 public HttpHead(final String uri) {
80 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
74 public HttpPost(final URI uri) {
76 setURI(uri);
80 * @throws IllegalArgumentException if the uri is invalid.
82 public HttpPost(final String uri) {
84 setURI(URI.create(uri));
HttpPut.java 34 import java.net.URI;
43 * supplied Request-URI. If the Request-URI refers to an already
66 public HttpPut(final URI uri) {
68 setURI(uri);
72 * @throws IllegalArgumentException if the uri is invalid.
74 public HttpPut(final String uri) {
76 setURI(URI.create(uri));
    [all...]
HttpTrace.java 34 import java.net.URI;
69 public HttpTrace(final URI uri) {
71 setURI(uri);
75 * @throws IllegalArgumentException if the uri is invalid.
77 public HttpTrace(final String uri) {
79 setURI(URI.create(uri));
HttpUriRequest.java 34 import java.net.URI;
40 * convenience methods to access request properties such as request URI
64 * Returns the URI this request uses, such as
67 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) {
  /external/chromium_org/third_party/libxslt/libxslt/
extensions.h 39 * @URI: the namespace URI for the extension
46 const xmlChar *URI);
51 * @URI: the namespace URI for the extension
57 const xmlChar *URI,
63 * @URI: the namespace URI for the extension
70 const xmlChar *URI);
75 * @URI: the namespace URI for the extensio
    [all...]
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...]
  /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
49 * Constructs a {@link URI} using all the parameters. This should be
51 * {@link URI#URI(String, String, String, int, String, String, String)}
52 * or any of the other URI multi-argument URI constructors.
73 * relative, if the URI string constructed from the given
78 public static URI createURI(
112 return new URI(buffer.toString())
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCICEServer.mm 36 @synthesize URI = _URI;
40 - (id)initWithURI:(NSURL*)URI
43 if (!URI || !username || !password) {
49 _URI = URI;
58 [self.URI absoluteString],
69 iceServer.uri = [[self.URI absoluteString] UTF8String];
  /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;
  /external/nist-sip/java/javax/sip/message/
Request.java 4 import javax.sip.address.URI;
26 URI getRequestURI();
27 void setRequestURI(URI requestURI);
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
UrlUtilitiesTest.java 12 import java.net.URI;
67 URI uri; local
68 uri = new URI(UrlUtilities.fixUrl("google.com"));
69 assertTrue("http".equals(uri.getScheme()));
70 uri = new URI(UrlUtilities.fixUrl("\n://user:pass@example.com:80/"));
71 assertTrue("http".equals(uri.getScheme()));
72 uri = new URI(UrlUtilities.fixUrl("inline:google.com"))
90 URI uri; local
    [all...]
  /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...]

Completed in 330 milliseconds

1 2 3 4 5 6 7 8 9