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

/external/guava/src/com/google/common/collect/
H A DMapMaker.java353 @Override <K, V> ReferenceEntry<K, V> newEntry(
382 @Override <K, V> ReferenceEntry<K, V> newEntry(
411 @Override <K, V> ReferenceEntry<K, V> newEntry(
451 abstract <K, V> ReferenceEntry<K, V> newEntry( method in class:MapMaker.Strength
540 public ReferenceEntry<K, V> newEntry( method in class:MapMaker.StrategyImpl
542 return keyStrength.newEntry(internals, key, hash, next);
549 ReferenceEntry<K, V> newEntry
550 = newEntry(key, original.getHash(), newNext);
551 newEntry.setValueReference(
552 new FutureValueReference(original, newEntry));
640 final ReferenceEntry<K, V> newEntry; field in class:MapMaker.StrategyImpl.FutureValueReference
642 FutureValueReference( ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
[all...]
H A DCustomConcurrentHashMap.java81 * public InternalEntry<K, V> newEntry(K key, int hash,
318 abstract E newEntry(K key, int hash, E next); method in interface:CustomConcurrentHashMap.Strategy
394 * that was provided to {@link Strategy#newEntry} when the given entry was
398 * {@link Strategy#newEntry}
403 * Returns the hash code that was passed to {@link Strategy#newEntry})
472 * placeholder value in {@link #newEntry(Object, int, Object)} so that
959 E newEntry = s.newEntry(key, hash, first);
960 s.setValue(newEntry, value);
961 table.set(index, newEntry);
2106 public SimpleInternalEntry<K, V> newEntry( method in class:CustomConcurrentHashMap.SimpleStrategy
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIntObjectMap.java192 final Entry newEntry = new Entry (key, value, bucketListHead);
193 buckets [bucketIndex] = newEntry;
H A DIntSet.java164 final Entry newEntry = new Entry (key, bucketListHead);
165 buckets [bucketIndex] = newEntry;
H A DIntIntMap.java203 final Entry newEntry = new Entry (key, value, bucketListHead);
204 buckets [bucketIndex] = newEntry;
H A DObjectIntMap.java196 final Entry newEntry = new Entry (key, value, bucketListHead);
197 buckets [bucketIndex] = newEntry;
H A DSoftValueMap.java284 final SoftEntry newEntry = new SoftEntry (m_valueReferenceQueue, key, value, bucketListHead, bucketIndex);
285 buckets [bucketIndex] = newEntry;
/external/icu4c/i18n/
H A Dzonemeta.cpp441 CanonicalMapEntry* newEntry = (CanonicalMapEntry*)uprv_malloc(sizeof(CanonicalMapEntry)); local
443 if (newEntry == NULL) {
456 newEntry->id = allocUStringInTable(idLen);
457 if (newEntry->id == NULL) {
459 uprv_free(newEntry);
463 derefZone.extract((UChar*)(newEntry->id), idLen, status);
466 uprv_free(newEntry);
470 newEntry->country = NULL;
473 newEntry->id = entry->id;
474 newEntry
[all...]
H A Dcolldata.cpp521 CollDataCacheEntry *entry = NULL, *newEntry = NULL; local
530 newEntry = new CollDataCacheEntry(newData);
532 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
541 uhash_put(cache, newData->key, newEntry, &status);
545 delete newEntry;
563 if (newEntry != NULL) {
564 delete newEntry;
/external/icu4c/tools/gennorm/
H A Dstore.c327 uint32_t newEntry; local
330 newEntry=code|((uint32_t)flags<<24);
336 if(newEntry==combiningCPs[i]) {
341 newEntry|=combiningCPs[i];
363 flags=(uint8_t)(newEntry>>24);
373 /* move the following code points up one and insert newEntry at i */
377 combiningCPs[i]=newEntry;
/external/webkit/JavaScriptCore/runtime/
H A DJSGlobalObject.h329 SymbolTableEntry newEntry(index, global.attributes);
330 symbolTable().add(global.identifier.ustring().rep(), newEntry);
/external/webkit/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp169 SymbolTableEntry newEntry(index, isConstant ? ReadOnly : 0);
170 pair<SymbolTable::iterator, bool> result = symbolTable().add(ident.ustring().rep(), newEntry);
185 SymbolTableEntry newEntry(index, isConstant ? ReadOnly : 0);
186 pair<SymbolTable::iterator, bool> result = symbolTable().add(ident.ustring().rep(), newEntry);
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 69 milliseconds