Searched refs:URI (Results 1 - 25 of 218) sorted by relevance

123456789

/external/nist-sip/java/javax/sip/header/
H A DAlertInfoHeader.java3 import javax.sip.address.URI;
8 URI getAlertInfo();
9 void setAlertInfo(URI alertInfo);
H A DWWWAuthenticateHeader.java3 import javax.sip.address.URI;
11 URI getURI();
16 void setURI(URI uri);
H A DCallInfoHeader.java3 import javax.sip.address.URI;
8 URI getInfo();
9 void setInfo(URI info);
H A DErrorInfoHeader.java4 import javax.sip.address.URI;
9 URI getErrorInfo();
10 void setErrorInfo(URI errorInfo);
/external/apache-http/src/org/apache/http/impl/client/
H A DRedirectLocations.java34 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) {
63 * Adds a new URI to the list of redirects.
65 public void add(final URI uri) {
70 * Removes a URI from the list of redirects.
72 public boolean remove(final URI uri) {
/external/jcommander/src/main/java/com/beust/jcommander/converters/
H A DURIConverter.java23 import java.net.URI;
27 * Convert a string into a URI.
31 public class URIConverter extends BaseConverter<URI> {
37 public URI convert(String value) {
39 return new URI(value);
41 throw new ParameterException(getErrorString(value, "a RFC 2396 and RFC 2732 compliant URI"));
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpDelete.java34 import java.net.URI;
43 * identified by the Request-URI. [...] The client cannot
63 public HttpDelete(final URI uri) {
73 setURI(URI.create(uri));
H A DHttpGet.java34 import java.net.URI;
43 * entity) is identified by the Request-URI. If the Request-URI refers
70 public HttpGet(final URI uri) {
80 setURI(URI.create(uri));
H A DHttpHead.java34 import java.net.URI;
70 public HttpHead(final URI uri) {
80 setURI(URI.create(uri));
H A DHttpPost.java34 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) {
84 setURI(URI.create(uri));
H A DHttpPut.java34 import java.net.URI;
43 * supplied Request-URI. If the Request-URI refers to an already
66 public HttpPut(final URI uri) {
76 setURI(URI.create(uri));
H A DHttpTrace.java34 import java.net.URI;
69 public HttpTrace(final URI uri) {
79 setURI(URI.create(uri));
H A DHttpUriRequest.java34 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/
H A DProxyAuthenticate.java31 import javax.sip.address.URI;
66 public URI getURI() {
71 * @see gov.nist.javax.sip.header.AuthenticationHeader#setURI(javax.sip.address.URI)
76 public void setURI(URI uri) {
H A DSipRequestLine.java3 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);
H A DWWWAuthenticate.java33 import javax.sip.address.URI;
68 public URI getURI() {
73 * @see gov.nist.javax.sip.header.AuthenticationHeader#setURI(javax.sip.address.URI)
78 public void setURI(URI uri) {
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAssociatedURIHeader.java34 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
68 public final static String NAME = "P-Associated-URI";
72 * <p>Set the URI on this address</p>
74 * @throws NullPointerException when supplied URI is null
76 public void setAssociatedURI(URI associatedUR
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java32 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(buffe
[all...]
/external/nist-sip/java/javax/sip/address/
H A DAddressFactory.java8 Address createAddress(URI uri);
9 Address createAddress(String displayName, URI uri)
14 URI createURI(String uri) throws ParseException;
H A DURI.java5 public interface URI extends Cloneable, Serializable { interface in inherits:Cloneable,Serializable
/external/nist-sip/java/javax/sip/message/
H A DRequest.java4 import javax.sip.address.URI;
26 URI getRequestURI();
27 void setRequestURI(URI requestURI);
/external/webrtc/talk/app/webrtc/objc/
H A DRTCICEServer.mm36 @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/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
H A DURLClassLoaderImplTest.java20 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/
H A DURIParameterTest.java19 import java.net.URI;
29 private URI uri;
32 * @tests {@link java.security.URIParamter#constructor(java.net.URI)}
50 URI u = uriParameter.getURI();
60 uri = new URI("http://www.test.com");
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/
H A DAbstractResponseCache.java22 import java.net.URI;
30 @Override public CacheResponse get(URI uri, String requestMethod,
35 @Override public CacheRequest put(URI uri, URLConnection connection) throws IOException {
39 public static URI toUri(URL serverUrl) {

Completed in 690 milliseconds

123456789