Lines Matching defs:number

79         public String number;
229 // Change the callerInfo number ONLY if it is an emergency number or the
230 // voicemail number, and adjust other data (including photoResource)
233 // Note we're setting the phone number here (refer to javadoc
243 mQueryContext, cw.number, mCallerInfo);
253 // no contacts matched the phone number of the incoming call),
264 // Actually when no contacts match the incoming phone number,
266 // *or* phoneNumber). So we need to pass in cw.number as
267 // a fallback number.
268 mCallerInfo.updateGeoDescription(mQueryContext, cw.number);
272 // Use the number entered by the user for display.
273 if (!TextUtils.isEmpty(cw.number)) {
276 mCallerInfo.phoneNumber = PhoneNumberUtils.formatNumber(cw.number,
329 * Factory method to start the query based on a number.
331 * Note: if the number contains an "@" character we treat it
339 public static CallerInfoAsyncQuery startQuery(int token, Context context, String number,
343 Log.d(LOG_TAG, "- number: " + /*number*/ "xxxxxxx");
353 if (PhoneNumberUtils.isUriNumber(number)) {
354 // "number" is really a SIP address.
355 if (DBG) Log.d(LOG_TAG, " - Treating number as a SIP address: " + /*number*/ "xxxxxxx");
377 selectionArgs = new String[] { number.toUpperCase() };
380 // "number" is a regular phone number. Use the PhoneLookup table:
381 contactRef = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
403 cw.number = number;
406 if (PhoneNumberUtils.isLocalEmergencyNumber(number, context)) {
408 } else if (PhoneNumberUtils.isVoiceMailNumber(number)) {