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);
176 final int vcardType = (vcardVer21 ?
180 final VCardBuilder builder = new VCardBuilder(vcardType);
BluetoothPbapVcardManager.java 440 int vcardType;
442 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC;
444 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC;
446 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT;
448 composer = new VCardComposer(mContext, vcardType, true);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ExportProcessor.java 122 final int vcardType;
124 vcardType = VCardConfig.getVCardTypeFromString(
127 vcardType = VCardConfig.getVCardTypeFromString(exportType);
130 composer = new VCardComposer(mService, vcardType, true);
133 // int vcardType = (VCardConfig.VCARD_TYPE_V21_GENERIC |
135 // composer = new VCardComposer(ExportVCardActivity.this, vcardType, true);

Completed in 301 milliseconds