/packages/services/Telephony/src/com/android/phone/ |
D | CallLogger.java | 76 final int presentation = getPresentation(c, ci); in logCall() local 83 logCall(ci, logNumber, presentation, callLogType, date, duration); in logCall() 110 public void logCall(CallerInfo ci, String number, int presentation, int callType, long start, in logCall() argument 176 int presentation = conn.getNumberPresentation(); in getLogNumber() local 180 number, presentation); in getLogNumber() 199 int presentation; in getPresentation() local 202 presentation = conn.getNumberPresentation(); in getPresentation() 204 presentation = callerInfo.numberPresentation; in getPresentation() 208 if (DBG) log("- getPresentation: presentation: " + presentation); in getPresentation() 209 return presentation; in getPresentation()
|
D | PhoneUtils.java | 2094 String number, int presentation) { in modifyForSpecialCnapCases() argument 2103 + ", presentation=" + presentation + " ci " + ci); in modifyForSpecialCnapCases() 2112 && presentation == PhoneConstants.PRESENTATION_ALLOWED) { in modifyForSpecialCnapCases() 2123 || (ci.numberPresentation != presentation in modifyForSpecialCnapCases() 2124 && presentation == PhoneConstants.PRESENTATION_ALLOWED)) { in modifyForSpecialCnapCases() 2242 public static String getPresentationString(Context context, int presentation) { in getPresentationString() argument 2244 if (presentation == PhoneConstants.PRESENTATION_RESTRICTED) { in getPresentationString() 2246 } else if (presentation == PhoneConstants.PRESENTATION_PAYPHONE) { in getPresentationString()
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
D | PhoneNumberDisplayUtil.java | 37 int presentation, in getDisplayName() argument 39 if (presentation == Calls.PRESENTATION_UNKNOWN) { in getDisplayName() 42 if (presentation == Calls.PRESENTATION_RESTRICTED) { in getDisplayName() 45 if (presentation == Calls.PRESENTATION_PAYPHONE) { in getDisplayName() 66 int presentation, in getDisplayNumber() argument 70 final CharSequence displayName = getDisplayName(context, number, presentation, isVoicemail); in getDisplayNumber()
|
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/ |
D | CallLogListItemHelperTest.java | 249 int presentation, String formattedNumber) { in setPhoneCallDetailsWithNumber() argument 250 setPhoneCallDetailsWithNumberTypeAndPostDialDigits(number, "", presentation, in setPhoneCallDetailsWithNumber() 256 int presentation, String formattedNumber, int callType) { in setPhoneCallDetailsWithNumberAndType() argument 257 setPhoneCallDetailsWithNumberTypeAndPostDialDigits(number, "", presentation, in setPhoneCallDetailsWithNumberAndType() 263 String postDialDigits, int presentation, String formattedNumber, int callType) { in setPhoneCallDetailsWithNumberTypeAndPostDialDigits() argument 265 number, postDialDigits, presentation, formattedNumber); in setPhoneCallDetailsWithNumberTypeAndPostDialDigits() 271 String number, String postDialDigits, int presentation, String formattedNumber) { in getPhoneCallDetails() argument 275 presentation, in getPhoneCallDetails()
|
D | CallLogAdapterTest.java | 629 private void createCallLogEntry(String number, String postDialDigits, int presentation, in createCallLogEntry() argument 631 Object[] values = getValues(number, postDialDigits, presentation, type); in createCallLogEntry() 636 int presentation, int type) { in createCallLogEntry() argument 637 Object[] values = getValues(number, postDialDigits, viaNumber, presentation, type); in createCallLogEntry() 710 int presentation, in getValues() argument 712 return getValues(number, postDialDigits, "", presentation, type); in getValues() 727 int presentation, in getValues() argument 745 if (presentation != NO_VALUE_SET) { in getValues() 746 values[CallLogQuery.NUMBER_PRESENTATION] = presentation; in getValues()
|
D | PhoneCallDetailsHelperTest.java | 459 private void setPhoneCallDetailsWithNumber(String number, int presentation, in setPhoneCallDetailsWithNumber() argument 461 PhoneCallDetails details = getPhoneCallDetails(number, presentation, formattedNumber); in setPhoneCallDetailsWithNumber() 534 private void setCallDetailsHeaderWithNumber(String number, int presentation) { in setCallDetailsHeaderWithNumber() argument 536 getPhoneCallDetails(number, presentation, TEST_FORMATTED_NUMBER)); in setCallDetailsHeaderWithNumber() 558 String number, int presentation, String formattedNumber) { in getPhoneCallDetails() argument 562 presentation, in getPhoneCallDetails()
|
D | CallLogNotificationsHelperTest.java | 134 private ContactInfo getContactInfo(String number, int presentation, String countryIso) { in getContactInfo() argument 135 return mCallLogNotificationsHelper.getContactInfo(number, presentation, countryIso); in getContactInfo()
|
/packages/apps/Dialer/src/com/android/dialer/util/ |
D | PhoneNumberUtil.java | 43 public static boolean canPlaceCallsTo(CharSequence number, int presentation) { in canPlaceCallsTo() argument 44 return presentation == CallLog.Calls.PRESENTATION_ALLOWED in canPlaceCallsTo() 72 int presentation) { in isUnknownNumberThatCanBeLookedUp() argument 73 if (presentation == CallLog.Calls.PRESENTATION_UNKNOWN) { in isUnknownNumberThatCanBeLookedUp() 76 if (presentation == CallLog.Calls.PRESENTATION_RESTRICTED) { in isUnknownNumberThatCanBeLookedUp() 79 if (presentation == CallLog.Calls.PRESENTATION_PAYPHONE) { in isUnknownNumberThatCanBeLookedUp()
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
D | ContactInfoCache.java | 411 CallerInfo info, int presentation, boolean isIncoming) { in buildEntry() argument 416 populateCacheEntry(context, info, cce, presentation, isIncoming); in buildEntry() 457 int presentation, boolean isIncoming) { in populateCacheEntry() argument 505 displayName = getPresentationString(context, presentation, info.callSubject); in populateCacheEntry() 507 } else if (presentation != TelecomManager.PRESENTATION_ALLOWED) { in populateCacheEntry() 511 displayName = getPresentationString(context, presentation, info.callSubject); in populateCacheEntry() 544 if (presentation != TelecomManager.PRESENTATION_ALLOWED) { in populateCacheEntry() 548 displayName = getPresentationString(context, presentation, info.callSubject); in populateCacheEntry() 612 private static String getPresentationString(Context context, int presentation, in getPresentationString() argument 616 ((presentation == TelecomManager.PRESENTATION_UNKNOWN) || in getPresentationString() [all …]
|
D | CallerInfoUtils.java | 135 String number, int presentation) { in modifyForSpecialCnapCases() argument 143 + ", presentation=" + presentation + " ci " + ci); in modifyForSpecialCnapCases() 151 && presentation == TelecomManager.PRESENTATION_ALLOWED) { in modifyForSpecialCnapCases() 162 || (ci.numberPresentation != presentation in modifyForSpecialCnapCases() 163 && presentation == TelecomManager.PRESENTATION_ALLOWED)) { in modifyForSpecialCnapCases()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | CallLogManager.java | 74 String postDialDigits, String viaNumber, int presentation, int callType, in AddCallArgs() argument 83 this.presentation = presentation; in AddCallArgs() 100 public final int presentation; field in CallLogManager.AddCallArgs 240 int presentation, in logCall() argument 270 + Log.pii(number) + "," + presentation + ", " + callType in logCall() 273 viaNumber, presentation, callType, features, accountHandle, start, duration, in logCall() 385 c.presentation, c.callType, c.features, c.accountHandle, c.timestamp, in addCall()
|
D | ConnectionServiceWrapper.java | 544 public void setAddress(String callId, Uri address, int presentation) { in setAddress() argument 549 logIncoming("setAddress %s %s %d", callId, address, presentation); in setAddress() 552 call.setHandle(address, presentation); in setAddress() 563 String callId, String callerDisplayName, int presentation) { in setCallerDisplayName() argument 569 presentation); in setCallerDisplayName() 572 call.setCallerDisplayName(callerDisplayName, presentation); in setCallerDisplayName()
|
D | Call.java | 731 public void setHandle(Uri handle, int presentation) { in setHandle() argument 732 if (!Objects.equals(handle, mHandle) || presentation != mHandlePresentation) { in setHandle() 733 mHandlePresentation = presentation; in setHandle() 768 void setCallerDisplayName(String callerDisplayName, int presentation) { in setCallerDisplayName() argument 770 presentation != mCallerDisplayNamePresentation) { in setCallerDisplayName() 772 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName()
|
/packages/services/Telephony/src/com/android/services/telephony/ |
D | ConferenceParticipantConnection.java | 67 int presentation = getParticipantPresentation(participant); in ConferenceParticipantConnection() local 69 if (presentation != PhoneConstants.PRESENTATION_ALLOWED) { in ConferenceParticipantConnection() 75 setAddress(address, presentation); in ConferenceParticipantConnection() 76 setCallerDisplayName(participant.getDisplayName(), presentation); in ConferenceParticipantConnection() local
|
D | TelephonyConnection.java | 676 int presentation = mOriginalConnection.getNumberPresentation(); in updateAddress() local 678 presentation != getAddressPresentation()) { in updateAddress() 680 setAddress(address, presentation); in updateAddress()
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | TestConnectionManager.java | 99 RemoteConnection connection, Uri address, int presentation) { 100 setAddress(address, presentation); 105 RemoteConnection connection, String callerDisplayName, int presentation) { 106 setCallerDisplayName(callerDisplayName, presentation);
|
/packages/services/Car/service/src/com/android/car/cluster/ |
D | InstrumentClusterService.java | 108 InstrumentClusterPresentation presentation = in initRendererOnMainThread() 114 presentation.setContentView(rootView); in initRendererOnMainThread() 120 presentation.show(); in initRendererOnMainThread()
|
/packages/services/Telephony/tests/src/com/android/phone/ |
D | CnapTest.java | 72 private String modifyForSpecialCnapCases(String number, int presentation) { in modifyForSpecialCnapCases() argument 74 mContext, mCallerInfo, number, presentation); in modifyForSpecialCnapCases()
|
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/ |
D | SipConnection.java | 298 int presentation = mOriginalConnection.getNumberPresentation(); in updateAddress() local 300 presentation != getAddressPresentation()) { in updateAddress() 302 setAddress(address, presentation); in updateAddress()
|
/packages/services/Telecomm/src/com/android/server/telecom/ui/ |
D | MissedCallNotifierImpl.java | 584 final int presentation = in reloadFromDatabase() 589 if (presentation != Calls.PRESENTATION_ALLOWED in reloadFromDatabase() 624 call.setHandle(handle, presentation); in reloadFromDatabase()
|
/packages/apps/Dialer/tests/src/com/android/dialer/tests/calllog/ |
D | FillCallLogTestActivity.java | 565 int presentation, int callType, int features, PhoneAccountHandle accountHandle, in addCall() argument
|
/packages/providers/ContactsProvider/tests/assets/upgradeTest/ |
D | contacts2_1108.sql | 45 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,presentation INTEGER NOT NULL… field
|
/packages/services/Car/bluetooth/bt-map-service/ |
D | bt_hci_startup_issues.txt | 87472 …ial_digits, geocoded_location, countryiso, duration, new, numbertype, presentation, voicemail_uri,… 87473 …ial_digits, geocoded_location, countryiso, duration, new, numbertype, presentation, voicemail_uri,… 87474 …ial_digits, geocoded_location, countryiso, duration, new, numbertype, presentation, voicemail_uri,… 87480 …ial_digits, geocoded_location, countryiso, duration, new, numbertype, presentation, voicemail_uri,… 87481 …ial_digits, geocoded_location, countryiso, duration, new, numbertype, presentation, voicemail_uri,… 87482 …ial_digits, geocoded_location, countryiso, duration, new, numbertype, presentation, voicemail_uri,… 87488 …executeForCursorWindow took 3ms - succeeded, sql="SELECT _id, number, presentation, date, duration… 87489 … 23:17:37.049] prepare took 1ms - succeeded, sql="SELECT _id, number, presentation, date, duration… 87490 … 23:17:37.048] prepare took 0ms - succeeded, sql="SELECT _id, number, presentation, date, duration… 95276 application/vnd.openxmlformats-officedocument.presentationml.presentation:
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_US_wordlist.combined.gz |
|