Lines Matching defs:info
162 CallerInfo info = new CallerInfo();
163 info.photoResource = 0;
164 info.phoneLabel = null;
165 info.numberType = 0;
166 info.numberLabel = null;
167 info.cachedPhoto = null;
168 info.isCachedPhotoCurrent = false;
169 info.contactExists = false;
184 info.name = cursor.getString(columnIndex);
190 info.phoneNumber = cursor.getString(columnIndex);
196 info.normalizedNumber = cursor.getString(columnIndex);
204 info.numberType = cursor.getInt(typeColumnIndex);
205 info.numberLabel = cursor.getString(columnIndex);
206 info.phoneLabel = Phone.getTypeLabel(context.getResources(),
207 info.numberType, info.numberLabel)
217 info.contactIdOrZero = contactId;
218 Log.v(TAG, "==> got info.contactIdOrZero: " + info.contactIdOrZero);
223 info.lookupKeyOrNull = cursor.getString(columnIndex);
237 info.contactDisplayPhotoUri = Uri.parse(cursor.getString(columnIndex));
239 info.contactDisplayPhotoUri = null;
246 info.contactRingtoneUri = Uri.parse(cursor.getString(columnIndex));
248 info.contactRingtoneUri = null;
254 info.shouldSendToVoicemail = (columnIndex != -1) &&
256 info.contactExists = true;
261 info.needUpdate = false;
262 info.name = normalize(info.name);
263 info.contactRefUri = contactRef;
265 return info;
309 * @return true if the caller info is an emergency number.
316 * @return true if the caller info is a voicemail number.
392 * it's run from the UI thread (see comments below for more info.)