Home
last modified time | relevance | path

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

/cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
DMyDocumentsProvider.java119 String[] streamTypes) { in buildDoc() argument
124 doc.streamTypes = streamTypes; in buildDoc()
208 public String[] streamTypes; field in MyDocumentsProvider.Doc
284 doc.streamTypes); in copyDocument()
435 return doc.streamTypes; in getStreamTypes()
452 for (String streamType : doc.streamTypes) { in openTypedDocument()
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DDocumentsClientTest.java186 final String streamTypes[] = resolver.getStreamTypes(uri, "*/*"); in testOpenVirtual() local
187 assertEquals(1, streamTypes.length); in testOpenVirtual()
188 assertEquals("text/plain", streamTypes[0]); in testOpenVirtual()
200 "Converted contents.".getBytes(), readTypedFully(uri, streamTypes[0])); in testOpenVirtual()