Searched refs:URI (Results 26 - 50 of 214) sorted by relevance

123456789

/external/nist-sip/java/javax/sip/address/
H A DURI.java5 public interface URI extends Cloneable, Serializable { interface in inherits:Cloneable,Serializable
H A DAddress.java17 URI getURI();
18 void setURI(URI uri);
H A DTelURL.java6 public interface TelURL extends URI, Parameters {
/external/apache-http/src/org/apache/http/client/
H A DRedirectHandler.java34 import java.net.URI;
79 * @return redirect URI
81 URI getLocationURI(HttpResponse response, HttpContext context)
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCICEServer.h33 // The server URI, username, and password.
34 @property(nonatomic, strong, readonly) NSURL* URI; variable
39 - (id)initWithURI:(NSURL*)URI
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentUrisTest.java15 Uri URI; field in class:ContentUrisTest
19 URI = Uri.parse("content://foo.com");
23 assertThat(ContentUris.withAppendedId(URI, 1),
33 assertThat(ContentUris.parseId(Uri.withAppendedPath(URI, "1")), is(1L));
34 assertThat(ContentUris.parseId(URI), is(-1L));
39 ContentUris.parseId(Uri.withAppendedPath(URI, "bar"));
H A DContentProviderOperationTest.java22 final Uri URI = Uri.parse("content://com.xtremelabs.robolectric");
23 Builder builder = ContentProviderOperation.newInsert(URI);
28 assertThat(operation.getUri(), equalTo(URI));
39 final Uri URI = Uri.parse("content://com.xtremelabs.robolectric");
40 Builder builder = ContentProviderOperation.newInsert(URI);
51 final Uri URI = Uri.parse("content://com.xtremelabs.robolectric");
52 Builder builder = ContentProviderOperation.newUpdate(URI);
56 assertThat(operation.getUri(), equalTo(URI));
65 final Uri URI = Uri.parse("content://com.xtremelabs.robolectric");
66 Builder builder = ContentProviderOperation.newDelete(URI);
[all...]
H A DUriMatcherTest.java24 Uri URI; field in class:UriMatcherTest
27 URI = Uri.parse("content://" + AUTH);
67 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1));
70 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar/1")), is(2));
73 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1));
74 assertThat(matcher.match(Uri.withAppendedPath(URI, "cat")), is(3));
77 assertThat(matcher.match(Uri.withAppendedPath(URI, "transport/land/45/type")), is(4));
82 assertThat(matcher.match(Uri.withAppendedPath(URI, "cat")), is(NO_MATCH));
83 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(NO_MATCH));
84 assertThat(matcher.match(Uri.withAppendedPath(URI, "ba
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DUrlUtilities.java11 import java.net.URI;
22 * URI schemes that ContentView can handle.
28 * URI schemes that Chrome can download.
34 * @param uri A URI.
36 * @return True if the URI's scheme is one that ContentView can handle.
38 public static boolean isAcceptedScheme(URI uri) {
43 * @param uri A URI.
45 * @return True if the URI's scheme is one that ContentView can handle.
49 return isAcceptedScheme(new URI(uri));
56 * @param uri A URI
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DGenericURI.java29 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 forma
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAlertInfo.java53 /** URI field
85 * @param uri URI to set
87 public void setAlertInfo(URI uri) {
101 * @return the URI representing the AlertInfo.
103 public URI getAlertInfo() {
104 URI alertInfoUri = null;
107 alertInfoUri = (URI) this.uri;
110 alertInfoUri = (URI) new GenericURI(string);
/external/chromium_org/third_party/libxslt/libxslt/
H A Ddocuments.h28 const xmlChar *URI);
37 const xmlChar *URI);
61 * @URI: the URI of the document to load
76 typedef xmlDocPtr (*xsltDocLoaderFunc) (const xmlChar *URI,
H A Dimports.c92 xmlChar *URI = NULL; local
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,
146 "xsl:import : unable to load %s\n", URI);
189 xmlChar *URI = NULL; local
[all...]
H A Ddocuments.c46 * @URI: the URI of the document to load
61 xsltDocDefaultLoaderFunc(const xmlChar * URI, xmlDictPtr dict, int options, argument
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) { argument
289 if ((ctxt == NULL) || (URI == NULL))
298 res = xsltCheckRead(ctxt->sec, ctxt, URI);
359 xsltLoadStyleDocument(xsltStylesheetPtr style, const xmlChar *URI) argument
[all...]
/external/nist-sip/java/javax/sip/header/
H A DAuthorizationHeader.java4 import javax.sip.address.URI;
39 URI getURI();
40 void setURI(URI uri);
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpGetRequestTest.java14 ByteArrayOutputStream outputStream = invokeServer("GET " + URI + " HTTP/1.1");
32 ByteArrayOutputStream outputStream = invokeServer("GET " + URI + " HTTP/1.1");
49 invokeServer("GET " + URI + " HTTP/1.1");
59 invokeServer("GET " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\n");
62 assertEquals(URI, testServer.uri);
69 invokeServer("GET " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\nAccept: " + accept);
76 invokeServer("GET " + URI + "?foo=bar HTTP/1.1");
82 invokeServer("GET " + URI + "?foo HTTP/1.1");
88 invokeServer("GET " + URI + "?foo=bar&baz=zot HTTP/1.1");
95 invokeServer("GET " + URI
[all...]
H A DHttpHeadRequestTest.java20 ByteArrayOutputStream outputStream = invokeServer("HEAD " + URI + " HTTP/1.1");
36 invokeServer("HEAD " + URI + " HTTP/1.1");
46 invokeServer("HEAD " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\n");
49 assertEquals(URI, testServer.uri);
56 invokeServer("HEAD " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\nAccept: " + accept);
63 invokeServer("HEAD " + URI + "?foo=bar HTTP/1.1");
69 invokeServer("HEAD " + URI + "?foo HTTP/1.1");
75 invokeServer("HEAD " + URI + "?foo=bar&baz=zot HTTP/1.1");
82 invokeServer("HEAD " + URI + "?foo=&baz=zot HTTP/1.1");
89 invokeServer("HEAD " + URI
[all...]
H A DHttpDeleteRequestTest.java17 ByteArrayOutputStream outputStream = invokeServer("DELETE " + URI + " HTTP/1.1");
35 ByteArrayOutputStream outputStream = invokeServer("DELETE " + URI + " HTTP/1.1");
53 ByteArrayOutputStream outputStream = invokeServer("DELETE " + URI + " HTTP/1.1");
71 ByteArrayOutputStream outputStream = invokeServer("DELETE " + URI + " HTTP/1.1");
90 ByteArrayOutputStream outputStream = invokeServer("DELETE " + URI + " HTTP/1.1");
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DURLEncodingTest.java25 import java.net.URI;
38 * Exercises HttpURLConnection to convert URL to a URI. Unlike URL#toURI,
39 * HttpURLConnection recovers from URLs with unescaped but unsupported URI
123 private URI backdoorUrlToUri(URL url) throws Exception {
124 final AtomicReference<URI> uriReference = new AtomicReference<URI>();
128 @Override public CacheRequest put(URI uri, URLConnection connection) throws IOException {
132 @Override public CacheResponse get(URI uri, String requestMethod,
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRedirectHandler.java34 import java.net.URI;
98 public URI getLocationURI(
117 URI uri;
119 uri = new URI(location);
121 throw new ProtocolException("Invalid redirect URI: " + location, ex);
125 // rfc2616 demands the location value be a complete URI
132 // Adjust location URI
144 URI requestURI = new URI(request.getRequestLine().getUri());
145 URI absoluteRequestUR
[all...]
H A DRequestWrapper.java34 import java.net.URI;
69 private URI uri;
81 // Make a copy of the original URI
89 this.uri = new URI(requestLine.getUri());
91 throw new ProtocolException("Invalid request URI: "
130 public URI getURI() {
134 public void setURI(final URI uri) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DHttpRedirect.java31 import java.net.URI;
49 public HttpRedirect(final String method, final URI uri) {
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpOptions.java34 import java.net.URI;
51 * identified by the Request-URI. This method allows the client to
75 public HttpOptions(final URI uri) {
85 setURI(URI.create(uri));
H A DHttpRequestBase.java35 import java.net.URI;
71 private URI uri;
86 public URI getURI() {
93 URI uri = getURI();
104 public void setURI(final URI uri) {
/external/smack/src/org/jivesoftware/smack/
H A DBOSHConfiguration.java23 import java.net.URI;
118 public URI getURI() throws URISyntaxException {
122 return new URI((ssl ? "https://" : "http://") + getHost() + ":" + getPort() + file);

Completed in 454 milliseconds

123456789