HomeSort by relevance Sort by last modified time
    Searched refs:vCard (Results 1 - 5 of 5) sorted by null

  /external/smack/src/org/jivesoftware/smackx/provider/
VCardProvider.java 26 import org.jivesoftware.smackx.packet.VCard;
39 * vCard provider.
68 if (event == XmlPullParser.END_TAG && "vCard".equals(parser.getName())) break;
85 * Builds a users vCard from xml file.
87 * @param xml the xml representing a users vCard.
88 * @return the VCard.
91 public static VCard createVCardFromXML(String xml) throws Exception {
92 VCard vCard = new VCard();
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
VCard.java 48 * A VCard class for use with the
55 * information in vCards. Also remember that VCard transfer is not a standard, and the protocol
61 * // To save VCard:
63 * VCard vCard = new VCard();
64 * vCard.setFirstName("kir");
65 * vCard.setLastName("max");
66 * vCard.setEmailHome("foo@fee.bar");
67 * vCard.setJabberId("jabber@id.org")
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessage.java 59 private ArrayList<vCard> mOriginator = null;
60 private ArrayList<vCard> mRecipient = null;
63 public static class vCard {
64 /* VCARD attributes */
73 * Construct a version 3.0 vCard
80 public vCard(String name, String formattedName, String[] phoneNumbers,
92 * Construct a version 2.1 vCard
98 public vCard(String name, String[] phoneNumbers,
109 * Construct a version 3.0 vCard
115 public vCard(String name, String formattedName, String[] phoneNumbers, String[] emailAddresses)
    [all...]
BluetoothMapContentObserver.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 53 import com.android.vcard.VCardComposer;
54 import com.android.vcard.VCardConfig;
55 import com.android.vcard.VCardPhoneNumberTranslationCallback;
111 * Create an owner vcard from the configured profile
116 // Currently only support Generic Vcard 2.1 and 3.0
132 //Owner vCard enhancement: Use "ME" profile if configured
134 String vcard = getOwnerPhoneNumberVcardFromProfile(vcardType21, filter); local
135 if (vcard != null && vcard.length() != 0) {
136 return vcard;
144 String vcard = composer.composeVCardForPhoneOwnNumber(Phone.TYPE_MOBILE, name, number, local
569 String vcard = composer.createOneEntry(); local
614 String vcard = composer.createOneEntry(vcardType21); local
    [all...]

Completed in 480 milliseconds