Searched defs:uris (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/nfc/
H A DBeamShareData.java17 public final Uri[] uris; field in class:BeamShareData
21 public BeamShareData(NdefMessage msg, Uri[] uris, UserHandle userHandle, int flags) { argument
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];
54 source.readTypedArray(uris, Ur
[all...]
H A DNfcActivityManager.java116 Uri[] uris = null; field in class:NfcActivityManager.NfcActivityState
143 uris = null;
152 if (uris != null) {
153 for (Uri uri : uris) {
247 public void setNdefPushContentUri(Activity activity, Uri[] uris) { argument
251 state.uris = uris;
360 Uri[] uris;
370 uris = state.uris;
[all...]
H A DNfcAdapter.java863 * @param uris an array of Uri(s) to push over Android Beam
867 public void setBeamPushUris(Uri[] uris, Activity activity) { argument
876 if (uris != null) {
877 for (Uri uri : uris) {
888 mNfcActivityManager.setNdefPushContentUri(activity, uris);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsConnectionStateListener.java90 public void registrationAssociatedUriChanged(Uri[] uris) { argument
H A DImsManager.java1613 public void registrationAssociatedUriChanged(Uri[] uris) { argument
1617 mListener.registrationAssociatedUriChanged(uris);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DQuickViewIntentBuilder.java85 final ArrayList<Uri> uris = new ArrayList<Uri>();
86 final int documentLocation = collectViewableUris(uris);
87 final Range<Integer> range = computeSiblingsRange(uris, documentLocation);
93 uri = uris.get(i);
105 // The documentLocation variable contains an index in "uris". However,
106 // ClipData contains a slice of "uris", so we need to shift the location
130 private int collectViewableUris(ArrayList<Uri> uris) { argument
132 uris.ensureCapacity(siblingIds.length);
164 uris.add(uri);
167 documentLocation = uris
175 computeSiblingsRange(List<Uri> uris, int documentLocation) argument
[all...]
H A DDocumentsActivity.java344 final Uri[] uris = new Uri[size];
346 uris[i] = docs.get(i).derivedUri;
348 new ExistingFinishTask(this, uris)
391 void onTaskFinished(Uri... uris) { argument
392 if (DEBUG) Log.d(TAG, "onFinished() " + Arrays.toString(uris));
395 if (uris.length == 1) {
396 intent.setData(uris[0]);
397 } else if (uris.length > 1) {
399 null, mState.acceptMimes, new ClipData.Item(uris[0]));
400 for (int i = 1; i < uris
523 ExistingFinishTask(DocumentsActivity activity, Uri... uris) argument
[all...]
H A DFilesActivity.java445 void onTaskFinished(Uri... uris) { argument
446 if (DEBUG) Log.d(TAG, "onFinished() " + Arrays.toString(uris));
449 if (uris.length == 1) {
450 intent.setData(uris[0]);
451 } else if (uris.length > 1) {
453 null, mState.acceptMimes, new ClipData.Item(uris[0]));
454 for (int i = 1; i < uris.length; i++) {
455 clipData.addItem(new ClipData.Item(uris[i]));
H A DBaseActivity.java98 abstract void onTaskFinished(Uri... uris); argument
/frameworks/wilhelm/tests/sandbox/
H A Dmultithread.c102 //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];
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java844 * @param uris The array of used uris.
847 public String getHtml(ArrayList<Uri> uris, boolean escapeFlag) { argument
848 mConverter.getUriArray(uris, getText());
1906 public void getUriArray(ArrayList<Uri> uris, Editable text) { argument
1907 uris.clear();
1920 uris.add(Uri.parse(images[j].getSource()));

Completed in 212 milliseconds