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

/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractMapTester.java198 protected final void expectReplacement(Entry<K, V> newEntry) { argument
200 replaceValue(expected, newEntry);
204 private void replaceValue(List<Entry<K, V>> expected, Entry<K, V> newEntry) { argument
206 if (Helpers.equal(i.next().getKey(), newEntry.getKey())) {
207 i.set(newEntry);
213 "key %s not found in entries %s", newEntry.getKey(), expected));
/external/chromium_org/third_party/skia/include/core/
H A DSkTInternalLList.h117 void addBefore(T* newEntry, T* existingEntry) { argument
118 SkASSERT(NULL != newEntry);
121 this->addToTail(newEntry);
126 newEntry->fNext = existingEntry;
128 existingEntry->fPrev = newEntry;
129 newEntry->fPrev = prev;
132 fHead = newEntry;
134 prev->fNext = newEntry;
137 newEntry->fList = this;
146 void addAfter(T* newEntry, argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTDynamicHash.h52 // Add an entry with this key. We require that no entry with newEntry's key is already present.
53 void add(T* newEntry) { argument
54 SkASSERT(NULL == this->find(GetKey(*newEntry)));
57 this->innerAdd(newEntry);
158 void innerAdd(T* newEntry) { argument
159 const Key& key = GetKey(*newEntry);
168 fArray[index] = newEntry;
/external/skia/include/core/
H A DSkTInternalLList.h117 void addBefore(T* newEntry, T* existingEntry) { argument
118 SkASSERT(NULL != newEntry);
121 this->addToTail(newEntry);
126 newEntry->fNext = existingEntry;
128 existingEntry->fPrev = newEntry;
129 newEntry->fPrev = prev;
132 fHead = newEntry;
134 prev->fNext = newEntry;
137 newEntry->fList = this;
146 void addAfter(T* newEntry, argument
[all...]
/external/skia/src/core/
H A DSkTDynamicHash.h52 // Add an entry with this key. We require that no entry with newEntry's key is already present.
53 void add(T* newEntry) { argument
54 SkASSERT(NULL == this->find(GetKey(*newEntry)));
57 this->innerAdd(newEntry);
158 void innerAdd(T* newEntry) { argument
159 const Key& key = GetKey(*newEntry);
168 fArray[index] = newEntry;
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFTypes.cpp447 struct Rec* newEntry = fValue.append(); local
448 newEntry->key = key;
449 newEntry->value = value;
455 struct Rec* newEntry = fValue.append(); local
456 newEntry->key = new SkPDFName(key);
457 newEntry->value = value;
462 struct Rec* newEntry = fValue.append(); local
463 newEntry->key = new SkPDFName(key);
464 newEntry->value = new SkPDFInt(value);
468 struct Rec* newEntry local
474 struct Rec* newEntry = fValue.append(); local
[all...]
H A DSkPDFDevice.cpp1651 SkTScopedPtr<ContentEntry> newEntry; local
1657 newEntry.reset(new ContentEntry);
1658 entry = newEntry.get();
1679 newEntry.release();
/external/skia/src/pdf/
H A DSkPDFTypes.cpp447 struct Rec* newEntry = fValue.append(); local
448 newEntry->key = key;
449 newEntry->value = value;
455 struct Rec* newEntry = fValue.append(); local
456 newEntry->key = new SkPDFName(key);
457 newEntry->value = value;
462 struct Rec* newEntry = fValue.append(); local
463 newEntry->key = new SkPDFName(key);
464 newEntry->value = new SkPDFInt(value);
468 struct Rec* newEntry local
474 struct Rec* newEntry = fValue.append(); local
[all...]
H A DSkPDFDevice.cpp1771 SkTScopedPtr<ContentEntry> newEntry; local
1777 newEntry.reset(new ContentEntry);
1778 entry = newEntry.get();
1799 newEntry.release();
/external/chromium_org/third_party/icu/source/i18n/
H A Dcolldata.cpp524 CollDataCacheEntry *entry = NULL, *newEntry = NULL; local
533 newEntry = new CollDataCacheEntry(newData);
535 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
544 uhash_put(cache, newData->key, newEntry, &status);
548 delete newEntry;
566 if (newEntry != NULL) {
567 delete newEntry;
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java440 <K, V> ReferenceEntry<K, V> newEntry(
447 <K, V> ReferenceEntry<K, V> newEntry(
455 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
456 copyAccessEntry(original, newEntry);
457 return newEntry;
462 <K, V> ReferenceEntry<K, V> newEntry(
470 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
471 copyWriteEntry(original, newEntry);
472 return newEntry;
477 <K, V> ReferenceEntry<K, V> newEntry(
577 abstract <K, V> ReferenceEntry<K, V> newEntry( method in class:LocalCache.EntryFactory
593 copyAccessEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
605 copyWriteEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
1863 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:LocalCache
2177 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:LocalCache.Segment
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java355 <K, V> ReferenceEntry<K, V> newEntry(
362 <K, V> ReferenceEntry<K, V> newEntry(
370 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
371 copyExpirableEntry(original, newEntry);
372 return newEntry;
377 <K, V> ReferenceEntry<K, V> newEntry(
385 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
386 copyEvictableEntry(original, newEntry);
387 return newEntry;
392 <K, V> ReferenceEntry<K, V> newEntry(
545 abstract <K, V> ReferenceEntry<K, V> newEntry( method in class:MapMakerInternalMap.EntryFactory
561 copyExpirableEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
573 copyEvictableEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
1876 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:MapMakerInternalMap
2178 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:MapMakerInternalMap.Segment
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 343 milliseconds