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

12

/external/skia/src/core/
H A DSkTMultiMap.h49 ValueList* newEntry = new ValueList(list->fValue); local
50 newEntry->fNext = list->fNext;
53 list->fNext = newEntry;
H A DSkTDynamicHash.h107 // Add an entry with this key. We require that no entry with newEntry's key is already present.
108 void add(T* newEntry) { argument
109 SkASSERT(nullptr == this->find(GetKey(*newEntry)));
111 this->innerAdd(newEntry);
207 void innerAdd(T* newEntry) { argument
208 const Key& key = GetKey(*newEntry);
218 fArray[index] = newEntry;
H A DSkTInternalLList.h122 void addBefore(T* newEntry, T* existingEntry) { argument
123 SkASSERT(newEntry);
126 this->addToTail(newEntry);
131 newEntry->fNext = existingEntry;
133 existingEntry->fPrev = newEntry;
134 newEntry->fPrev = prev;
137 fHead = newEntry;
139 prev->fNext = newEntry;
142 newEntry->fList = this;
151 void addAfter(T* newEntry, argument
[all...]
/external/skia/src/fonts/
H A DSkFontMgr_indirect.cpp129 DataEntry& newEntry = fDataCache.push_back(); local
131 newEntry.fDataId = id.fDataId;
132 newEntry.fTtcIndex = id.fTtcIndex;
133 newEntry.fTypeface = typeface.get(); // weak reference passed to new entry.
/external/skqp/src/core/
H A DSkTMultiMap.h49 ValueList* newEntry = new ValueList(list->fValue); local
50 newEntry->fNext = list->fNext;
53 list->fNext = newEntry;
H A DSkTDynamicHash.h107 // Add an entry with this key. We require that no entry with newEntry's key is already present.
108 void add(T* newEntry) { argument
109 SkASSERT(nullptr == this->find(GetKey(*newEntry)));
111 this->innerAdd(newEntry);
207 void innerAdd(T* newEntry) { argument
208 const Key& key = GetKey(*newEntry);
218 fArray[index] = newEntry;
H A DSkTInternalLList.h122 void addBefore(T* newEntry, T* existingEntry) { argument
123 SkASSERT(newEntry);
126 this->addToTail(newEntry);
131 newEntry->fNext = existingEntry;
133 existingEntry->fPrev = newEntry;
134 newEntry->fPrev = prev;
137 fHead = newEntry;
139 prev->fNext = newEntry;
142 newEntry->fList = this;
151 void addAfter(T* newEntry, argument
[all...]
/external/skqp/src/fonts/
H A DSkFontMgr_indirect.cpp129 DataEntry& newEntry = fDataCache.push_back(); local
131 newEntry.fDataId = id.fDataId;
132 newEntry.fTtcIndex = id.fTtcIndex;
133 newEntry.fTypeface = typeface.get(); // weak reference passed to new entry.
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractMapTester.java200 protected final void expectReplacement(Entry<K, V> newEntry) { argument
202 replaceValue(expected, newEntry);
206 private void replaceValue(List<Entry<K, V>> expected, Entry<K, V> newEntry) { argument
208 if (Helpers.equal(i.next().getKey(), newEntry.getKey())) {
209 i.set(newEntry);
215 "key %s not found in entries %s", newEntry.getKey(), expected));
/external/deqp/framework/randomshaders/
H A DrsgVariableManager.cpp362 ValueEntry* newEntry = curScope.allocate(variable); local
366 *cachePos = newEntry;
368 m_entryCache.push_back(newEntry);
/external/pdfium/third_party/lcms/src/
H A Dcmscnvrt.c128 cmsIntentsList *newEntry = ( cmsIntentsList *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(cmsIntentsList)); local
130 if (newEntry == NULL)
134 newEntry -> Next = NULL;
136 Anterior -> Next = newEntry;
138 Anterior = newEntry;
141 newHead.Intents = newEntry;
H A Dcmsgamma.c85 _cmsParametricCurvesCollection *newEntry = ( _cmsParametricCurvesCollection *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(_cmsParametricCurvesCollection)); local
87 if (newEntry == NULL)
91 newEntry -> Next = NULL;
93 Anterior -> Next = newEntry;
95 Anterior = newEntry;
98 newHead.ParametricCurves = newEntry;
H A Dcmsxform.c617 _cmsTransformCollection *newEntry = ( _cmsTransformCollection *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(_cmsTransformCollection)); local
619 if (newEntry == NULL)
623 newEntry -> Next = NULL;
625 Anterior -> Next = newEntry;
627 Anterior = newEntry;
630 newHead.TransformCollection = newEntry;
H A Dcmsopt.c1822 _cmsOptimizationCollection *newEntry = ( _cmsOptimizationCollection *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(_cmsOptimizationCollection)); local
1824 if (newEntry == NULL)
1828 newEntry -> Next = NULL;
1830 Anterior -> Next = newEntry;
1832 Anterior = newEntry;
1835 newHead.OptimizationCollection = newEntry;
H A Dcmspack.c3230 cmsFormattersFactoryList *newEntry = ( cmsFormattersFactoryList *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(cmsFormattersFactoryList)); local
3232 if (newEntry == NULL)
3236 newEntry -> Next = NULL;
3238 Anterior -> Next = newEntry;
3240 Anterior = newEntry;
3243 newHead.FactoryList = newEntry;
H A Dcmstypes.c5335 _cmsTagTypeLinkedList *newEntry = ( _cmsTagTypeLinkedList *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(_cmsTagTypeLinkedList)); local
5337 if (newEntry == NULL)
5341 newEntry -> Next = NULL;
5343 Anterior -> Next = newEntry;
5345 Anterior = newEntry;
5348 newHead.TagTypes = newEntry;
5537 _cmsTagLinkedList *newEntry = ( _cmsTagLinkedList *) _cmsSubAllocDup(ctx ->MemPool, entry, sizeof(_cmsTagLinkedList)); local
5539 if (newEntry == NULL)
5543 newEntry -> Next = NULL;
5545 Anterior -> Next = newEntry;
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java354 <K, V> ReferenceEntry<K, V> newEntry(
361 <K, V> ReferenceEntry<K, V> newEntry(
369 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
370 copyExpirableEntry(original, newEntry);
371 return newEntry;
376 <K, V> ReferenceEntry<K, V> newEntry(
384 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
385 copyEvictableEntry(original, newEntry);
386 return newEntry;
391 <K, V> ReferenceEntry<K, V> newEntry(
490 abstract <K, V> ReferenceEntry<K, V> newEntry( method in class:MapMakerInternalMap.EntryFactory
506 copyExpirableEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
518 copyEvictableEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
1826 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:MapMakerInternalMap
2128 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:MapMakerInternalMap.Segment
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java445 <K, V> ReferenceEntry<K, V> newEntry(
452 <K, V> ReferenceEntry<K, V> newEntry(
460 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
461 copyAccessEntry(original, newEntry);
462 return newEntry;
467 <K, V> ReferenceEntry<K, V> newEntry(
475 ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext);
476 copyWriteEntry(original, newEntry);
477 return newEntry;
482 <K, V> ReferenceEntry<K, V> newEntry(
582 abstract <K, V> ReferenceEntry<K, V> newEntry( method in class:LocalCache.EntryFactory
598 copyAccessEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
610 copyWriteEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) argument
1808 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:LocalCache
2129 ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { method in class:LocalCache.Segment
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.jobs_3.7.0.v20150330-2103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/robolectric/v3/libs/
H A Dsqlite4java-0.282.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/almworks/ com/almworks/sqlite4java/ javolution/ javolution/util/ javolution/ ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...

Completed in 2341 milliseconds

12