HomeSort by relevance Sort by last modified time
    Searched refs:uris (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.cc 364 gchar** uris = reinterpret_cast<gchar**>(malloc(sizeof(gchar*) * local
373 uris[i] = const_cast<gchar*>(url.spec().c_str());
375 uris[nodes.size()] = NULL;
377 gtk_selection_data_set_uris(selection_data, uris);
378 free(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/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 262 public void saveSendingFileInfo(String mimeType, ArrayList<Uri> uris, boolean isHandover) {
266 mUrisOfSendingFiles = uris;
268 for (Uri uri : uris) {
387 ArrayList<Uri> uris, boolean handoverInitiated) {
394 this.mUris = uris;
BluetoothOppUtility.java 136 ArrayList<String> uris = Lists.newArrayList(); local
156 uris.add(path.toString());
160 return uris;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DocumentsActivity.java 989 final Uri[] uris = new Uri[size]; local
    [all...]
DirectoryFragment.java 554 final ArrayList<Uri> uris = Lists.newArrayList(); local
557 uris.add(doc.derivedUri);
561 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
MailPhotoViewActivity.java 375 ArrayList<Parcelable> uris = new ArrayList<Parcelable>(); local
378 uris.add(Utils.normalizeUri(new Attachment(cursor).contentUri));
381 mActionHandler.shareAttachments(uris);
  /frameworks/base/core/java/android/nfc/
NfcAdapter.java 694 * If multiple URIs are sent, the {@link android.content.Intent} will refer
738 * @param uris an array of Uri(s) to push over Android Beam
741 public void setBeamPushUris(Uri[] uris, Activity activity) {
745 if (uris != null) {
746 for (Uri uri : uris) {
757 mNfcActivityManager.setNdefPushContentUri(activity, uris);
774 * If multiple URIs are sent, the {@link android.content.Intent} will refer
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentActionHandler.java 223 public void shareAttachments(ArrayList<Parcelable> uris) {
230 Intent.EXTRA_STREAM, uris);
  /packages/apps/Nfc/src/com/android/nfc/
P2pLinkManager.java 434 mUrisToSend = shareData.uris;
709 int doHandover(Uri[] uris) throws IOException {
729 mHandoverManager.doHandoverUri(uris, response);
745 Uri[] uris; local
753 uris = mUrisToSend;
761 if (uris != null) {
764 int handoverResult = doHandover(uris);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentResolver.java 307 List<Uri> uris = new ArrayList<Uri>();
309 uris.add(deleteStatement.getUri());
311 return uris;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
VCardService.java 203 final ArrayList<String> uris = new ArrayList<String>(); local
206 uris.add(request.uri.toString());
211 uris.toString(), displayNames.toString()));
ImportVCardActivity.java 262 // Uris given from caller applications may not be opened twice: consider when
431 * app local storage, as we cannot guarantee other types of Uris can be read
750 final Uri[] uris = new Uri[length]; local
752 uris[i] = Uri.parse(uriStrings[i]);
754 importVCard(uris);
757 private void importVCard(final Uri[] uris) {
762 mVCardCacheThread = new VCardCacheThread(uris);
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverManager.java 429 public void doHandoverUri(Uri[] uris, NdefMessage m) {
437 PendingHandoverTransfer transfer = registerOutTransferLocked(data, uris);
457 Uri[] uris) {
459 mHandoverTransferId++, false, data.device, data.carrierActivating, uris);
HandoverTransfer.java 58 * The corresponding URIs will be grouped in a single folder.
114 ArrayList<Uri> mBtUris; // Received uris from Bluetooth OPP
119 HashMap<String, Uri> mMediaUris; // URIs found by the media scanner for each path
130 mTotalCount = (pendingTransfer.uris != null) ? pendingTransfer.uris.length : 0;
318 Log.e(TAG, "Media storage not valid or no uris received.");
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsActor.java 215 public void addUriPermissions(Uri... uris) {
216 mGrantedUriPermissions.addAll(Arrays.asList(uris));
219 public void removeUriPermissions(Uri... uris) {
220 mGrantedUriPermissions.removeAll(Arrays.asList(uris));
  /external/chromium_org/third_party/libjingle/source/talk/examples/ios/AppRTCDemo/
APPRTCAppClient.m 211 NSArray* uris = json[@"uris"];
212 for (int i = 0; i < [uris count]; ++i) {
213 NSString *turnServer = [uris objectAtIndex:i];
  /packages/apps/Mms/src/com/android/mms/data/
Contact.java 172 public static List<Contact> getByPhoneUris(Parcelable[] uris) {
173 return sContactCache.getContactInfoForPhoneUris(uris);
609 * Get CacheEntry list for given phone URIs. This method will do single one query to
610 * get expected contacts from provider. Be sure passed in URIs are not null and contains
611 * only valid URIs.
613 public List<Contact> getContactInfoForPhoneUris(Parcelable[] uris) {
614 if (uris.length == 0) {
619 for (Parcelable p : uris) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TabbedEditorContainer.js 126 var uris = this._history._urls();
127 for (var i = 0; i < uris.length; ++i) {
128 var uiSourceCode = uriToUISourceCode[uris[i]];
  /external/chromium/chrome/browser/resources/shared/js/
util.js 48 // http://www.w3.org/TR/css3-values/#uris
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/
util.js 45 // http://www.w3.org/TR/css3-values/#uris
  /packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java 390 * Returns the list of URIs to show.
392 * There are two ways the URIs can be provided to the activity: as the data on the intent, or as
404 Uri[] uris = new Uri[ids.length]; local
406 uris[index] = ContentUris.withAppendedId(Calls.CONTENT_URI_WITH_VOICEMAIL, ids[index]);
408 return uris;
432 * @param callUris URIs into {@link CallLog.Calls} of the calls to be displayed
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 975 ArrayList<String> uris = local
3037 final Parcelable[] uris = local
3275 final ArrayList<Parcelable> uris = extras.getParcelableArrayList(Intent.EXTRA_STREAM); local
3400 Uri[] uris = new Uri[contacts.size()]; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java 180 final TreeSet<String> uris = new TreeSet<String>(); local
191 uris.add(metadataUri);
197 for (final String metadataUri : uris) {
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java     [all...]

Completed in 861 milliseconds

12 3 4