Home
last modified time | relevance | path

Searched refs:uxr (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
DCarUxRestrictionsUtil.java135 @Nullable CarUxRestrictions uxr) { in isRestricted() argument
136 return (uxr == null) || ((uxr.getActiveRestrictions() & restrictionFlags) != 0); in isRestricted()
143 public static String complyString(Context context, String str, CarUxRestrictions uxr) { in complyString() argument
145 if (isRestricted(UX_RESTRICTIONS_LIMIT_STRING_LENGTH, uxr)) { in complyString()
146 int maxLength = uxr == null in complyString()
148 : uxr.getMaxRestrictedStringLength(); in complyString()
/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/utils/
DCarUxRestrictionsUtil.java134 @CarUxRestrictionsInfo int restrictionFlags, @Nullable CarUxRestrictions uxr) { in isRestricted() argument
135 return (uxr == null) || ((uxr.getActiveRestrictions() & restrictionFlags) != 0); in isRestricted()
142 public static String complyString(Context context, String str, CarUxRestrictions uxr) { in complyString() argument
144 if (isRestricted(UX_RESTRICTIONS_LIMIT_STRING_LENGTH, uxr)) { in complyString()
146 uxr == null in complyString()
149 : uxr.getMaxRestrictedStringLength(); in complyString()
/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/uxr/
DDrawableStateView.java16 package com.android.car.ui.uxr;
DDrawableStateButton.java16 package com.android.car.ui.uxr;
DDrawableStateSwitch.java16 package com.android.car.ui.uxr;
/packages/services/Car/car-lib/src/android/car/drivingstate/
DCarUxRestrictionsConfiguration.java207 @CarUxRestrictions.CarUxRestrictionsInfo int uxr) { in createUxRestrictionsEvent() argument
211 if (uxr != CarUxRestrictions.UX_RESTRICTIONS_BASELINE) { in createUxRestrictionsEvent()
214 CarUxRestrictions.Builder builder = new CarUxRestrictions.Builder(requiresOpt, uxr, in createUxRestrictionsEvent()
/packages/services/Car/tests/UxRestrictionsSample/src/com/google/android/car/uxr/sample/
DConfigurationDialogFragment.java16 package com.google.android.car.uxr.sample;
DMainActivity.java16 package com.google.android.car.uxr.sample;
/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/toolbar/
DMenuItemRenderer.java41 import com.android.car.ui.uxr.DrawableStateView;