Home | History | Annotate | Download | only in incallui

Lines Matching refs:number

75         public String number;
226 // Change the callerInfo number ONLY if it is an emergency number or the
227 // voicemail number, and adjust other data (including photoResource)
230 // Note we're setting the phone number here (refer to javadoc
240 mQueryContext, cw.number, mCallerInfo);
250 // no contacts matched the phone number of the incoming call),
261 // Actually when no contacts match the incoming phone number,
263 // *or* phoneNumber). So we need to pass in cw.number as
264 // a fallback number.
265 mCallerInfo.updateGeoDescription(mQueryContext, cw.number);
269 // Use the number entered by the user for display.
270 if (!TextUtils.isEmpty(cw.number)) {
271 mCallerInfo.phoneNumber = PhoneNumberUtils.formatNumber(cw.number,
324 * Factory method to start the query based on a number.
326 * Note: if the number contains an "@" character we treat it
334 public static CallerInfoAsyncQuery startQuery(int token, Context context, String number,
337 Log.d(LOG_TAG, "- number: " + /* number */"xxxxxxx");
346 if (PhoneNumberUtils.isUriNumber(number)) {
347 // "number" is really a SIP address.
348 Log.d(LOG_TAG, " - Treating number as a SIP address: " + /* number */"xxxxxxx");
370 selectionArgs = new String[] { number.toUpperCase() };
373 // "number" is a regular phone number. Use the PhoneLookup table:
374 contactRef = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
396 cw.number = number;
399 if (PhoneNumberUtils.isLocalEmergencyNumber(number, context)) {
401 } else if (PhoneNumberUtils.isVoiceMailNumber(number)) {