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

1 2 3 4 5 6 7 8 91011>>

  /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/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/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);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ITestCaseRepo.java 29 * Gets a list of tests identified by given list of uris
31 * @param testUris the string uris
IPlanXmlParser.java 37 * Gets the list of test uris parsed from the plan.
  /frameworks/base/core/java/android/provider/
OpenableColumns.java 20 * These are standard columns for openable URIs. (See
21 * {@link android.content.Intent#CATEGORY_OPENABLE}.) If possible providers that have openable URIs
  /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/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);
PlanXmlParserTest.java 42 * Simple test for parsing a plan containing two uris
49 // assert uris in order
  /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...]
  /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");
  /libcore/luni/src/main/java/java/net/
CookieStore.java 75 * Get a set of URIs, which is composed of associated URI with all the
79 * URIs, otherwise an immutable list of URIs.
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PCalledPartyIDHeader.java 44 * so both URIs can receive invitations to new sessions. When the user receives an invitation
45 * to join a session, he/she should be aware of which of the several registered SIP URIs this
  /libcore/luni/src/main/java/org/xml/sax/
package.html 19 Since features are identified by (absolute) URIs, anyone
21 Currently defined standard feature URIs have the prefix
77 <td> A value of "true" indicates namespace URIs and unprefixed local names
92 <td>resolve-dtd-uris</td>
96 be absolutized (relative to their base URIs) before reporting.
119 as well as Namespace URIs, will have been interned
188 <td>xmlns-uris</td>
233 the standard property URIs have the prefix
  /external/bluetooth/glib/gio/
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...]
  /external/webkit/LayoutTests/http/tests/appcache/
cyrillic-uri-expected.txt 1 Test that non-ASCII URIs work correctly in cache manifests.
  /external/chromium/net/proxy/
proxy_server_unittest.cc 22 // HTTP proxy URIs:
51 // IPv6 HTTP proxy URIs:
89 // SOCKS4 proxy URIs:
109 // SOCKS5 proxy URIs
129 // SOCKS proxy URIs (should default to SOCKS4)
  /cts/tests/tests/net/src/android/net/cts/
UriTest.java 518 notes = "Test hierarchical uris.",
524 notes = "Test hierarchical uris.",
530 notes = "Test hierarchical uris.",
536 notes = "Test hierarchical uris.",
542 notes = "Test hierarchical uris.",
548 notes = "Test hierarchical uris.",
554 notes = "Test hierarchical uris.",
560 notes = "Test hierarchical uris.",
566 notes = "Test hierarchical uris.",
572 notes = "Test hierarchical uris."
    [all...]
  /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...]
  /development/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 102 protected ContactInfo doInBackground(Uri... uris) {
103 return mContactAccessor.loadContact(getContentResolver(), uris[0]);
  /frameworks/base/services/java/com/android/server/am/
UriPermissionOwner.java 33 HashSet<UriPermission> readUriPermissions; // special access to reading uris.
34 HashSet<UriPermission> writeUriPermissions; // special access to writing uris.
  /frameworks/base/core/java/android/content/
ContentUris.java 30 * <p>This supports a common convention for content URIs where an ID is

Completed in 729 milliseconds

1 2 3 4 5 6 7 8 91011>>