/packages/apps/Contacts/src/com/android/contacts/list/ |
D | ContactsIntentResolver.java | 62 if (UiIntentActions.LIST_DEFAULT.equals(action) ) { in resolveIntent() 64 } else if (UiIntentActions.LIST_ALL_CONTACTS_ACTION.equals(action)) { in resolveIntent() 66 } else if (UiIntentActions.LIST_CONTACTS_WITH_PHONES_ACTION.equals(action)) { in resolveIntent() 68 } else if (UiIntentActions.LIST_STARRED_ACTION.equals(action)) { in resolveIntent() 70 } else if (UiIntentActions.LIST_FREQUENT_ACTION.equals(action)) { in resolveIntent() 72 } else if (UiIntentActions.LIST_STREQUENT_ACTION.equals(action)) { in resolveIntent() 74 } else if (UiIntentActions.LIST_GROUP_ACTION.equals(action)) { in resolveIntent() 77 } else if (UiIntentActions.ACTION_SELECT_ITEMS.equals(action)) { in resolveIntent() 79 if (Phone.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent() 81 } else if (Email.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent() [all …]
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | ScanResultMatchInfoTest.java | 109 .equals(ScanResultMatchInfo.fromScanResult( in testScanResultMatchesWifiConfiguration() 133 assertFalse(scan1.getScanResult().BSSID.equals(scan2.getScanResult().BSSID)); in testDifferentBssidScanResultsMatch() 175 assertTrue(key1.equals(key1)); in testEqualityRulesForTransitionMode() 178 assertTrue(key1.equals(key2)); in testEqualityRulesForTransitionMode() 179 assertTrue(key2.equals(key1)); in testEqualityRulesForTransitionMode() 182 assertTrue(key1.equals(key2)); in testEqualityRulesForTransitionMode() 183 assertTrue(key2.equals(key3)); in testEqualityRulesForTransitionMode() 184 assertTrue(key1.equals(key3)); in testEqualityRulesForTransitionMode() 187 assertTrue(key1.equals(key2)); in testEqualityRulesForTransitionMode() 188 assertTrue(key1.equals(key2)); in testEqualityRulesForTransitionMode() [all …]
|
/packages/services/Telephony/src/com/android/services/telephony/ |
D | MmiCodeUtil.java | 107 (sc.equals(SC_CFU) in isServiceCodeCallForwarding() 108 || sc.equals(SC_CFB) || sc.equals(SC_CFNRy) in isServiceCodeCallForwarding() 109 || sc.equals(SC_CFNR) || sc.equals(SC_CF_All) in isServiceCodeCallForwarding() 110 || sc.equals(SC_CF_All_Conditional)); in isServiceCodeCallForwarding() 115 (sc.equals(SC_BAOC) in isServiceCodeCallBarring() 116 || sc.equals(SC_BAOIC) || sc.equals(SC_BAOICxH) in isServiceCodeCallBarring() 117 || sc.equals(SC_BAIC) || sc.equals(SC_BAICr) in isServiceCodeCallBarring() 118 || sc.equals(SC_BA_ALL) || sc.equals(SC_BA_MO) in isServiceCodeCallBarring() 119 || sc.equals(SC_BA_MT)); in isServiceCodeCallBarring() 123 return sc != null && (sc.equals(SC_PIN) || sc.equals(SC_PIN2) in isPinPukCommand() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/ |
D | BmessageParser.java | 117 if (!prop.equals(BEGIN_BMSG)) { in parse() 123 while (prop.equals(BEGIN_VCARD)) { in parse() 133 if (!prop.equals(BEGIN_BENV)) { in parse() 139 if (!prop.equals(END_BMSG)) { in parse() 164 if (prop.name.equals("VERSION")) { in parseProperties() 167 } else if (prop.name.equals("STATUS")) { in parseProperties() 169 if (prop.value.equals(s.toString())) { in parseProperties() 175 } else if (prop.name.equals("TYPE")) { in parseProperties() 177 if (prop.value.equals(t.toString())) { in parseProperties() 183 } else if (prop.name.equals("FOLDER")) { in parseProperties() [all …]
|
/packages/services/Car/car-usb-handler/src/android/car/usb/handler/ |
D | UsbDeviceFilter.java | 110 if (!aoapData && "manufacturer-name".equals(name)) { in read() 112 } else if (!aoapData && "product-name".equals(name)) { in read() 114 } else if (!aoapData && "serial-number".equals(name)) { in read() 116 } else if (aoapData && "manufacturer".equals(name)) { in read() 118 } else if (aoapData && "model".equals(name)) { in read() 120 } else if (aoapData && "description".equals(name)) { in read() 122 } else if (aoapData && "version".equals(name)) { in read() 124 } else if (aoapData && "uri".equals(name)) { in read() 126 } else if (aoapData && "serial".equals(name)) { in read() 128 } else if (aoapData && "service".equals(name)) { in read() [all …]
|
/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/ |
D | TreeTraverserTest.java | 107 /* stopPredicate= */ null, /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 113 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 119 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 125 /* targetPredicate= */ node -> node.equals(mNode6)); in testFindNodeOrAncestor() 131 node -> node.equals(mNode1), in testFindNodeOrAncestor() 132 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 138 node -> node.equals(mNode0), in testFindNodeOrAncestor() 139 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 174 /* targetPredicate= */ node -> node.equals(mNode0)); in testDepthFirstSearch() 180 /* targetPredicate= */ node -> node.equals(mNode4)); in testDepthFirstSearch() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
D | PhonebookEntry.java | 38 public boolean equals(Object o) { in equals() method in PhonebookEntry.Name 44 return (Objects.equals(family, n.family) || family != null && family.equals(n.family)) in equals() 45 && (Objects.equals(given, n.given) || given != null && given.equals(n.given)) in equals() 46 && (Objects.equals(middle, n.middle) || middle != null && middle.equals( in equals() 47 n.middle)) && (Objects.equals(prefix, n.prefix) in equals() 48 || prefix != null && prefix.equals(n.prefix)) && ( in equals() 49 Objects.equals(suffix, n.suffix) || suffix != null && suffix.equals(n.suffix)); in equals() 85 public boolean equals(Object o) { in equals() method in PhonebookEntry.Phone 91 return (Objects.equals(number, p.number) || number != null && number.equals(p.number)) in equals() 112 public boolean equals(Object object) { in equals() method in PhonebookEntry [all …]
|
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/ |
D | MockContentProvider.java | 136 public boolean equals(Uri uri, String[] projection, String selection, in equals() method in MockContentProvider.Query 142 } else if (!uri.equals(mUri)) { in equals() 146 if (!mAnyProjection && !Arrays.equals(projection, mProjection)) { in equals() 150 if (!mAnySelection && !Objects.equals(selection, mSelection)) { in equals() 154 if (!mAnySelection && !Arrays.equals(selectionArgs, mSelectionArgs)) { in equals() 158 if (!mAnySortOrder && !Objects.equals(sortOrder, mSortOrder)) { in equals() 229 public boolean equals(Uri uri) { in equals() method in MockContentProvider.TypeQuery 230 return getUri().equals(uri); in equals() 266 private boolean equals(Uri uri, ContentValues contentValues) { in equals() method in MockContentProvider.Insert 267 return mUri.equals(uri) && mContentValues.equals(contentValues); in equals() [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | TelecomBroadcastIntentProcessor.java | 119 if (ACTION_SEND_SMS_FROM_NOTIFICATION.equals(action) || in processIntent() 120 ACTION_CALL_BACK_FROM_NOTIFICATION.equals(action) || in processIntent() 121 ACTION_CLEAR_MISSED_CALLS.equals(action)) { in processIntent() 132 if (ACTION_SEND_SMS_FROM_NOTIFICATION.equals(action)) { in processIntent() 139 } else if (ACTION_CALL_BACK_FROM_NOTIFICATION.equals(action)) { in processIntent() 146 } else if (ACTION_CLEAR_MISSED_CALLS.equals(action)) { in processIntent() 149 } else if(ACTION_DISCONNECTED_SEND_SMS_FROM_NOTIFICATION.equals(action) || in processIntent() 150 ACTION_DISCONNECTED_CALL_BACK_FROM_NOTIFICATION.equals(action)) { in processIntent() 162 if (ACTION_DISCONNECTED_SEND_SMS_FROM_NOTIFICATION.equals(action)) { in processIntent() 169 } else if (ACTION_DISCONNECTED_CALL_BACK_FROM_NOTIFICATION.equals(action)) { in processIntent() [all …]
|
D | PhoneAccountRegistrar.java | 288 .filter(account -> groupId.equals(account.getGroupId()) && in getPhoneAccountByGroupId() 289 !account.getAccountHandle().equals(excludePhoneAccountHandle) && in getPhoneAccountByGroupId() 290 Objects.equals(account.getAccountHandle().getComponentName(), in getPhoneAccountByGroupId() 344 if (!Objects.equals(currentDefaultPhoneAccount, accountHandle)) { in setUserSelectedOutgoingPhoneAccount() 433 && Objects.equals(component, systemSimCallManagerComponent) in getSimCallManager() 439 && Objects.equals(component.getPackageName(), dialerPackage) in getSimCallManager() 477 return accounts.stream().filter(account -> mTestPhoneAccountPackageNameFilter.equals( in filterRestrictedPhoneAccounts() 588 if (phoneAccountHandle.equals(entry.getValue().phoneAccountHandle)) { in removeDefaultPhoneAccountHandle() 626 return phoneAccountUserHandle.equals(userHandle); in isVisibleForUser() 874 if (Objects.equals(packageName, handle.getComponentName().getPackageName()) in clearAccounts() [all …]
|
/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/ |
D | LaneView.java | 153 if (laneDir.getShape().equals(LaneDirection.Shape.NORMAL_RIGHT) in getShift() 154 || laneDir.getShape().equals(LaneDirection.Shape.SLIGHT_RIGHT) in getShift() 155 || laneDir.getShape().equals(LaneDirection.Shape.SHARP_RIGHT) in getShift() 156 || laneDir.getShape().equals(LaneDirection.Shape.U_TURN_RIGHT)) { in getShift() 159 if (laneDir.getShape().equals(LaneDirection.Shape.NORMAL_LEFT) in getShift() 160 || laneDir.getShape().equals(LaneDirection.Shape.SLIGHT_LEFT) in getShift() 161 || laneDir.getShape().equals(LaneDirection.Shape.SHARP_LEFT) in getShift() 162 || laneDir.getShape().equals(LaneDirection.Shape.U_TURN_LEFT)) { in getShift() 165 if (laneDir.getShape().equals(LaneDirection.Shape.STRAIGHT)) { in getShift() 189 if (laneDir.getShape().equals(LaneDirection.Shape.NORMAL_LEFT) in getOffset() [all …]
|
/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/view/ |
D | LaneView.java | 154 if (laneDir.getShape().equals(LaneDirection.Shape.NORMAL_RIGHT) in getShift() 155 || laneDir.getShape().equals(LaneDirection.Shape.SLIGHT_RIGHT) in getShift() 156 || laneDir.getShape().equals(LaneDirection.Shape.SHARP_RIGHT) in getShift() 157 || laneDir.getShape().equals(LaneDirection.Shape.U_TURN_RIGHT)) { in getShift() 160 if (laneDir.getShape().equals(LaneDirection.Shape.NORMAL_LEFT) in getShift() 161 || laneDir.getShape().equals(LaneDirection.Shape.SLIGHT_LEFT) in getShift() 162 || laneDir.getShape().equals(LaneDirection.Shape.SHARP_LEFT) in getShift() 163 || laneDir.getShape().equals(LaneDirection.Shape.U_TURN_LEFT)) { in getShift() 166 if (laneDir.getShape().equals(LaneDirection.Shape.STRAIGHT)) { in getShift() 190 if (laneDir.getShape().equals(LaneDirection.Shape.NORMAL_LEFT) in getOffset() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiShellCommand.java | 227 if (cmd == null || cmd.equals("")) { in onCommand() 366 if (forcedBand.equals("2")) { in onCommand() 369 } else if (forcedBand.equals("5")) { in onCommand() 372 } else if (forcedBand.equals("6")) { in onCommand() 742 .filter(s -> s.getSsid().equals(ssid)) in onCommand() 988 if (option.equals("-h")) { in onCommand() 1014 if (trueString.equals(nextArg)) { in getNextArgRequiredTrueOrFalse() 1016 } else if (falseString.equals(nextArg)) { in getNextArgRequiredTrueOrFalse() 1029 if (TextUtils.equals(type, "wpa3")) { in buildWifiConfiguration() 1032 } else if (TextUtils.equals(type, "wpa2")) { in buildWifiConfiguration() [all …]
|
D | WifiConfigurationUtil.java | 191 return !Objects.equals(existingConfig.getStaticIpConfiguration(), in hasIpChanged() 214 return !Objects.equals(existingConfig.getHttpProxy(), newConfig.getHttpProxy()); in hasProxyChanged() 258 if (!TextUtils.equals(existingEnterpriseConfig.getIdentity(), in hasEnterpriseConfigChanged() 262 if (!TextUtils.equals(existingEnterpriseConfig.getAnonymousIdentity(), in hasEnterpriseConfigChanged() 266 if (!TextUtils.equals(existingEnterpriseConfig.getPassword(), in hasEnterpriseConfigChanged() 272 if (!Arrays.equals(existingCaCerts, newCaCerts)) { in hasEnterpriseConfigChanged() 275 if (!Arrays.equals(newEnterpriseConfig.getCaCertificateAliases(), in hasEnterpriseConfigChanged() 279 if (!TextUtils.equals(newEnterpriseConfig.getClientCertificateAlias(), in hasEnterpriseConfigChanged() 283 if (!TextUtils.equals(newEnterpriseConfig.getAltSubjectMatch(), in hasEnterpriseConfigChanged() 287 if (!TextUtils.equals(newEnterpriseConfig.getWapiCertSuite(), in hasEnterpriseConfigChanged() [all …]
|
/packages/apps/Dialer/java/com/android/voicemail/impl/utils/ |
D | XmlUtils.java | 39 if (parser.getName().equals(endTag)) { in readThisArrayMapXml() 75 if (parser.getName().equals(endTag)) { in readThisListXml() 106 if (parser.getName().equals("item")) { in readThisStringArrayXml() 118 if (parser.getName().equals(endTag)) { in readThisStringArrayXml() 120 } else if (parser.getName().equals("item")) { in readThisStringArrayXml() 141 if (tagName.equals("null")) { in readThisValueXml() 143 } else if (tagName.equals("string")) { in readThisValueXml() 148 if (parser.getName().equals("string")) { in readThisValueXml() 162 } else if (tagName.equals("string-array")) { in readThisValueXml() 166 } else if (tagName.equals("list")) { in readThisValueXml() [all …]
|
/packages/modules/Wifi/framework/java/android/net/wifi/ |
D | WifiInfo.java | 863 return mMacAddress != null && !DEFAULT_MAC_ADDRESS.equals(mMacAddress); in hasRealMacAddress() 1432 public boolean equals(Object that) { in equals() method in WifiInfo 1441 return Objects.equals(mWifiSsid, thatWifiInfo.mWifiSsid) in equals() 1442 && Objects.equals(mBSSID, thatWifiInfo.mBSSID) in equals() 1443 && Objects.equals(mNetworkId, thatWifiInfo.mNetworkId) in equals() 1444 && Objects.equals(mRssi, thatWifiInfo.mRssi) in equals() 1445 && Objects.equals(mSupplicantState, thatWifiInfo.mSupplicantState) in equals() 1446 && Objects.equals(mLinkSpeed, thatWifiInfo.mLinkSpeed) in equals() 1447 && Objects.equals(mTxLinkSpeed, thatWifiInfo.mTxLinkSpeed) in equals() 1448 && Objects.equals(mRxLinkSpeed, thatWifiInfo.mRxLinkSpeed) in equals() [all …]
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/data/ |
D | ProgramInfo.java | 200 if (!GEN_TITLE.equals(title) in build() 202 && !GEN_POSTER.equals(posterArtUri) in build() 204 && !GEN_GENRE.equals(genre)) { in build() 208 GEN_TITLE.equals(title) ? "Title(" + index + ")" : title, in build() 209 GEN_EPISODE.equals(episode) ? "Episode(" + index + ")" : episode, in build() 212 GEN_POSTER.equals(posterArtUri) in build() 219 GEN_GENRE.equals(genre) ? GENRES[index % GENRES.length] : genre, in build() 235 public boolean equals(Object o) { in equals() method in ProgramInfo 243 return Objects.equals(seasonNumber, that.seasonNumber) in equals() 244 && Objects.equals(episodeNumber, that.episodeNumber) in equals() [all …]
|
D | ChannelInfo.java | 187 public boolean equals(Object o) { in equals() method in ChannelInfo 195 return Objects.equals(originalNetworkId, that.originalNetworkId) in equals() 196 && Objects.equals(videoWidth, that.videoWidth) in equals() 197 && Objects.equals(videoHeight, that.videoHeight) in equals() 198 && Objects.equals(audioChannel, that.audioChannel) in equals() 199 && Objects.equals(audioLanguageCount, that.audioLanguageCount) in equals() 200 && Objects.equals(hasClosedCaption, that.hasClosedCaption) in equals() 201 && Objects.equals(appLinkColor, that.appLinkColor) in equals() 202 && Objects.equals(number, that.number) in equals() 203 && Objects.equals(name, that.name) in equals() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
D | ReverseGeocoder.java | 149 if (currentCity.equals(addr1Locality) || currentCity.equals(addr2Locality)) { in computeAddress() 151 if (currentCity.equals(addr1Locality)) { in computeAddress() 155 if (!currentCountry.equals(addr2CountryCode)) { in computeAddress() 166 if (!currentCountry.equals(addr1CountryCode)) { in computeAddress() 175 if (closestCommonLocation != null && !("null".equals(closestCommonLocation))) { in computeAddress() 176 if (!currentCity.equals(otherCity)) { in computeAddress() 184 if (closestCommonLocation != null && !("null".equals(closestCommonLocation))) { in computeAddress() 191 if (closestCommonLocation != null && !("".equals(closestCommonLocation))) { in computeAddress() 195 if (!countryCode.equals(currentCountry)) { in computeAddress() 206 if (currentAdminArea.equals(addr1AdminArea) && currentAdminArea.equals(addr2AdminArea)) { in computeAddress() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/ |
D | DataItem.java | 59 if (GroupMembership.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 61 } else if (StructuredName.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 63 } else if (Phone.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 65 } else if (Email.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 67 } else if (StructuredPostal.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 69 } else if (Im.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 71 } else if (Organization.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 73 } else if (Nickname.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 75 } else if (Note.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 77 } else if (Website.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() [all …]
|
/packages/services/Telephony/src/com/android/services/telephony/rcs/ |
D | SipDialog.java | 183 if (!mBranchId.equals(m.getViaBranchParameter())) return false; in isResponseAssociatedWithDialog() 184 if (!mCallId.equals(m.getCallIdParameter())) return false; in isResponseAssociatedWithDialog() 186 return mFromTag.equals(fromTag); in isResponseAssociatedWithDialog() 194 if (!mCallId.equals(m.getCallIdParameter())) return false; in isRequestAssociatedWithDialog() 202 return (mFromTag.equals(fromTag) || mFromTag.equals(toTag)) in isRequestAssociatedWithDialog() 203 && (mToTag.equals(toTag) || mToTag.equals(fromTag)); in isRequestAssociatedWithDialog() 236 public boolean equals(Object o) { in equals() method in SipDialog 242 return mBranchId.equals(sipDialog.mBranchId) in equals() 243 && Objects.equals(mCallId, sipDialog.mCallId) in equals() 244 && Objects.equals(mFromTag, sipDialog.mFromTag) in equals() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/ |
D | AvrcpItem.java | 250 public boolean equals(Object o) { in equals() method in AvrcpItem 260 return Objects.equals(mUuid, other.getUuid()) in equals() 261 && Objects.equals(mDevice, other.getDevice()) in equals() 262 && Objects.equals(mUid, other.getUid()) in equals() 263 && Objects.equals(mItemType, other.getItemType()) in equals() 264 && Objects.equals(mType, other.getType()) in equals() 265 && Objects.equals(mTitle, other.getTitle()) in equals() 266 && Objects.equals(mDisplayableName, other.getDisplayableName()) in equals() 267 && Objects.equals(mArtistName, other.getArtistName()) in equals() 268 && Objects.equals(mAlbumName, other.getAlbumName()) in equals() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/util/ |
D | XmlUtilHelper.java | 77 if (value.equals(options[i])) in convertValueToList() 95 if (value.equals("1") in convertValueToBoolean() 96 || value.equals("true") in convertValueToBoolean() 97 || value.equals("TRUE")) in convertValueToBoolean() 841 if (parser.getName().equals(endTag)) { in readThisMapXml() 870 if (parser.getName().equals(endTag)) { in readThisArrayMapXml() 928 if (parser.getName().equals(endTag)) { in readThisListXml() 993 if (parser.getName().equals(endTag)) { in readThisSetXml() 1051 if (parser.getName().equals(endTag)) { in readThisByteArrayXml() 1102 if (parser.getName().equals("item")) { in readThisIntArrayXml() [all …]
|
/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/ |
D | DataItem.java | 58 if (GroupMembership.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 60 } else if (StructuredName.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 62 } else if (Phone.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 64 } else if (Email.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 66 } else if (StructuredPostal.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 68 } else if (Im.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 70 } else if (Organization.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 72 } else if (Nickname.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 74 } else if (Note.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() 76 } else if (Website.CONTENT_ITEM_TYPE.equals(mimeType)) { in createFrom() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
D | BaseAccountType.java | 677 if (Tag.DATA_KIND.equals(tag)) { in parseEditSchema() 819 if (Tag.TYPE.equals(tag)) { in parseTypes() 1050 if ("home".equals(type)) return build(Phone.TYPE_HOME, false); in buildEditTypeForTypeTag() 1051 if ("mobile".equals(type)) return build(Phone.TYPE_MOBILE, false); in buildEditTypeForTypeTag() 1052 if ("work".equals(type)) return build(Phone.TYPE_WORK, false); in buildEditTypeForTypeTag() 1053 if ("fax_work".equals(type)) return build(Phone.TYPE_FAX_WORK, true); in buildEditTypeForTypeTag() 1054 if ("fax_home".equals(type)) return build(Phone.TYPE_FAX_HOME, true); in buildEditTypeForTypeTag() 1055 if ("pager".equals(type)) return build(Phone.TYPE_PAGER, true); in buildEditTypeForTypeTag() 1056 if ("other".equals(type)) return build(Phone.TYPE_OTHER, false); in buildEditTypeForTypeTag() 1057 if ("callback".equals(type)) return build(Phone.TYPE_CALLBACK, true); in buildEditTypeForTypeTag() [all …]
|