Searched refs:BOOLEAN_FALSE (Results 1 – 8 of 8) sorted by relevance
22 import static android.adservices.extdata.AdServicesExtDataParams.BOOLEAN_FALSE;80 .setMsmtConsent(BOOLEAN_FALSE)82 .setIsAdultAccount(BOOLEAN_FALSE)137 expect.that(result.getIsMeasurementConsented()).isEqualTo(BOOLEAN_FALSE); in testGetAdServicesExtData_onResultSet_returnsParams()140 expect.that(result.getIsAdultAccount()).isEqualTo(BOOLEAN_FALSE); in testGetAdServicesExtData_onResultSet_returnsParams()260 expect.that(mParamsCaptor.getValue().getIsMeasurementConsented()).isEqualTo(BOOLEAN_FALSE); in testSetMsmtConsent_withFalse()315 expect.that(mParamsCaptor.getValue().getIsNotificationDisplayed()).isEqualTo(BOOLEAN_FALSE); in testSetNotifDisplayed_withFalse()341 .setNotificationDisplayed(BOOLEAN_FALSE) in testGetNotifDisplayed_withZeroRetrieved_returnsFalse()351 expect.that(mParamsCaptor.getValue().getIsAdultAccount()).isEqualTo(BOOLEAN_FALSE); in testSetIsAdultAccount_withFalse()381 expect.that(mParamsCaptor.getValue().getIsU18Account()).isEqualTo(BOOLEAN_FALSE); in testSetIsU18Account_withFalse()[all …]
19 import static android.adservices.extdata.AdServicesExtDataParams.BOOLEAN_FALSE;59 .setMsmtConsent(BOOLEAN_FALSE)61 .setIsAdultAccount(BOOLEAN_FALSE)
20 import static android.adservices.extdata.AdServicesExtDataParams.BOOLEAN_FALSE;62 .setMsmtConsent(BOOLEAN_FALSE)64 .setIsAdultAccount(BOOLEAN_FALSE)
18 import static android.adservices.extdata.AdServicesExtDataParams.BOOLEAN_FALSE;72 /*isMeasurementConsented=*/ BOOLEAN_FALSE, in testAdServicesExtDataStorageService()74 /*isAdultAccount=*/ BOOLEAN_FALSE, in testAdServicesExtDataStorageService()
22 import static android.adservices.extdata.AdServicesExtDataParams.BOOLEAN_FALSE;292 .setMsmtConsent(isGiven ? BOOLEAN_TRUE : BOOLEAN_FALSE) in setMsmtConsent()333 .setNotificationDisplayed(isGiven ? BOOLEAN_TRUE : BOOLEAN_FALSE) in setNotificationDisplayed()354 .setIsU18Account(isU18Account ? BOOLEAN_TRUE : BOOLEAN_FALSE) in setIsU18Account()372 .setIsAdultAccount(isAdultAccount ? BOOLEAN_TRUE : BOOLEAN_FALSE) in setIsAdultAccount()
19 import static android.adservices.extdata.AdServicesExtDataParams.BOOLEAN_FALSE;63 .setMsmtConsent(BOOLEAN_FALSE)65 .setIsAdultAccount(BOOLEAN_FALSE)183 when(mAdServicesExtDataParamsMock.getIsNotificationDisplayed()).thenReturn(BOOLEAN_FALSE); in testHandleConsentMigrationFromAdExtDataIfNeededV2_onSWithNoNotifOnR_skipsMigration()457 when(mAdServicesExtDataParamsMock.getIsNotificationDisplayed()).thenReturn(BOOLEAN_FALSE); in testHandleConsentMigrationFromAdExtDataIfNeededV2_onTWithNoNotifOnR_skipsMigration()
19 import static android.adservices.extdata.AdServicesExtDataParams.BOOLEAN_FALSE;64 .setMsmtConsent(BOOLEAN_FALSE)66 .setIsAdultAccount(BOOLEAN_FALSE)183 when(mAdServicesExtDataParamsMock.getIsNotificationDisplayed()).thenReturn(BOOLEAN_FALSE); in testHandleConsentMigrationFromAdExtDataIfNeeded_onSWithNoNotifOnR_skipsMigration()456 when(mAdServicesExtDataParamsMock.getIsNotificationDisplayed()).thenReturn(BOOLEAN_FALSE); in testHandleConsentMigrationFromAdExtDataIfNeeded_onTWithNoNotifOnR_skipsMigration()
48 value = {BOOLEAN_TRUE, BOOLEAN_FALSE, BOOLEAN_UNKNOWN})63 public static final int BOOLEAN_FALSE = 0; field in AdServicesExtDataParams