Home
last modified time | relevance | path

Searched refs:COMPONENT_NAME_SEPARATOR (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/src/com/android/settings/accessibility/
DAccessibilityUtil.java70 private static final char COMPONENT_NAME_SEPARATOR = ':'; field in AccessibilityUtil
72 new TextUtils.SimpleStringSplitter(COMPONENT_NAME_SEPARATOR);
209 final StringJoiner joiner = new StringJoiner(String.valueOf(COMPONENT_NAME_SEPARATOR)); in optInValueToSettings()
246 final StringJoiner joiner = new StringJoiner(String.valueOf(COMPONENT_NAME_SEPARATOR)); in optOutValueFromSettings()
DToggleScreenMagnificationPreferenceFragment.java72 private static final char COMPONENT_NAME_SEPARATOR = ':'; field in ToggleScreenMagnificationPreferenceFragment
74 new TextUtils.SimpleStringSplitter(COMPONENT_NAME_SEPARATOR);
423 final StringJoiner joiner = new StringJoiner(String.valueOf(COMPONENT_NAME_SEPARATOR)); in optInMagnificationValueToSettings()
463 final StringJoiner joiner = new StringJoiner(String.valueOf(COMPONENT_NAME_SEPARATOR)); in optOutMagnificationValueFromSettings()
DToggleFeaturePreferenceFragment.java448 private static final char COMPONENT_NAME_SEPARATOR = ':'; field in ToggleFeaturePreferenceFragment.AccessibilityUserShortcutType
450 new TextUtils.SimpleStringSplitter(COMPONENT_NAME_SEPARATOR);
485 final StringJoiner joiner = new StringJoiner(String.valueOf(COMPONENT_NAME_SEPARATOR)); in flattenToString()
/packages/services/Car/service/src/com/android/car/
DCarMediaService.java90 private static final String COMPONENT_NAME_SEPARATOR = ","; field in CarMediaService
840 return componentNames.stream().collect(Collectors.joining(COMPONENT_NAME_SEPARATOR)); in serializeComponentNameList()
844 String[] componentNames = serialized.split(COMPONENT_NAME_SEPARATOR); in getComponentNameList()