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 140 final int vcardType = (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC
143 final VCardBuilder builder = new VCardBuilder(vcardType);
177 final int vcardType = (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC
180 final VCardBuilder builder = new VCardBuilder(vcardType);
BluetoothPbapVcardManager.java 120 int vcardType;
122 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
124 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
128 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
131 return BluetoothPbapUtils.createProfileVCard(mContext, vcardType, filter);
298 int vcardType;
301 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
303 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
306 composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext, vcardType, null);
694 int vcardType;
    [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/Contacts/src/com/android/contacts/vcard/
ExportProcessor.java 137 final int vcardType;
139 vcardType = VCardConfig.getVCardTypeFromString(
142 vcardType = VCardConfig.getVCardTypeFromString(exportType);
145 composer = new VCardComposer(mService, vcardType, true);
148 // int vcardType = (VCardConfig.VCARD_TYPE_V21_GENERIC |
150 // composer = new VCardComposer(ExportVCardActivity.this, vcardType, true);

Completed in 213 milliseconds