HomeSort by relevance Sort by last modified time
    Searched refs:dataEntry (Results 1 - 25 of 40) sorted by null

1 2

  /external/proguard/src/proguard/io/
DataEntryDirectoryFilter.java 34 public boolean accepts(DataEntry dataEntry)
36 return dataEntry != null && dataEntry.isDirectory();
RenamedDataEntry.java 26 * 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,
40 this.dataEntry = dataEntry;
45 // Implementations for DataEntry.
55 return dataEntry.isDirectory()
    [all...]
DataEntryParentFilter.java 47 public boolean accepts(DataEntry dataEntry)
49 return dataEntry != null && dataEntryFilter.accepts(dataEntry.getParent());
DataEntryFilter.java 33 * @param dataEntry the data entry to filter.
37 public boolean accepts(DataEntry dataEntry);
ParentDataEntryWriter.java 50 public boolean createDirectory(DataEntry dataEntry) throws IOException
52 return getOutputStream(dataEntry) != null;
56 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
58 return getOutputStream(dataEntry, null);
62 public OutputStream getOutputStream(DataEntry dataEntry,
65 return dataEntryWriter.getOutputStream(dataEntry.getParent(),
CascadingDataEntryWriter.java 56 public boolean createDirectory(DataEntry dataEntry) throws IOException
60 return dataEntryWriter1.createDirectory(dataEntry) ||
61 dataEntryWriter2.createDirectory(dataEntry);
65 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
67 return getOutputStream(dataEntry, null);
71 public OutputStream getOutputStream(DataEntry dataEntry,
76 dataEntryWriter1.getOutputStream(dataEntry, finisher)
    [all...]
DataEntryReader.java 37 public void read(DataEntry dataEntry) throws IOException;
JarReader.java 48 public void read(DataEntry dataEntry) throws IOException
50 ZipInputStream zipInputStream = new ZipInputStream(dataEntry.getInputStream());
65 dataEntryReader.read(new ZipDataEntry(dataEntry,
72 dataEntry.closeInputStream();
DataEntryNameFilter.java 50 public boolean accepts(DataEntry dataEntry)
52 return dataEntry != null && stringMatcher.matches(dataEntry.getName());
DataEntryWriter.java 37 * @param dataEntry the data entry for which the directory is to be created.
40 public boolean createDirectory(DataEntry dataEntry) throws IOException;
47 * @param dataEntry the data entry for which the output stream is to be created.
51 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException;
58 * @param dataEntry the data entry for which the output stream is to be created.
65 public OutputStream getOutputStream(DataEntry dataEntry,
DataEntryObfuscator.java 63 public void read(DataEntry dataEntry) throws IOException
66 dataEntryReader.read(renamedDataEntry(dataEntry));
73 private DataEntry renamedDataEntry(DataEntry dataEntry)
75 String dataEntryName = dataEntry.getName();
107 return new RenamedDataEntry(dataEntry, newDataEntryName);
112 return dataEntry;
137 return new RenamedDataEntry(dataEntry, newDataEntryName)
    [all...]
FilteredDataEntryWriter.java 77 public boolean createDirectory(DataEntry dataEntry) throws IOException
80 DataEntryWriter dataEntryWriter = dataEntryFilter.accepts(dataEntry) ?
86 dataEntryWriter.createDirectory(dataEntry);
90 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
92 return getOutputStream(dataEntry, null);
96 public OutputStream getOutputStream(DataEntry dataEntry,
100 DataEntryWriter dataEntryWriter = dataEntryFilter.accepts(dataEntry)
    [all...]
ClassRewriter.java 51 public void read(DataEntry dataEntry) throws IOException
53 String inputName = dataEntry.getName();
64 dataEntry = new RenamedDataEntry(dataEntry, newClassName + ClassConstants.CLASS_FILE_EXTENSION);
68 OutputStream outputStream = dataEntryWriter.getOutputStream(dataEntry);
JarWriter.java 45 private DataEntry currentDataEntry;
75 public boolean createDirectory(DataEntry dataEntry) throws IOException
78 if (!prepareEntry(dataEntry))
87 String name = dataEntry.getName() + ClassConstants.PACKAGE_SEPARATOR;
108 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
110 return getOutputStream(dataEntry, null);
114 public OutputStream getOutputStream(DataEntry dataEntry,
    [all...]
FilteredDataEntryReader.java 78 public void read(DataEntry dataEntry)
81 DataEntryReader dataEntryReader = dataEntryFilter.accepts(dataEntry) ?
87 dataEntryReader.read(dataEntry);
DirectoryWriter.java 58 public boolean createDirectory(DataEntry dataEntry) throws IOException
67 File directory = getFile(dataEntry);
78 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
80 return getOutputStream(dataEntry, null);
84 public OutputStream getOutputStream(DataEntry dataEntry,
87 File file = getFile(dataEntry);
134 private File getFile(DataEntry dataEntry
    [all...]
ClassReader.java 71 public void read(DataEntry dataEntry) throws IOException
76 InputStream inputStream = dataEntry.getInputStream();
98 if (!dataEntry.getName().replace(File.pathSeparatorChar, ClassConstants.PACKAGE_SEPARATOR).equals(className+ClassConstants.CLASS_FILE_EXTENSION) &&
102 "Warning: class [" + dataEntry.getName() + "] unexpectedly contains class [" + ClassUtil.externalClassName(className) + "]");
108 dataEntry.closeInputStream();
112 throw (IOException)new IOException("Can't process class ["+dataEntry.getName()+"] ("+ex.getMessage()+")").initCause(ex);
DataEntryRenamer.java 76 public void read(DataEntry dataEntry) throws IOException
78 String name = dataEntry.getName();
81 if (dataEntry.isDirectory() &&
91 if (dataEntry.isDirectory() &&
97 renamedDataEntryReader.read(new RenamedDataEntry(dataEntry, newName));
101 missingDataEntryReader.read(dataEntry);
DataEntryCopier.java 51 public void read(DataEntry dataEntry) throws IOException
55 if (dataEntry.isDirectory())
57 dataEntryWriter.createDirectory(dataEntry);
62 OutputStream outputStream = dataEntryWriter.getOutputStream(dataEntry);
65 InputStream inputStream = dataEntry.getInputStream();
75 dataEntry.closeInputStream();
82 System.err.println("Warning: can't write resource [" + dataEntry.getName() + "] (" + ex.getMessage() + ")");
86 throw (IOException)new IOException("Can't write resource ["+dataEntry.getName()+"] ("+ex.getMessage()+")").initCause(ex);
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
DefaultTestsZipInstaller.java 178 IFileEntry dataEntry = device.getFileEntry(FileListingService.DIRECTORY_DATA);
179 if (dataEntry == null) {
184 for (IFileEntry dataSubDir : dataEntry.getChildren(false)) {
  /external/icu/icu4c/source/common/
uresbund.cpp     [all...]
  /prebuilts/gradle-plugin/net/sf/proguard/proguard-base/5.3.3/
proguard-base-5.3.3.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 

Completed in 468 milliseconds

1 2