Home | History | Annotate | Download | only in dialer

Lines Matching refs:number

30     /** The number of the other party involved in the call. */
31 public final CharSequence number;
32 /** The number presenting rules set by the network, e.g., {@link Calls#PRESENTATION_ALLOWED} */
34 /** The formatted version of {@link #number}. */
36 /** The country corresponding with the phone number. */
38 /** The geocoded location for the phone number. */
54 /** The custom label associated with the phone number in the contact, or the empty string. */
95 public PhoneCallDetails(CharSequence number, int numberPresentation,
98 this (number, numberPresentation, formattedNumber, countryIso, geocode,
102 /** Create the details for a call with a number not associated with a contact. */
103 public PhoneCallDetails(CharSequence number, int numberPresentation,
107 this(number, numberPresentation, formattedNumber, countryIso, geocode,
112 /** Create the details for a call with a number associated with a contact. */
113 public PhoneCallDetails(CharSequence number, int numberPresentation,
119 this.number = number;