Searched refs:DataEntry (Results 1 - 25 of 27) sorted by relevance

12

/external/proguard/src/proguard/io/
H A DDataEntryFilter.java37 public boolean accepts(DataEntry dataEntry);
H A DDataEntry.java31 public interface DataEntry interface
61 public DataEntry getParent();
H A DDataEntryReader.java37 public void read(DataEntry dataEntry) throws IOException;
H A DDataEntryWriter.java40 public boolean createDirectory(DataEntry dataEntry) throws IOException;
51 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException;
65 public OutputStream getOutputStream(DataEntry dataEntry,
H A DDataEntryDirectoryFilter.java34 public boolean accepts(DataEntry dataEntry)
H A DRenamedDataEntry.java26 * This DataEntry wraps another data entry, returning a different name instead
31 public class RenamedDataEntry implements DataEntry
33 private final DataEntry dataEntry;
37 public RenamedDataEntry(DataEntry dataEntry,
45 // Implementations for DataEntry.
71 public DataEntry getParent()
H A DParentDataEntryWriter.java50 public boolean createDirectory(DataEntry dataEntry) throws IOException
56 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
62 public OutputStream getOutputStream(DataEntry dataEntry,
H A DDataEntryParentFilter.java47 public boolean accepts(DataEntry dataEntry)
H A DCascadingDataEntryWriter.java56 public boolean createDirectory(DataEntry dataEntry) throws IOException
65 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
71 public OutputStream getOutputStream(DataEntry dataEntry,
H A DDataEntryClassWriter.java32 * given DataEntry, modified to have the correct name.
41 private final DataEntry templateDataEntry;
46 * DataEntryWriter, based on the given template DataEntry.
49 DataEntry templateDataEntry)
62 DataEntry actualDataEntry =
H A DDataEntryNameFilter.java50 public boolean accepts(DataEntry dataEntry)
H A DZipDataEntry.java29 * This <code>DataEntry</code> represents a ZIP entry.
33 public class ZipDataEntry implements DataEntry
35 private final DataEntry parent;
41 public ZipDataEntry(DataEntry parent,
51 // Implementations for DataEntry.
93 public DataEntry getParent()
H A DFileDataEntry.java28 * This <code>DataEntry</code> represents a file.
32 public class FileDataEntry implements DataEntry
47 // Implementations for DataEntry.
84 public DataEntry getParent()
H A DDirectoryWriter.java58 public boolean createDirectory(DataEntry dataEntry) throws IOException
78 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
84 public OutputStream getOutputStream(DataEntry dataEntry,
134 private File getFile(DataEntry dataEntry)
H A DJarReader.java48 public void read(DataEntry dataEntry) throws IOException
H A DDataEntryObfuscator.java63 public void read(DataEntry dataEntry) throws IOException
73 private DataEntry renamedDataEntry(DataEntry dataEntry)
H A DFilteredDataEntryWriter.java77 public boolean createDirectory(DataEntry dataEntry) throws IOException
90 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
96 public OutputStream getOutputStream(DataEntry dataEntry,
H A DJarWriter.java45 private DataEntry currentDataEntry;
75 public boolean createDirectory(DataEntry dataEntry) throws IOException
108 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
114 public OutputStream getOutputStream(DataEntry dataEntry,
182 private boolean prepareEntry(DataEntry dataEntry) throws IOException
H A DFilteredDataEntryReader.java78 public void read(DataEntry dataEntry)
H A DClassRewriter.java51 public void read(DataEntry dataEntry) throws IOException
H A DClassReader.java71 public void read(DataEntry dataEntry) throws IOException
H A DDataEntryRenamer.java76 public void read(DataEntry dataEntry) throws IOException
/external/skia/include/ports/
H A DSkFontMgr_indirect.h66 struct DataEntry { struct in class:SkFontMgr_Indirect
71 DataEntry() { } function in struct:SkFontMgr_Indirect::DataEntry
73 DataEntry(DataEntry&& that) function in struct:SkFontMgr_Indirect::DataEntry
83 ~DataEntry() {
95 mutable SkTArray<DataEntry> fDataCache;
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp470 const data_directory *DataEntry; local
471 if (getDataDirectory(COFF::IMPORT_TABLE, DataEntry))
475 if (DataEntry->RelativeVirtualAddress == 0)
478 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress;
480 NumberOfImportDirectory = DataEntry->Size /
495 const data_directory *DataEntry; local
496 if (getDataDirectory(COFF::DELAY_IMPORT_DESCRIPTOR, DataEntry))
498 if (DataEntry->RelativeVirtualAddress == 0)
501 uint32_t RVA = DataEntry->RelativeVirtualAddress;
502 NumberOfDelayImportDirectory = DataEntry
517 const data_directory *DataEntry; local
535 const data_directory *DataEntry; local
[all...]
/external/skia/src/fonts/
H A DSkFontMgr_indirect.cpp103 const DataEntry& entry = fDataCache[i];
143 DataEntry& newEntry = fDataCache.push_back();

Completed in 948 milliseconds

12