HomeSort by relevance Sort by last modified time
    Searched defs:numberPresentation (Results 1 - 14 of 14) sorted by null

  /packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetails.java 30 public final int numberPresentation;
64 public PhoneCallDetails(CharSequence number, int numberPresentation,
67 this(number, numberPresentation, formattedNumber, countryIso, geocode,
72 public PhoneCallDetails(CharSequence number, int numberPresentation,
78 this.numberPresentation = numberPresentation;
CallDetailActivity.java 428 final int numberPresentation = firstDetails.numberPresentation;
437 PhoneNumberUtilsWrapper.canPlaceCallsTo(mNumber, numberPresentation);
520 firstDetails.numberPresentation,
539 if (phoneUtils.canSendSmsTo(mNumber, numberPresentation)) {
611 final int numberPresentation = callCursor.getInt(
633 PhoneNumberUtilsWrapper.canPlaceCallsTo(number, numberPresentation)
639 numberPresentation, null);
653 return new PhoneCallDetails(number, numberPresentation,
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallWaitingNotification.java 30 public int numberPresentation = 0;
45 + " numberPresentation: " + numberPresentation
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DriverCall.java 49 public int numberPresentation;
72 ret.numberPresentation = PhoneConstants.PRESENTATION_ALLOWED;
115 /*+ "number=" + number */ + ",cli=" + numberPresentation + ","
  /frameworks/base/core/java/android/provider/
CallLog.java 308 int numberPresentation = PRESENTATION_ALLOWED;
316 numberPresentation = PRESENTATION_RESTRICTED;
318 numberPresentation = PRESENTATION_PAYPHONE;
321 numberPresentation = PRESENTATION_UNKNOWN;
323 if (numberPresentation != PRESENTATION_ALLOWED) {
333 values.put(NUMBER_PRESENTATION, Integer.valueOf(numberPresentation));
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 143 final int numberPresentation = mCursor.getInt(NUMBER_PRESENTATION_COLUMN_INDEX);
147 if (numberPresentation != Calls.PRESENTATION_ALLOWED) {
BluetoothPbapVcardManager.java 219 final int numberPresentation = callCursor.getInt(
221 if (numberPresentation != Calls.PRESENTATION_ALLOWED) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 86 public int numberPresentation;
604 .append("\nnumberPresentation: " + numberPresentation)
  /packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java 122 newCall.numberPresentation).toString();
214 public final int numberPresentation;
217 int numberPresentation) {
221 this.numberPresentation = numberPresentation;
CallLogFragment.java 364 int numberPresentation = cursor.getInt(CallLogQuery.NUMBER_PRESENTATION);
365 if (!PhoneNumberUtilsWrapper.canPlaceCallsTo(number, numberPresentation)) {
CallLogAdapter.java 521 final int numberPresentation = c.getInt(CallLogQuery.NUMBER_PRESENTATION);
534 } else if (PhoneNumberUtilsWrapper.canPlaceCallsTo(number, numberPresentation)) {
561 if (!PhoneNumberUtilsWrapper.canPlaceCallsTo(number, numberPresentation)
605 details = new PhoneCallDetails(number, numberPresentation,
609 details = new PhoneCallDetails(number, numberPresentation,
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfo.java 84 public int numberPresentation;
605 .append("\nnumberPresentation: " + numberPresentation)
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
AtPhonebook.java 532 int numberPresentation = Calls.PRESENTATION_ALLOWED;
534 numberPresentation = pbr.cursor.getInt(pbr.numberPresentationColumn);
536 if (numberPresentation != Calls.PRESENTATION_ALLOWED) {
  /hardware/ril/include/telephony/
ril.h 186 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
590 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
597 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
    [all...]

Completed in 962 milliseconds