HomeSort by relevance Sort by last modified time
    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 117 int vcardType;
119 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
121 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
125 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
128 return BluetoothPbapUtils.createProfileVCard(mContext, vcardType,filter);
528 int vcardType;
530 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
532 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
535 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
539 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 845 milliseconds