OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
60
private ArrayList<
vCard
> originator = null;
61
private ArrayList<
vCard
> recipient = null;
64
public static class
vCard
{
65
/*
VCARD
attributes */
74
* Construct a version 3.0
vCard
81
public
vCard
(String name, String formattedName, String[] phoneNumbers,
93
* Construct a version 2.1
vCard
99
public
vCard
(String name, String[] phoneNumbers,
110
* Construct a version 3.0
vCard
116
public
vCard
(String name, String formattedName, String[] phoneNumbers, String[] emailAddresses)
[
all
...]
BluetoothMapContentObserver.java
639
ArrayList<BluetoothMapbMessage.
vCard
> recipientList = msg.getRecipients();
651
for (BluetoothMapbMessage.
vCard
recipient : recipientList) {
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java
52
import com.android.
vcard
.VCardComposer;
53
import com.android.
vcard
.VCardConfig;
54
import com.android.
vcard
.VCardPhoneNumberTranslationCallback;
110
* Create an owner
vcard
from the configured profile
115
// Currently only support Generic
Vcard
2.1 and 3.0
131
//Owner
vCard
enhancement: Use "ME" profile if configured
133
String
vcard
= getOwnerPhoneNumberVcardFromProfile(vcardType21, filter);
local
134
if (
vcard
!= null &&
vcard
.length() != 0) {
135
return
vcard
;
143
String
vcard
= composer.composeVCardForPhoneOwnNumber(Phone.TYPE_MOBILE, name, number,
local
525
String
vcard
= composer.createOneEntry();
local
568
String
vcard
= composer.createOneEntry(
vcard
Type21);
local
[
all
...]
Completed in 151 milliseconds