Home
last modified time | relevance | path

Searched refs:connectionLabel (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/contactgrid/
DTopRow.java147 } else if (state.isWifi() && !TextUtils.isEmpty(state.connectionLabel())) { in getLabelForIncoming()
148 return state.connectionLabel(); in getLabelForIncoming()
159 Assert.isNotNull(state.connectionLabel()); in getColoredConnectionLabel()
161 context.getString(R.string.contact_grid_incoming_via_template, state.connectionLabel()); in getColoredConnectionLabel()
164 int start = label.indexOf(state.connectionLabel()); in getColoredConnectionLabel()
165 int end = start + state.connectionLabel().length(); in getColoredConnectionLabel()
192 if (!TextUtils.isEmpty(state.connectionLabel()) && !state.isWifi()) { in getLabelForDialing()
236 R.string.incall_calling_on_recent_choice_template, state.connectionLabel()); in getCallingViaLabel()
239 R.string.incall_calling_on_same_carrier_template, state.connectionLabel()); in getCallingViaLabel()
244 return context.getString(R.string.incall_calling_via_template, state.connectionLabel()); in getCallingViaLabel()
[all …]
/packages/apps/Dialer/java/com/android/incallui/incall/protocol/
DPrimaryCallState.java61 public abstract String connectionLabel(); in connectionLabel() method in PrimaryCallState
149 public abstract Builder setConnectionLabel(String connectionLabel); in setConnectionLabel() argument
214 Locale.US, "PrimaryCallState, state: %d, connectionLabel: %s", state(), connectionLabel()); in toString()