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

1 2 3

  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 39 * A collection of URIs that were used as redirects.
48 private final Set<URI> uris; field in class:RedirectLocations
52 this.uris = new HashSet<URI>();
59 return this.uris.contains(uri);
66 this.uris.add(uri);
73 return this.uris.remove(uri);
  /frameworks/base/core/java/android/nfc/
BeamShareData.java 10 * Allows bundling NdefMessage, Uris and flags in a single
17 public final Uri[] uris; field in class:BeamShareData
21 public BeamShareData(NdefMessage msg, Uri[] uris, UserHandle userHandle, int flags) {
23 this.uris = uris;
35 int urisLength = (uris != null) ? uris.length : 0;
39 dest.writeTypedArray(uris, 0);
49 Uri[] uris = null;
53 uris = new Uri[numUris]
    [all...]
NfcActivityManager.java 117 Uri[] uris = null; field in class:NfcActivityManager.NfcActivityState
144 uris = null;
153 if (uris != null) {
154 for (Uri uri : uris) {
249 public void setNdefPushContentUri(Activity activity, Uri[] uris) {
253 state.uris = uris;
362 Uri[] uris; local
371 uris = state.uris;
    [all...]
  /frameworks/webview/chromium/java/com/android/webview/chromium/
FileChooserParamsAdapter.java 37 Uri[] uris = null; local
39 uris = new Uri[1];
40 uris[0] = result;
42 return uris;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppHandoverReceiver.java 58 ArrayList<Uri> uris = new ArrayList<Uri>(); local
60 uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
61 if (mimeType != null && uris != null) {
63 uris, true);
BluetoothOppLauncherActivity.java 152 final ArrayList<Uri> uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM); local
153 if (mimeType != null && uris != null) {
154 if (V) Log.v(TAG, "Get ACTION_SHARE_MULTIPLE intent: uris " + uris + "\n Type= "
159 .saveSendingFileInfo(mimeType,uris, false);
169 Log.e(TAG, "type is null; or sending files URIs are null");
BluetoothOppUtility.java 136 ArrayList<String> uris = Lists.newArrayList(); local
156 uris.add(path.toString());
160 return uris;
  /packages/apps/Nfc/src/com/android/nfc/beam/
BeamTransferRecord.java 30 public Uri[] uris; field in class:BeamTransferRecord
38 boolean remoteActivating, Uri[] uris) {
42 this.uris = uris;
49 Uri[] uris) {
50 return new BeamTransferRecord(remoteDevice, remoteActivating, uris);
66 Uri[] uris = null;
68 uris = new Uri[numUris];
69 in.readTypedArray(uris, Uri.CREATOR);
73 remoteActivating, uris);
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
ObserverNodeTest.java 41 Uri[] uris = new Uri[] { local
55 root.addObserverLocked(uris[0], new TestObserver().getContentObserver(), false, root,
57 for(int i = 1; i < uris.length; i++) {
58 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), true, root,
65 root.collectObserversLocked(uris[i], 0, null, false, myUserHandle, calls);
75 Uri[] uris = new Uri[] { local
87 for(int i = 0; i < uris.length; i++) {
88 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), false, root,
94 for (int i = uris.length - 1; i >=0; --i) {
95 root.collectObserversLocked(uris[i], 0, null, false, myUserHandle, calls)
    [all...]
  /frameworks/wilhelm/tests/sandbox/
multithread.c 102 //const char * const uris[4] = {"wav/frog.wav", "wav/bach.wav", "wav/8days.wav", "wav/help16.wav"};
103 const char * const uris[4] = {"wav/frog.wav", "wav/frog.wav", "wav/frog.wav", "wav/frog.wav"}; variable
147 ta->mURI = (SLchar *) uris[(r >> 1) & 3];
  /packages/apps/Browser/src/com/android/browser/
UploadHandler.java 61 Uri[] uris; local
64 uris = parseResult(resultCode, intent);
65 mUploadMessage.onReceiveValue(uris);
111 Uri[] uris = null; local
113 uris = new Uri[1];
114 uris[0] = result;
116 return uris;
  /packages/apps/Nfc/src/com/android/nfc/
BeamShareActivity.java 171 final ArrayList<Uri> uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM); local
175 if (uris != null && uris.size() > 0) {
176 for (Uri uri : uris) {
193 // Uris have our first preference for sharing
210 // No uris left
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ActionModeHandler.java 311 private void setNfcBeamPushUris(Uri[] uris) {
314 mNfcAdapter.setBeamPushUris(uris, mActivity);
325 final ArrayList<Uri> uris = new ArrayList<Uri>(); local
330 uris.add(manager.getContentUri(path));
333 final int size = uris.size();
338 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
342 intent.putExtra(Intent.EXTRA_STREAM, uris.get(0));
356 final ArrayList<Uri> uris = new ArrayList<Uri>(); local
366 uris.add(manager.getContentUri(path));
370 final int size = uris.size()
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ProviderBookmarksUriTest.java 112 Uri[] uris = new Uri[2]; local
114 for (int i = 0; i < uris.length; i++) {
115 uris[i] = addBookmark(url[i], title[i], lastUpdateTime[i], createdTime[i], visits[i],
117 assertNotNull(uris[i]);
246 Uri[] uris = new Uri[2]; local
248 for (int i = 0; i < uris.length; i++) {
249 uris[i] = addBookmark(url[i], title[i], lastUpdateTime[i], createdTime[i], visits[i],
251 assertNotNull(uris[i]);
259 Cursor cursor = getContentResolver().query(uris[0], null, null, null, null);
262 cursor = getContentResolver().query(uris[1], null, null, null, null)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportProcessor.java 195 List<Uri> uris = committer.getCreatedUris(); local
197 if (uris != null && uris.size() == 1) {
198 mListener.onImportFinished(mImportRequest, mJobId, uris.get(0));
200 if (uris == null || uris.size() == 0) {
202 Log.w(LOG_TAG, "Created Uris is null or 0 length " +
VCardService.java 204 final ArrayList<String> uris = new ArrayList<String>(); local
207 uris.add(request.uri.toString());
212 uris.toString(), displayNames.toString()));
ImportVCardActivity.java 260 // Uris given from caller applications may not be opened twice: consider when
429 * app local storage, as we cannot guarantee other types of Uris can be read
748 final Uri[] uris = new Uri[length]; local
750 uris[i] = Uri.parse(uriStrings[i]);
752 importVCard(uris);
755 private void importVCard(final Uri[] uris) {
760 mVCardCacheThread = new VCardCacheThread(uris);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SecureConversationViewFragment.java 215 final HashSet<Uri> uris = new HashSet<Uri>(); local
216 uris.add(message.uri);
217 activity.getConversationUpdater().markConversationMessagesUnread(mConversation, uris,
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 159 private static final String XMLNS_URIs = FEATURES + "xmlns-uris";
193 uris = value;
222 return uris;
556 if (uris)
710 if (uris)
830 private boolean uris = false;
826 private boolean uris = false; field in class:ParserAdapter
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
MailPhotoViewController.java 385 ArrayList<Parcelable> uris = new ArrayList<Parcelable>(); local
388 uris.add(Utils.normalizeUri(new Attachment(cursor).contentUri));
391 mActionHandler.shareAttachments(uris);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
URITest.java 28 private URI[] uris; field in class:URITest
31 if (uris != null) {
32 return uris;
35 uris = new URI[] {
81 return uris;
617 // test URIs with host names with different casing
623 // test URIs with one undefined component
629 // test URIs with one undefined component
726 // test URIs with empty string authority
732 // test URIs with port numbe
749 URI[] uris = getUris(); local
827 URI[] uris = getUris(); local
851 URI[] uris = getUris(); local
872 URI[] uris = getUris(); local
897 URI[] uris = getUris(); local
942 URI[] uris = getUris(); local
966 URI[] uris = getUris(); local
995 URI[] uris = getUris(); local
1021 URI[] uris = getUris(); local
1047 URI[] uris = getUris(); local
1075 URI[] uris = getUris(); local
1106 URI[] uris = getUris(); local
1133 URI[] uris = getUris(); local
1154 URI[] uris = getUris(); local
1187 URI[] uris = getUris(); local
1433 URI[] uris = null; local
1723 URI[] uris = getUris(); local
1774 URI[] uris = getUris(); local
    [all...]
  /external/fio/
gfio.c 1649 gchar **uris; local
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryFragment.java 571 final ArrayList<Uri> uris = Lists.newArrayList(); local
574 uris.add(doc.derivedUri);
578 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
    [all...]
DocumentsActivity.java 1026 final Uri[] uris = new Uri[size]; local
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java 336 * Returns the list of URIs to show.
338 * There are two ways the URIs can be provided to the activity: as the data on the intent, or as
351 final Uri[] uris = new Uri[numIds]; local
353 uris[index] = ContentUris.withAppendedId(Calls.CONTENT_URI_WITH_VOICEMAIL, ids[index]);
355 return uris;
380 * @param callUris URIs into {@link android.provider.CallLog.Calls} of the calls to be displayed
    [all...]

Completed in 546 milliseconds

1 2 3