Home
last modified time | relevance | path

Searched refs:RestrictedRadioButton (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
DRestrictedRadioButton.java30 public class RestrictedRadioButton extends RadioButton { class
35 public RestrictedRadioButton(Context context) { in RestrictedRadioButton() method in RestrictedRadioButton
39 public RestrictedRadioButton(Context context, AttributeSet attrs) { in RestrictedRadioButton() method in RestrictedRadioButton
43 public RestrictedRadioButton(Context context, AttributeSet attrs, int defStyleAttr) { in RestrictedRadioButton() method in RestrictedRadioButton
47 public RestrictedRadioButton(Context context, AttributeSet attrs, int defStyleAttr, in RestrictedRadioButton() method in RestrictedRadioButton
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/
DRestrictedRadioButton.java30 public class RestrictedRadioButton extends RadioButton { class
35 public RestrictedRadioButton(Context context) { in RestrictedRadioButton() method in RestrictedRadioButton
39 public RestrictedRadioButton(Context context, AttributeSet attrs) { in RestrictedRadioButton() method in RestrictedRadioButton
43 public RestrictedRadioButton(Context context, AttributeSet attrs, int defStyleAttr) { in RestrictedRadioButton() method in RestrictedRadioButton
47 public RestrictedRadioButton(Context context, AttributeSet attrs, int defStyleAttr, in RestrictedRadioButton() method in RestrictedRadioButton
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/
DRedactionInterstitial.java42 import com.android.car.developeroptions.RestrictedRadioButton;
99 private RestrictedRadioButton mShowAllButton;
100 private RestrictedRadioButton mRedactSensitiveButton;
118 mShowAllButton = (RestrictedRadioButton) view.findViewById(R.id.show_all); in onViewCreated()
120 (RestrictedRadioButton) view.findViewById(R.id.redact_sensitive); in onViewCreated()
169 private void checkNotificationFeaturesAndSetDisabled(RestrictedRadioButton button, in checkNotificationFeaturesAndSetDisabled()
/packages/apps/Settings/src/com/android/settings/notification/
DRedactionInterstitial.java41 import com.android.settings.RestrictedRadioButton;
98 private RestrictedRadioButton mShowAllButton;
99 private RestrictedRadioButton mRedactSensitiveButton;
117 mShowAllButton = (RestrictedRadioButton) view.findViewById(R.id.show_all); in onViewCreated()
119 (RestrictedRadioButton) view.findViewById(R.id.redact_sensitive); in onViewCreated()
168 private void checkNotificationFeaturesAndSetDisabled(RestrictedRadioButton button, in checkNotificationFeaturesAndSetDisabled()
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DRedactionInterstitialTest.java21 import com.android.settings.RestrictedRadioButton;
168 return !((RestrictedRadioButton) getButton(resource)).isDisabledByAdmin(); in buttonEnabled()