Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/tests/src/com/android/providers/media/util/
DXmpDataParserTest.java101 final String redactedXmp = new String(xmp.getRedactedXmp()); in testContainer_ExifRedactionRanges() local
102 assertThat(redactedXmp).doesNotContain("exif:GPSLatitude"); in testContainer_ExifRedactionRanges()
103 assertThat(redactedXmp).doesNotContain("exif:GPSLongitude"); in testContainer_ExifRedactionRanges()
104 assertThat(redactedXmp).contains("exif:ShutterSpeedValue"); in testContainer_ExifRedactionRanges()
121 final String redactedXmp = new String(xmpInterface.getRedactedXmp()); in testContainer_IsoRedactionRanges() local
122 assertThat(redactedXmp).doesNotContain("exif:GPSLatitude"); in testContainer_IsoRedactionRanges()
123 assertThat(redactedXmp).doesNotContain("exif:GPSLongitude"); in testContainer_IsoRedactionRanges()
124 assertThat(redactedXmp).contains("exif:ShutterSpeedValue"); in testContainer_IsoRedactionRanges()
/packages/providers/MediaProvider/src/com/android/providers/media/util/
DXmpInterface.java42 String instanceId, String originalDocumentId, @NonNull byte[] redactedXmp) { in XmpInterface() argument
47 mRedactedXmp = redactedXmp; in XmpInterface()
77 Builder(byte[] redactedXmp) { in Builder() argument
78 mRedactedXmp = redactedXmp; in Builder()