HomeSort by relevance Sort by last modified time
    Searched refs:vcardType (Results 1 - 23 of 23) sorted by null

  /frameworks/opt/vcard/java/com/android/vcard/
VCardConfig.java 420 public static boolean isVersion21(final int vcardType) {
421 return (vcardType & VERSION_MASK) == VERSION_21;
424 public static boolean isVersion30(final int vcardType) {
425 return (vcardType & VERSION_MASK) == VERSION_30;
428 public static boolean isVersion40(final int vcardType) {
429 return (vcardType & VERSION_MASK) == VERSION_40;
432 public static boolean shouldUseQuotedPrintable(final int vcardType) {
433 return !isVersion30(vcardType);
436 public static int getNameOrderType(final int vcardType) {
437 return vcardType & NAME_ORDER_MASK
    [all...]