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

/frameworks/base/core/java/android/nfc/
H A DBeamShareData.java16 public final Uri[] uris; field in class:BeamShareData
19 public BeamShareData(NdefMessage msg, Uri[] uris, int flags) { argument
21 this.uris = uris;
32 int urisLength = (uris != null) ? uris.length : 0;
36 dest.writeTypedArray(uris, 0);
45 Uri[] uris = null;
49 uris = new Uri[numUris];
50 source.readTypedArray(uris, Ur
[all...]
H A DNfcActivityManager.java114 Uri[] uris = null; field in class:NfcActivityManager.NfcActivityState
141 uris = null;
150 if (uris != null) {
151 for (Uri uri : uris) {
246 public void setNdefPushContentUri(Activity activity, Uri[] uris) { argument
250 state.uris = uris;
330 Uri[] uris;
339 uris = state.uris;
[all...]
H A DNfcAdapter.java732 * @param uris an array of Uri(s) to push over Android Beam
735 public void setBeamPushUris(Uri[] uris, Activity activity) { argument
739 if (uris != null) {
740 for (Uri uri : uris) {
751 mNfcActivityManager.setNdefPushContentUri(activity, uris);
/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/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java980 final Uri[] uris = new Uri[size];
982 uris[i] = docs.get(i).derivedUri;
984 new ExistingFinishTask(uris).executeOnExecutor(getCurrentExecutor());
1017 private void onFinished(Uri... uris) { argument
1018 Log.d(TAG, "onFinished() " + Arrays.toString(uris));
1021 if (uris.length == 1) {
1022 intent.setData(uris[0]);
1023 } else if (uris.length > 1) {
1025 null, mState.acceptMimes, new ClipData.Item(uris[0]));
1026 for (int i = 1; i < uris
1092 ExistingFinishTask(Uri... uris) argument
[all...]
/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 128 milliseconds