HomeSort by relevance Sort by last modified time
    Searched defs:uris (Results 1 - 17 of 17) sorted by null

  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 39 * A collection of URIs that were used as redirects.
43 private final Set<URI> uris; field in class:RedirectLocations
47 this.uris = new HashSet<URI>();
54 return this.uris.contains(uri);
61 this.uris.add(uri);
68 return this.uris.remove(uri);
  /frameworks/base/core/tests/coretests/src/android/content/
ObserverNodeTest.java 37 Uri[] uris = new Uri[] { local
51 root.addObserverLocked(uris[0], new TestObserver().getContentObserver(), false, root);
52 for(int i = 1; i < uris.length; i++) {
53 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), true, root);
59 root.collectObserversLocked(uris[i], 0, null, false, calls);
67 Uri[] uris = new Uri[] { local
79 for(int i = 0; i < uris.length; i++) {
80 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), false, root);
85 for (int i = uris.length - 1; i >=0; --i) {
86 root.collectObserversLocked(uris[i], 0, null, false, calls)
    [all...]
  /external/bluetooth/glib/tests/
bookmarkfile-test.c 40 gchar **uris; local
45 uris = g_bookmark_file_get_uris (bookmark, &uris_len);
55 if (!g_bookmark_file_has_item (bookmark, uris[i]))
57 g_print ("URI/bookmark mismatch: bookmark for '%s' does not exist\n", uris[i]);
62 g_strfreev (uris);
uri-test.c 145 /* URIs with backslashes come from some nonstandard application, but accept them anyhow */
419 gchar **uris; local
422 uris = g_uri_list_extract_uris (list);
424 if (g_strv_length (uris) != 3)
427 " expected %d uris, but got %d\n",
428 3, g_strv_length (uris));
434 if (safe_strcmp (uris[j], expected_uris[j]))
438 expected_uris[j], uris[j]);
443 g_strfreev (uris);
445 uris = g_uri_list_extract_uris ("# just hot air\r\n# more hot air")
    [all...]
  /external/bluetooth/glib/gio/tests/
g-file.c 52 const char *uris[] = {"file:///", local
70 while (uris[i])
72 file = g_file_new_for_uri (uris[i++]);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 107 ArrayList<Uri> uris = new ArrayList<Uri>(); local
109 uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
110 if (mimeType != null && uris != null) {
111 if (V) Log.v(TAG, "Get ACTION_SHARE_MULTIPLE intent: uris " + uris + "\n Type= "
113 BluetoothOppManager.getInstance(this).saveSendingFileInfo(mimeType, uris);
115 Log.e(TAG, "type is null; or sending files URIs are null");
BluetoothOppUtility.java 126 ArrayList<String> uris = Lists.newArrayList(); local
146 uris.add(path.toString());
150 return uris;
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
URITest.java 34 private URI[] uris; field in class:URITest
103 if (uris != null) {
104 return uris;
107 uris = new URI[] {
153 return uris;
668 // test URIs with host names with different casing
674 // test URIs with one undefined component
680 // test URIs with one undefined component
842 URI[] uris = getUris(); local
932 URI[] uris = getUris(); local
962 URI[] uris = getUris(); local
989 URI[] uris = getUris(); local
1020 URI[] uris = getUris(); local
1077 URI[] uris = getUris(); local
1107 URI[] uris = getUris(); local
1142 URI[] uris = getUris(); local
1174 URI[] uris = getUris(); local
1206 URI[] uris = getUris(); local
1240 URI[] uris = getUris(); local
1277 URI[] uris = getUris(); local
1310 URI[] uris = getUris(); local
1337 URI[] uris = getUris(); local
1376 URI[] uris = getUris(); local
1652 URI[] uris = null; local
2053 URI[] uris = getUris(); local
2110 URI[] uris = getUris(); local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 163 private final static String XMLNS_URIs = FEATURES + "xmlns-uris";
197 uris = value;
226 return uris;
562 if (uris)
715 if (uris)
835 private boolean uris = false;
831 private boolean uris = false; field in class:ParserAdapter
  /packages/apps/Gallery3D/src/com/cooliris/media/
HudLayer.java 690 ArrayList<Uri> uris = new ArrayList<Uri>(); local
729 uris.add(uri);
735 if (uris.size() != 0) {
746 for (int i = 0, size = uris.size(); i < size; ++i) {
747 builder.append(uris.get(i));
754 if (uris.size() == 1) {
756 intent.putExtra(Intent.EXTRA_STREAM, uris.get(0));
759 intent.putExtra(Intent.EXTRA_STREAM, uris);
    [all...]
MediaFeed.java 535 // We need to eliminate duplicate uris in this array
536 final HashMap<String, String> uris = new HashMap<String, String>(); local
542 uris.put(uri, uri);
546 databaseUris = (String[]) uris.keySet().toArray(databaseUris);
926 String[] uris = new String[numObservers]; local
    [all...]
  /external/bluetooth/glib/glib/
gconvert.c 1978 GSList *uris, *u; local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
EditStyledText.java 457 * @param uris
458 * The array of used uris.
461 public String getHtml(ArrayList<Uri> uris) {
462 mConverter.getUriArray(uris, getText());
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
FileTest.java 288 // invalid file URIs
289 String[] uris = new String[] { "mailto:user@domain.com", // not local
298 for (int i = 0; i < uris.length; i++) {
300 uri = new URI(uris[i]);
    [all...]
  /external/bluetooth/glib/gio/
gdesktopappinfo.c 567 GList *uris = *uri_list; local
605 if (uris)
607 uri = uris->data;
626 uris = uris->next;
635 while (uris)
637 uri = uris->data;
658 uris = uris->next;
660 if (uris != NULL && expanded
1111 GList *uris; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 781 ArrayList<String> uris local
2714 final ArrayList<Parcelable> uris = extras.getParcelableArrayList(Intent.EXTRA_STREAM); local
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1795 milliseconds