Home
last modified time | relevance | path

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

/cts/hostsidetests/packagemanager/dynamicmime/test/src/android/dynamicmime/testapp/
DSingleAppTest.java22 import static android.dynamicmime.common.Constants.MIME_IMAGE_ANY;
52 assertNotMatchedByMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testGroupWithExactType()
61 assertNotMatchedByMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testGroupWithWildcardType()
69 assertMatchedByMimeGroup(GROUP_FIRST, MIME_TEXT_PLAIN, MIME_TEXT_ANY, MIME_IMAGE_ANY); in testGroupWithAnyType()
83 addMimeTypeToGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testAddDifferentTypes()
85 assertMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY, MIME_TEXT_PLAIN); in testAddDifferentTypes()
176 addMimeTypeToGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentAddToBoth()
178 assertMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentAddToBoth()
184 setMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentRemove()
188 removeMimeTypeFromGroup(GROUP_SECOND, MIME_IMAGE_ANY); in testMimeGroupsIndependentRemove()
[all …]
DMultipleAppsTest.java19 import static android.dynamicmime.common.Constants.MIME_IMAGE_ANY;
55 setMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentSet()
57 assertMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentSet()
63 setMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentReset()
67 helperApp().removeMimeTypeFromGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentReset()
69 assertMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY); in testMimeGroupsIndependentReset()
75 setMimeGroup(GROUP_FIRST, MIME_IMAGE_ANY, MIME_TEXT_ANY); in testMimeGroupsIndependentClear()
/cts/hostsidetests/packagemanager/dynamicmime/common/src/android/dynamicmime/common/
DConstants.java43 public static final String MIME_IMAGE_ANY = "image/*"; field in Constants