Home | History | Annotate | Download | only in incallui

Lines Matching refs:isGeneric

180             Drawable photo, boolean isConference, boolean isGeneric, boolean isSipCall) {
184 name = getConferenceString(isGeneric);
185 photo = getConferencePhoto(isGeneric);
204 Drawable photo, boolean isConference, boolean isGeneric) {
208 name = getConferenceString(isGeneric);
209 photo = getConferencePhoto(isGeneric);
332 private String getConferenceString(boolean isGeneric) {
333 Log.v(this, "isGenericString: " + isGeneric);
334 final int resId = isGeneric ? R.string.card_title_in_call : R.string.card_title_conf_call;
338 private Drawable getConferencePhoto(boolean isGeneric) {
339 Log.v(this, "isGenericPhoto: " + isGeneric);
340 final int resId = isGeneric ? R.drawable.picture_dialing : R.drawable.picture_conference;