Searched defs:mVCardType (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DLineVerifier.java27 private int mVCardType; field in class:LineVerifier
33 mVCardType = vcardType;
37 LineVerifierElem lineVerifier = new LineVerifierElem(mAndroidTestCase, mVCardType);
H A DLineVerifierElem.java30 private final int mVCardType; field in class:LineVerifierElem
33 mVCardType = vcardType;
70 } else if ((VCardConfig.isVersion21(mVCardType) ? "VERSION:2.1" :
71 (VCardConfig.isVersion30(mVCardType) ? "VERSION:3.0" :
H A DVCardVerifier.java78 private int mVCardType; field in class:VCardVerifier
110 mVCardType = vcardType;
126 mVCardType = vcardType;
177 if (VCardConfig.isVersion21(mVCardType)) {
179 } else if (VCardConfig.isVersion30(mVCardType)) {
181 } else if (VCardConfig.isVersion40(mVCardType)) {
196 if (VCardConfig.isVersion40(mVCardType)) {
198 } else if (VCardConfig.isVersion30(mVCardType)) {
212 mLineVerifier = new LineVerifier(mAndroidTestCase, mVCardType);
243 final VCardParser parser = VCardUtils.getAppropriateParser(mVCardType);
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryConstructor.java53 private final int mVCardType; field in class:VCardEntryConstructor
77 mVCardType = vcardType;
106 mCurrentEntry = new VCardEntry(mVCardType, mAccount);
H A DVCardComposer.java131 private final int mVCardType; field in class:VCardComposer
208 mVCardType = vcardType;
601 final VCardBuilder builder = new VCardBuilder(mVCardType, mCharset);
610 if ((mVCardType & VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT) == 0) {
H A DVCardBuilder.java103 private final int mVCardType; field in class:VCardBuilder
135 mVCardType = vcardType;
193 if (VCardConfig.isVersion40(mVCardType)) {
195 } else if (VCardConfig.isVersion30(mVCardType)) {
198 if (!VCardConfig.isVersion21(mVCardType)) {
355 VCardConfig.getNameOrderType(mVCardType),
377 if (VCardConfig.isVersion40(mVCardType)) {
382 if (VCardConfig.isVersion30(mVCardType)) {
419 VCardConfig.getNameOrderType(mVCardType),
517 } else if (VCardConfig.isVersion30(mVCardType)) {
[all...]
H A DVCardEntry.java503 private int mVCardType; field in class:VCardEntry.PostalData
518 mVCardType = vcardType;
587 builder.withValue(StructuredPostal.FORMATTED_ADDRESS, getFormattedAddress(mVCardType));
1742 private final int mVCardType; field in class:VCardEntry
1763 mVCardType = vcardType;
1774 if (type == Phone.TYPE_PAGER || VCardConfig.refrainPhoneNumberFormatting(mVCardType)) {
1797 final int formattingType = VCardUtils.getPhoneNumberFormat(mVCardType);
1834 mVCardType));
1862 .iterator().next(), mVCardType);
1997 if (VCardConfig.isVersion30(mVCardType)
[all...]

Completed in 85 milliseconds