OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vcardType
(Results
1 - 4
of
4
) sorted by null
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
PropertyNodesVerifier.java
46
public void verify(int resId, int
vcardType
) throws IOException, VCardException {
47
verify(mAndroidTestCase.getContext().getResources().openRawResource(resId),
vcardType
);
50
public void verify(int resId, int
vcardType
, final VCardParser parser)
53
vcardType
, parser);
56
public void verify(InputStream is, int
vcardType
) throws IOException, VCardException {
57
final VCardParser parser = VCardUtils.getAppropriateParser(
vcardType
);
58
verify(is,
vcardType
, parser);
61
public void verify(InputStream is, int
vcardType
, final VCardParser parser)
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java
137
final int
vcardType
= (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC :
140
final VCardBuilder builder = new VCardBuilder(
vcardType
);
174
final int
vcardType
= (vcardVer21 ?
178
final VCardBuilder builder = new VCardBuilder(
vcardType
);
BluetoothPbapVcardManager.java
116
int
vcardType
;
118
vcardType
= VCardConfig.VCARD_TYPE_V21_GENERIC;
120
vcardType
= VCardConfig.VCARD_TYPE_V30_GENERIC;
124
vcardType
|= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
127
return BluetoothPbapUtils.createProfileVCard(mContext,
vcardType
,filter);
483
int
vcardType
;
485
vcardType
= VCardConfig.VCARD_TYPE_V21_GENERIC;
487
vcardType
= VCardConfig.VCARD_TYPE_V30_GENERIC;
491
vcardType
|= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
495
composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext,
vcardType
,null)
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ExportProcessor.java
125
final int
vcardType
;
127
vcardType
= VCardConfig.getVCardTypeFromString(
130
vcardType
= VCardConfig.getVCardTypeFromString(exportType);
133
composer = new VCardComposer(mService,
vcardType
, true);
136
// int
vcardType
= (VCardConfig.VCARD_TYPE_V21_GENERIC |
138
// composer = new VCardComposer(ExportVCardActivity.this,
vcardType
, true);
Completed in 97 milliseconds