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

1 2

  /external/proguard/src/proguard/io/
DataEntryDirectoryFilter.java 36 public boolean accepts(DataEntry dataEntry)
38 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,
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 46 private DataEntry currentDataEntry;
76 public boolean createDirectory(DataEntry dataEntry) throws IOException
79 if (!prepareEntry(dataEntry))
88 String name = dataEntry.getName() + ClassConstants.INTERNAL_PACKAGE_SEPARATOR;
109 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
111 return getOutputStream(dataEntry, null);
115 public OutputStream getOutputStream(DataEntry dataEntry,
    [all...]
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);
126 return new RenamedDataEntry(dataEntry, newDataEntryName);
129 return 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.INTERNAL_PACKAGE_SEPARATOR).equals(className+ClassConstants.CLASS_FILE_EXTENSION) &&
102 "Warning: class [" + dataEntry.getName() + "] unexpectedly contains class [" + ClassUtil.externalClassName(className) + "]");
108 dataEntry.closeInputStream();
112 throw new IOException("Can't process class ["+dataEntry.getName()+"] ("+ex.getMessage()+")");
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();
71 dataEntry.closeInputStream();
77 System.err.println("Warning: can't write resource [" + dataEntry.getName() + "] (" + ex.getMessage() + ")");
  /external/chromium_org/chrome/browser/resources/image_loader/
cache.js 231 var dataEntry = {key: key,
241 dataStore.put(dataEntry); // Add asynchronously.
277 var dataEntry = null;
286 if (!!metadataEntry != !!dataEntry) {
305 onSuccess(dataEntry.data);
318 dataEntry = e.target.result;
  /external/chromium_org/third_party/icu/source/common/
uresbund.c     [all...]
  /external/icu4c/common/
uresbund.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 66 using WebCore::TypeBuilder::IndexedDB::DataEntry;
442 RefPtr<DataEntry> dataEntry = DataEntry::create()
446 m_result->addItem(dataEntry);
465 m_result = Array<DataEntry>::create();
471 RefPtr<Array<DataEntry> > m_result;
  /prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 

Completed in 194 milliseconds

1 2