Searched refs:newEntry (Results 1 - 11 of 11) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/zip/
H A DOldAndroidZipStreamTest.java97 ZipEntry newEntry = new ZipEntry("file-" + i);
100 newEntry.setComment("this is file " + i);
101 out.putNextEntry(newEntry);
120 ZipEntry newEntry = new ZipEntry("file-" + i);
123 newEntry.setComment("this is file " + i);
124 newEntry.setMethod(ZipEntry.STORED);
125 newEntry.setSize(128 * 1024);
126 newEntry.setCrc(crcs[i]);
127 out.putNextEntry(newEntry);
H A DOldAndroidZipFileTest.java84 ZipEntry newEntry = new ZipEntry("file-" + i);
87 newEntry.setComment("this is file " + i);
89 out.putNextEntry(newEntry);
/libcore/ojluni/src/main/java/java/text/
H A DMergeCollation.java235 private final void fixEntry(PatternEntry newEntry) throws ParseException argument
242 if (lastEntry != null && newEntry.chars.equals(lastEntry.chars)
243 && newEntry.extension.equals(lastEntry.extension)) {
244 if (newEntry.strength != Collator.IDENTICAL
245 && newEntry.strength != PatternEntry.RESET) {
247 + newEntry + " are adjacent in the rules, but have conflicting "
256 if (newEntry.strength != PatternEntry.RESET) {
259 if ((newEntry.chars.length() == 1)) {
261 char c = newEntry.chars.charAt(0);
267 oldIndex = patterns.lastIndexOf(newEntry);
[all...]
/libcore/ojluni/src/main/java/sun/util/locale/
H A DLocaleObjectCache.java67 CacheEntry<K, V> newEntry = new CacheEntry<>(key, newVal, queue);
69 entry = map.putIfAbsent(key, newEntry);
75 map.put(key, newEntry);
/libcore/ojluni/src/main/java/sun/security/util/
H A DCache.java364 CacheEntry<K,V> newEntry = newEntry(key, value, expirationTime, queue);
365 CacheEntry<K,V> oldEntry = cacheMap.put(key, newEntry);
459 protected CacheEntry<K,V> newEntry(K key, V value, method in class:MemoryCache
/libcore/ojluni/src/main/java/sun/net/www/
H A DMimeTable.java314 MimeEntry newEntry = new MimeEntry(type);
320 parse(pair, newEntry);
323 add(newEntry);
/libcore/ojluni/src/main/java/java/security/
H A DSecurity.java138 ProviderProperty newEntry = new ProviderProperty();
139 newEntry.className = prop;
140 newEntry.provider = prov;
141 return newEntry;
/libcore/ojluni/src/main/java/java/io/
H A DObjectStreamClass.java319 EntryFuture newEntry = new EntryFuture();
320 Reference<?> newRef = new SoftReference<>(newEntry);
331 future = newEntry;
2126 EntryFuture newEntry = new EntryFuture();
2127 Reference<?> newRef = new SoftReference<>(newEntry);
2138 future = newEntry;
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarVerifier.java762 entry = jar.newEntry(ze);
770 entry = jar.newEntry(new ZipEntry(name));
H A DJarFile.java574 JarEntry newEntry(ZipEntry ze) { method in class:JarFile
/libcore/ojluni/src/main/native/
H A Dzip_util.c1019 newEntry(jzfile *zip, jzcell *zc, AccessHint accessHint) function
1201 ze = newEntry(zip, zc, ACCESS_RANDOM);
1256 result = newEntry(zip, &zip->entries[n], ACCESS_SEQUENTIAL);

Completed in 974 milliseconds