Searched refs:JSON_OBJECT_VALIDATOR (Results 1 – 3 of 3) sorted by relevance
224 Validator v = SettingsValidators.JSON_OBJECT_VALIDATOR; in testJSONObjectValidator()239 assertTrue(SettingsValidators.JSON_OBJECT_VALIDATOR.validate(null)); in testJSONObjectValidator_onNullValue_returnsTrue()244 assertFalse(SettingsValidators.JSON_OBJECT_VALIDATOR.validate("")); in testJSONObjectValidator_onEmptyString_returnsFalse()
26 import static android.provider.settings.validators.SettingsValidators.JSON_OBJECT_VALIDATOR;216 VALIDATORS.put(Secure.LOCK_SCREEN_CUSTOM_CLOCK_FACE, JSON_OBJECT_VALIDATOR); in VALIDATORS.put() argument227 VALIDATORS.put(Secure.THEME_CUSTOMIZATION_OVERLAY_PACKAGES, JSON_OBJECT_VALIDATOR); in VALIDATORS.put() argument
175 public static final Validator JSON_OBJECT_VALIDATOR = (value) -> { field in SettingsValidators