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

1 2

  /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...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URITest.java 30 private URI[] uris; field in class:URITest
33 if (uris != null) {
34 return uris;
37 uris = new URI[] {
83 return uris;
619 // test URIs with host names with different casing
625 // test URIs with one undefined component
631 // test URIs with one undefined component
728 // test URIs with empty string authority
734 // test URIs with port numbe
751 URI[] uris = getUris(); local
829 URI[] uris = getUris(); local
853 URI[] uris = getUris(); local
874 URI[] uris = getUris(); local
899 URI[] uris = getUris(); local
944 URI[] uris = getUris(); local
968 URI[] uris = getUris(); local
997 URI[] uris = getUris(); local
1023 URI[] uris = getUris(); local
1049 URI[] uris = getUris(); local
1077 URI[] uris = getUris(); local
1108 URI[] uris = getUris(); local
1135 URI[] uris = getUris(); local
1156 URI[] uris = getUris(); local
1189 URI[] uris = getUris(); local
1423 URI[] uris = null; local
1741 URI[] uris = getUris(); local
1792 URI[] uris = getUris(); local
    [all...]
  /external/webkit/WebCore/platform/gtk/
DataObjectGtk.cpp 55 Vector<KURL> uris(uriList());
58 for (size_t i = 0; i < uris.size(); i++) {
59 KURL& uri = uris[0];
71 Vector<KURL> uris(uriList());
72 for (size_t i = 0; i < uris.size(); i++) {
73 KURL& uri = uris[0];
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_failures.py 131 uris = [self.relative_output_filename(filename, fn) for
133 if len(uris) > 1:
134 links.append("<a href='%s'>expected</a>" % uris[1])
135 if len(uris) > 0:
136 links.append("<a href='%s'>actual</a>" % uris[0])
137 if len(uris) > 2:
138 links.append("<a href='%s'>diff</a>" % uris[2])
139 if len(uris) > 3:
140 links.append("<a href='%s'>wdiff</a>" % uris[3])
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
PlanTestTest.java 95 Collection<String> uris = new ArrayList<String>(1); local
96 uris.add("test-uri");
97 EasyMock.expect(mMockPlanParser.getTestUris()).andReturn(uris);
102 EasyMock.expect(mMockRepo.getTests(uris)).andReturn(tests);
  /external/bluetooth/glib/tests/
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...]
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);
  /development/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 102 protected ContactInfo doInBackground(Uri... uris) {
103 return mContactAccessor.loadContact(getContentResolver(), uris[0]);
  /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");
BluetoothOppManager.java 213 public void saveSendingFileInfo(String mimeType, ArrayList<Uri> uris) {
217 mUrisOfSendingFiles = uris;
329 String typeOfSingleFile, String uri, String typeOfMultipleFiles, ArrayList<Uri> uris) {
336 this.mUris = uris;
BluetoothOppUtility.java 126 ArrayList<String> uris = Lists.newArrayList(); local
146 uris.add(path.toString());
150 return uris;
  /system/media/opensles/tests/sandbox/
multithread.c 104 //const char * const uris[4] = {"wav/frog.wav", "wav/bach.wav", "wav/8days.wav", "wav/help16.wav"};
105 const char * const uris[4] = {"wav/frog.wav", "wav/frog.wav", "wav/frog.wav", "wav/frog.wav"}; variable
149 ta->mURI = (SLchar *) uris[(r >> 1) & 3];
  /packages/apps/Gallery3D/src/com/cooliris/media/
MediaFeed.java 547 // We need to eliminate duplicate uris in this array
548 final HashMap<String, String> uris = new HashMap<String, String>(); local
554 uris.put(uri, uri);
558 databaseUris = (String[]) uris.keySet().toArray(databaseUris);
938 String[] uris = new String[numObservers]; local
    [all...]
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...]
  /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...]
gappinfo.h 67 * @supports_uris: Indicates whether the application specified supports launching URIs.
69 * @launch_uris: Launches an application with a list of URIs.
107 GList *uris,
152 GList *uris,
gappinfo.c 39 * As of GLib 2.20, URIs will always be converted to POSIX paths
49 * unmodified to the application. Some URIs, such as
51 * path (in gvfs there's no FUSE mount for it); such URIs will be
84 * of a particular URIs. Different launcher applications (e.g. file
487 * Some URIs can be changed when passed through a GFile (for instance
488 * unsupported uris with strange formats like mailto:), so if you have
514 * Checks if the application supports reading files and directories from URIs.
516 * Returns: %TRUE if the @appinfo supports URIs.
555 * @uris: a #GList containing URIs to launch.
    [all...]
gwin32appinfo.c 330 GList *uris,
336 _("URIs not supported"));
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 161 private final static String XMLNS_URIs = FEATURES + "xmlns-uris";
195 uris = value;
224 return uris;
560 if (uris)
713 if (uris)
833 private boolean uris = false;
829 private boolean uris = false; field in class:ParserAdapter
  /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++]);
  /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...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 796 ArrayList<String> uris = local
2746 final ArrayList<Parcelable> uris = extras.getParcelableArrayList(Intent.EXTRA_STREAM); local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java     [all...]

Completed in 701 milliseconds

1 2