Home
last modified time | relevance | path

Searched refs:DataEntry (Results 1 – 25 of 35) sorted by relevance

12

/external/skia/include/ports/
DSkFontMgr_indirect.h63 struct DataEntry { struct
68 DataEntry() = default; argument
70 DataEntry(DataEntry&& that) { *this = std::move(that); } in DataEntry() argument
71 DataEntry& operator=(DataEntry&& that) {
84 ~DataEntry() { in ~DataEntry() argument
96 mutable SkTArray<DataEntry> fDataCache;
/external/skqp/include/ports/
DSkFontMgr_indirect.h64 struct DataEntry { struct
69 DataEntry() { } in DataEntry() argument
71 DataEntry(DataEntry&& that) in DataEntry() argument
81 ~DataEntry() { in ~DataEntry() argument
93 mutable SkTArray<DataEntry> fDataCache;
/external/proguard/src/proguard/io/
DRenamedDataEntry.java31 public class RenamedDataEntry implements DataEntry
33 private final DataEntry dataEntry;
37 public RenamedDataEntry(DataEntry dataEntry, in RenamedDataEntry()
71 public DataEntry getParent() in getParent()
DZipDataEntry.java33 public class ZipDataEntry implements DataEntry
35 private final DataEntry parent;
41 public ZipDataEntry(DataEntry parent, in ZipDataEntry()
93 public DataEntry getParent() in getParent()
DJarWriter.java45 private DataEntry currentDataEntry;
75 public boolean createDirectory(DataEntry dataEntry) throws IOException in createDirectory()
108 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException in getOutputStream()
114 public OutputStream getOutputStream(DataEntry dataEntry, in getOutputStream()
182 private boolean prepareEntry(DataEntry dataEntry) throws IOException in prepareEntry()
DDataEntryWriter.java40 public boolean createDirectory(DataEntry dataEntry) throws IOException; in createDirectory()
51 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException; in getOutputStream()
65 public OutputStream getOutputStream(DataEntry dataEntry, in getOutputStream()
DDirectoryWriter.java58 public boolean createDirectory(DataEntry dataEntry) throws IOException in createDirectory()
78 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException in getOutputStream()
84 public OutputStream getOutputStream(DataEntry dataEntry, in getOutputStream()
134 private File getFile(DataEntry dataEntry) in getFile()
DParentDataEntryWriter.java50 public boolean createDirectory(DataEntry dataEntry) throws IOException in createDirectory()
56 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException in getOutputStream()
62 public OutputStream getOutputStream(DataEntry dataEntry, in getOutputStream()
DCascadingDataEntryWriter.java56 public boolean createDirectory(DataEntry dataEntry) throws IOException in createDirectory()
65 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException in getOutputStream()
71 public OutputStream getOutputStream(DataEntry dataEntry, in getOutputStream()
DDataEntryClassWriter.java41 private final DataEntry templateDataEntry;
49 DataEntry templateDataEntry) in DataEntryClassWriter()
62 DataEntry actualDataEntry = in visitProgramClass()
DFilteredDataEntryWriter.java77 public boolean createDirectory(DataEntry dataEntry) throws IOException in createDirectory()
90 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException in getOutputStream()
96 public OutputStream getOutputStream(DataEntry dataEntry, in getOutputStream()
DDataEntryObfuscator.java63 public void read(DataEntry dataEntry) throws IOException in read()
73 private DataEntry renamedDataEntry(DataEntry dataEntry) in renamedDataEntry()
DDataEntry.java31 public interface DataEntry interface
61 public DataEntry getParent(); in getParent()
DFileDataEntry.java32 public class FileDataEntry implements DataEntry
84 public DataEntry getParent() in getParent()
DDataEntryFilter.java37 public boolean accepts(DataEntry dataEntry); in accepts()
DDataEntryReader.java37 public void read(DataEntry dataEntry) throws IOException; in read()
DDataEntryDirectoryFilter.java34 public boolean accepts(DataEntry dataEntry) in accepts()
DDataEntryParentFilter.java47 public boolean accepts(DataEntry dataEntry) in accepts()
DDataEntryNameFilter.java50 public boolean accepts(DataEntry dataEntry) in accepts()
DJarReader.java48 public void read(DataEntry dataEntry) throws IOException in read()
DFilteredDataEntryReader.java78 public void read(DataEntry dataEntry) in read()
/external/llvm-project/llvm/lib/Object/
DCOFFObjectFile.cpp543 const data_directory *DataEntry = getDataDirectory(COFF::IMPORT_TABLE); in initImportTablePtr() local
544 if (!DataEntry) in initImportTablePtr()
548 if (DataEntry->RelativeVirtualAddress == 0) in initImportTablePtr()
551 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; in initImportTablePtr()
558 if (Error E = checkOffset(Data, IntPtr, DataEntry->Size)) in initImportTablePtr()
567 const data_directory *DataEntry = in initDelayImportTablePtr() local
569 if (!DataEntry) in initDelayImportTablePtr()
571 if (DataEntry->RelativeVirtualAddress == 0) in initDelayImportTablePtr()
574 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr()
575 NumberOfDelayImportDirectory = DataEntry->Size / in initDelayImportTablePtr()
[all …]
/external/llvm/lib/Object/
DCOFFObjectFile.cpp523 const data_directory *DataEntry; in initImportTablePtr() local
524 if (getDataDirectory(COFF::IMPORT_TABLE, DataEntry)) in initImportTablePtr()
528 if (DataEntry->RelativeVirtualAddress == 0) in initImportTablePtr()
531 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; in initImportTablePtr()
538 if (std::error_code EC = checkOffset(Data, IntPtr, DataEntry->Size)) in initImportTablePtr()
547 const data_directory *DataEntry; in initDelayImportTablePtr() local
548 if (getDataDirectory(COFF::DELAY_IMPORT_DESCRIPTOR, DataEntry)) in initDelayImportTablePtr()
550 if (DataEntry->RelativeVirtualAddress == 0) in initDelayImportTablePtr()
553 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr()
554 NumberOfDelayImportDirectory = DataEntry->Size / in initDelayImportTablePtr()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DCOFFObjectFile.cpp540 const data_directory *DataEntry; in initImportTablePtr() local
541 if (getDataDirectory(COFF::IMPORT_TABLE, DataEntry)) in initImportTablePtr()
545 if (DataEntry->RelativeVirtualAddress == 0) in initImportTablePtr()
548 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; in initImportTablePtr()
555 if (std::error_code EC = checkOffset(Data, IntPtr, DataEntry->Size)) in initImportTablePtr()
564 const data_directory *DataEntry; in initDelayImportTablePtr() local
565 if (getDataDirectory(COFF::DELAY_IMPORT_DESCRIPTOR, DataEntry)) in initDelayImportTablePtr()
567 if (DataEntry->RelativeVirtualAddress == 0) in initDelayImportTablePtr()
570 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr()
571 NumberOfDelayImportDirectory = DataEntry->Size / in initDelayImportTablePtr()
[all …]
/external/skia/src/fonts/
DSkFontMgr_indirect.cpp88 const DataEntry& entry = fDataCache[i]; in createTypefaceFromFontId()
128 DataEntry& newEntry = fDataCache.push_back(); in createTypefaceFromFontId()

12