Home | History | Annotate | Download | only in editor

Lines Matching refs:type2

53         final AccountType type2 = accountTypes.getAccountType(accountType2, dataSet2);
56 if (!type1.areContactsWritable() && type2.areContactsWritable()) {
58 } else if (type1.areContactsWritable() && !type2.areContactsWritable()) {
65 boolean isGoogleAccount2 = type2 instanceof GoogleAccountType;
77 if (type1.accountType != null && type2.accountType == null) {
79 } else if (type1.accountType == null && type2.accountType != null) {
83 if (type1.accountType != null && type2.accountType != null) {
84 value = type1.accountType.compareTo(type2.accountType);
92 if (type1.dataSet != null && type2.dataSet == null) {
94 } else if (type1.dataSet == null && type2.dataSet != null) {
98 if (type1.dataSet != null && type2.dataSet != null) {
99 value = type1.dataSet.compareTo(type2.dataSet);