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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCICEServer.h 33 // The server URI, username, and password.
34 @property(nonatomic, strong, readonly) NSURL* URI;
38 // Initializer for RTCICEServer taking uri and password.
39 - (id)initWithURI:(NSString*)URI
  /external/nist-sip/java/javax/sip/address/
URI.java 5 public interface URI extends Cloneable, Serializable {
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DeletedContactUtil.java 24 import android.net.Uri;
33 private static final Uri URI = DeletedContacts.CONTENT_URI;
39 Uri uri = ContentUris.withAppendedId(URI, contactId); local
40 Cursor cursor = resolver.query(uri, projection, null, null, null);
51 Cursor cursor = resolver.query(URI, projection, null, null, null);
65 Cursor cursor = resolver.query(URI, projection, null, null, null);
78 Cursor cursor = resolver.query(URI, projection, selection, args, null)
    [all...]
ContactUtil.java 23 import android.net.Uri;
31 private static final Uri URI = ContactsContract.Contacts.CONTENT_URI;
35 Uri uri = ContentUris.withAppendedId(URI, contactId); local
36 resolver.update(uri, values, null, null);
40 Uri uri = ContentUris.withAppendedId(URI, contactId) local
48 Uri uri = ContentUris.withAppendedId(URI, contactId); local
61 Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId); local
    [all...]
DataUtil.java 25 import android.net.Uri;
33 private static final Uri URI = ContactsContract.Data.CONTENT_URI;
36 Uri uri = ContentUris.withAppendedId(URI, dataId); local
37 Cursor cursor = resolver.query(uri, projection, null, null, null);
74 Uri uri = resolver.insert(URI, newValues) local
79 Uri uri = ContentUris.withAppendedId(URI, dataId); local
84 Uri uri = ContentUris.withAppendedId(URI, dataId); 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));
HttpOptions.java 34 import java.net.URI;
51 * identified by the Request-URI. This method allows the client to
70 public HttpOptions(final URI uri) {
72 setURI(uri);
76 * @throws IllegalArgumentException if the uri is invalid.
78 public HttpOptions(final String uri) {
80 setURI(URI.create(uri));
  /frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
PhotoContract.java 20 import android.net.Uri;
27 * This column is a {@link Uri} that can be queried
30 public static final String URI = "uri";
37 * This column is a {@link Uri} that points to the downloaded local file.
42 * This column is a {@link Uri} that points to a thumbnail of the image
61 PhotoViewColumns.URI,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
DeletedContactUtil.java 24 import android.net.Uri;
33 private static final Uri URI = DeletedContacts.CONTENT_URI;
39 Uri uri = ContentUris.withAppendedId(URI, contactId); local
40 Cursor cursor = resolver.query(uri, projection, null, null, null);
51 Cursor cursor = resolver.query(URI, projection, null, null, null);
65 Cursor cursor = resolver.query(URI, projection, null, null, null);
78 Cursor cursor = resolver.query(URI, projection, selection, args, null)
    [all...]
ContactUtil.java 23 import android.net.Uri;
31 private static final Uri URI = ContactsContract.Contacts.CONTENT_URI;
35 Uri uri = ContentUris.withAppendedId(URI, contactId); local
36 resolver.update(uri, values, null, null);
40 Uri uri = ContentUris.withAppendedId(URI, contactId) local
48 Uri uri = ContentUris.withAppendedId(URI, contactId); local
61 Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId); local
    [all...]
DataUtil.java 22 import android.net.Uri;
31 private static final Uri URI = ContactsContract.Data.CONTENT_URI;
34 Uri uri = ContentUris.withAppendedId(URI, dataId); local
35 resolver.delete(uri, null, null);
39 Uri uri = ContentUris.withAppendedId(URI, dataId) local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentUrisTest.java 4 import android.net.Uri;
15 Uri URI;
19 URI = Uri.parse("content://foo.com");
23 assertThat(ContentUris.withAppendedId(URI, 1),
24 is(Uri.parse("content://foo.com/1")));
33 assertThat(ContentUris.parseId(Uri.withAppendedPath(URI, "1")), is(1L));
34 assertThat(ContentUris.parseId(URI), is(-1L))
    [all...]
ContentProviderOperationTest.java 12 import android.net.Uri;
22 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);
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
EqualsHashCodeBenchmark.java 21 import java.net.URI;
26 URI() {
28 return new URI(text);
49 b1 = type.newInstance("http://developer.android.com/reference/java/net/URI.html");
50 b2 = type.newInstance("http://developer.android.com/reference/java/net/URI.html");
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 272 URI.AUTHORITY_ENCODER.appendPartiallyEncoded(result, authority);
281 URI.FILE_AND_QUERY_ENCODER.appendPartiallyEncoded(result, fileAndQuery);
291 URI.ALL_LEGAL_ENCODER.appendPartiallyEncoded(result, ref);
  /external/chromium_org/third_party/libxslt/libxslt/
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...]
namespaces.c 45 #include <libxml/uri.h>
108 * "If a namespace URI is declared to be an alias for multiple
179 * Same target namespace URI for multiple different aliases:
652 const xmlChar *URI = NULL; /* the replacement URI */
660 URI = (const xmlChar *)
662 if (URI != NULL)
669 if (URI == UNDEFINED_DEFAULT_NS) {
680 URI = dflt->href;
684 } else if (URI == NULL
    [all...]
  /external/libxslt/libxslt/
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...]
namespaces.c 45 #include <libxml/uri.h>
108 * "If a namespace URI is declared to be an alias for multiple
179 * Same target namespace URI for multiple different aliases:
652 const xmlChar *URI = NULL; /* the replacement URI */
660 URI = (const xmlChar *)
662 if (URI != NULL)
669 if (URI == UNDEFINED_DEFAULT_NS) {
680 URI = dflt->href;
684 } else if (URI == NULL
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 49 private static String URI = ParameterNames.URI;
110 if (nameValue.getName().compareToIgnoreCase(URI) == 0)

Completed in 158 milliseconds

1 2 3 4 5 6 7