Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DFilterMapTest.java199 "type", FilterValue.ofStringList(Arrays.asList("1", "2", "3", "4"))); in createExampleV2()
200 attributionFilterMap.put("ctid", FilterValue.ofStringList(Collections.singletonList("id"))); in createExampleV2()
DSourceTest.java892 FilterValue.ofStringList(Collections.singletonList("electronics")), in testAggregatableAttributionSourceWithTrigger_addsLookbackWindow()
894 FilterValue.ofStringList(Collections.singletonList("event")), in testAggregatableAttributionSourceWithTrigger_addsLookbackWindow()
979 FilterValue.ofStringList(List.of("electronics")), in testGetFilterData_withTrigger_addsLookbackWindow()
981 FilterValue.ofStringList(List.of("1234", "2345")), in testGetFilterData_withTrigger_addsLookbackWindow()
983 FilterValue.ofStringList(List.of("navigation")), in testGetFilterData_withTrigger_addsLookbackWindow()
1001 FilterValue.ofStringList(List.of("navigation")), in testGetFilterData_withTriggerAndEmptyData_addsLookbackWindow()
1022 .containsExactly("product", FilterValue.ofStringList(List.of("1234", "2345"))); in testGetSharedFilterData_withLongValue_success()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DFilterMap.java184 mBuilding.mAttributionFilterMapWithLongValue.put(key, FilterValue.ofStringList(value)); in addStringListValue()
249 filterMap.put(key, FilterValue.ofStringList(filterMapList)); in buildFilterDataV2()
DFilterValue.java42 public static FilterValue ofStringList(List<String> stringList) { in ofStringList() method in FilterValue