Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
DArchiveHandleTest.java72 private static class ArchiveEntryRecord implements ArchiveEntry { class in ArchiveHandleTest
77 private ArchiveEntryRecord(ArchiveEntry archiveEntry) { in ArchiveEntryRecord() method in ArchiveHandleTest.ArchiveEntryRecord
81 private ArchiveEntryRecord(String name, long size, boolean isDirectory) { in ArchiveEntryRecord() method in ArchiveHandleTest.ArchiveEntryRecord
93 if (obj instanceof ArchiveEntryRecord) { in equals()
94 ArchiveEntryRecord recordB = (ArchiveEntryRecord) obj; in equals()
134 list.add(new ArchiveEntryRecord(enumeration.nextElement())); in transformToIterable()
139 private static final List<ArchiveEntryRecord> sExpectEntries =
140 new ArrayList<ArchiveEntryRecord>() {
142 add(new ArchiveEntryRecord("hello/hello.txt", 48, false));
143 add(new ArchiveEntryRecord("hello/inside_folder/hello_insside.txt",
[all …]