Searched refs:COMPONENT_NAME_VALIDATOR (Results 1 – 7 of 7) sorted by relevance
19 import static android.provider.settings.validators.SettingsValidators.COMPONENT_NAME_VALIDATOR;38 return COMPONENT_NAME_VALIDATOR.validate(item); in isItemValid()
19 import static android.provider.settings.validators.SettingsValidators.COMPONENT_NAME_VALIDATOR;44 return (COMPONENT_NAME_VALIDATOR.validate(item) || PACKAGE_NAME_VALIDATOR.validate(item)); in isItemValid()
111 public static final Validator COMPONENT_NAME_VALIDATOR = new Validator() { field in SettingsValidators124 return value == null || COMPONENT_NAME_VALIDATOR.validate(value);
22 import static android.provider.settings.validators.SettingsValidators.COMPONENT_NAME_VALIDATOR;178 VALIDATORS.put(System.MEDIA_BUTTON_RECEIVER, COMPONENT_NAME_VALIDATOR); in VALIDATORS.put() argument
26 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
83 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()
43090 Landroid/provider/SettingsValidators;->COMPONENT_NAME_VALIDATOR:Landroid/provider/SettingsValidator…