Home
last modified time | relevance | path

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

/cts/tests/tests/content/src/android/content/cts/
DUriRelativeFilterGroupTest.java62 UriRelativeFilterGroup group = maskToGroup(ACTION_ALLOW, i); in testGroupMatch()
77 mGroups.add(maskToGroup(ACTION_ALLOW, PATH_MASK)); in testMatchGroupsToUri_matchAnyGroup()
78 mGroups.add(maskToGroup(ACTION_ALLOW, QUERY_MASK)); in testMatchGroupsToUri_matchAnyGroup()
79 mGroups.add(maskToGroup(ACTION_ALLOW, FRAGMENT_MASK)); in testMatchGroupsToUri_matchAnyGroup()
88 mGroups.add(maskToGroup(ACTION_BLOCK, PATH_MASK)); in testMachGroupsToUri_blockMatch()
89 mGroups.add(maskToGroup(ACTION_ALLOW, PATH_MASK | QUERY_MASK)); in testMachGroupsToUri_blockMatch()
90 mGroups.add(maskToGroup(ACTION_ALLOW, FRAGMENT_MASK)); in testMachGroupsToUri_blockMatch()
100 mGroups.add(maskToGroup(ACTION_BLOCK, PATH_MASK)); in testMatchGroupsToUri_ignoreNonMatchingBlocks()
101 mGroups.add(maskToGroup(ACTION_ALLOW, FRAGMENT_MASK)); in testMatchGroupsToUri_ignoreNonMatchingBlocks()
120 private UriRelativeFilterGroup maskToGroup(int action, int mask) { in maskToGroup() method in UriRelativeFilterGroupTest