HomeSort by relevance Sort by last modified time
    Searched defs:vcardType (Results 1 - 5 of 5) 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 115 int vcardType;
117 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
119 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
123 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
126 return BluetoothPbapUtils.createProfileVCard(mContext, vcardType,filter);
540 int vcardType;
542 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
544 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
547 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
552 composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext, vcardType, null)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
VCardRequest.java 155 int vcardType = detector.getEstimatedType();
156 if (vcardType == VCardConfig.VCARD_TYPE_UNKNOWN) {
157 vcardType = VCardConfig.getVCardTypeFromString(DEFAULT_VCARD_TYPE);
160 new CustomVCardEntryConstructor(vcardType, null);
164 if (!readOneVCardFile(uri, vcardType, builder, false, null)) {
175 private boolean readOneVCardFile(final Uri uri, final int vcardType,
185 vCardParser = new VCardParser_V21(vcardType);
204 vCardParser = new VCardParser_V30(vcardType);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ExportProcessor.java 139 final int vcardType;
141 vcardType = VCardConfig.getVCardTypeFromString(
144 vcardType = VCardConfig.getVCardTypeFromString(exportType);
147 composer = new VCardComposer(mService, vcardType, true);
150 // int vcardType = (VCardConfig.VCARD_TYPE_V21_GENERIC |
152 // composer = new VCardComposer(ExportVCardActivity.this, vcardType, true);

Completed in 2669 milliseconds