Searched defs:newEntry (Results 1 - 4 of 4) sorted by relevance

/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/java/util/jar/
H A DJarFile.java601 JarEntry newEntry(ZipEntry ze) { method in class:JarFile
/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/native/
H A Dzip_util.c1024 newEntry(jzfile *zip, jzcell *zc, AccessHint accessHint) function
1234 ze = newEntry(zip, zc, ACCESS_RANDOM);
1289 result = newEntry(zip, &zip->entries[n], ACCESS_SEQUENTIAL);

Completed in 4377 milliseconds