Home
last modified time | relevance | path

Searched refs:COMPONENT_NAME_VALIDATOR (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/packages/SettingsProvider/src/android/provider/settings/validators/
H A DComponentNameListValidator.java19 import static android.provider.settings.validators.SettingsValidators.COMPONENT_NAME_VALIDATOR;
38 return COMPONENT_NAME_VALIDATOR.validate(item); in isItemValid()
H A DAccessibilityShortcutTargetListValidator.java19 import static android.provider.settings.validators.SettingsValidators.COMPONENT_NAME_VALIDATOR;
44 return (COMPONENT_NAME_VALIDATOR.validate(item) || PACKAGE_NAME_VALIDATOR.validate(item)); in isItemValid()
H A DSettingsValidators.java111 public static final Validator COMPONENT_NAME_VALIDATOR = new Validator() { field in SettingsValidators
124 return value == null || COMPONENT_NAME_VALIDATOR.validate(value);
H A DSystemSettingsValidators.java22 import static android.provider.settings.validators.SettingsValidators.COMPONENT_NAME_VALIDATOR;
178 VALIDATORS.put(System.MEDIA_BUTTON_RECEIVER, COMPONENT_NAME_VALIDATOR); in VALIDATORS.put() argument
H A DSecureSettingsValidators.java26 import static android.provider.settings.validators.SettingsValidators.COMPONENT_NAME_VALIDATOR;
171 VALIDATORS.put(Secure.NFC_PAYMENT_DEFAULT_COMPONENT, COMPONENT_NAME_VALIDATOR); in VALIDATORS.put() argument
/aosp14/frameworks/base/packages/SettingsProvider/test/src/android/provider/settings/validators/
H A DSettingsValidatorsTest.java83 assertTrue(SettingsValidators.COMPONENT_NAME_VALIDATOR.validate( in testComponentNameValidator()
85 assertFalse(SettingsValidators.COMPONENT_NAME_VALIDATOR.validate("rectangle")); in testComponentNameValidator()
90 assertFalse(SettingsValidators.COMPONENT_NAME_VALIDATOR.validate(null)); in testComponentNameValidator_onNullValue_returnsFalse()
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt43090 Landroid/provider/SettingsValidators;->COMPONENT_NAME_VALIDATOR:Landroid/provider/SettingsValidator…