/external/rust/crates/syn/0.15.42/src/ |
D | buffer.rs | 25 enum Entry { enum 33 End(*const Entry), 45 data: Box<[Entry]>, 51 fn inner_new(stream: TokenStream, up: *const Entry) -> TokenBuffer { in inner_new() 59 entries.push(Entry::Ident(sym)); in inner_new() 62 entries.push(Entry::Punct(op)); in inner_new() 65 entries.push(Entry::Literal(l)); in inner_new() 71 entries.push(Entry::End(ptr::null())); in inner_new() 77 entries.push(Entry::End(up)); in inner_new() 88 let seq_up = &entries[idx + 1] as *const Entry; in inner_new() constant [all …]
|
/external/rust/crates/syn/1.0.7/src/ |
D | buffer.rs | 24 enum Entry { enum 32 End(*const Entry), 44 data: Box<[Entry]>, 50 fn inner_new(stream: TokenStream, up: *const Entry) -> TokenBuffer { in inner_new() 58 entries.push(Entry::Ident(sym)); in inner_new() 61 entries.push(Entry::Punct(op)); in inner_new() 64 entries.push(Entry::Literal(l)); in inner_new() 70 entries.push(Entry::End(ptr::null())); in inner_new() 76 entries.push(Entry::End(up)); in inner_new() 87 let seq_up = &entries[idx + 1] as *const Entry; in inner_new() constant [all …]
|
/external/emma/core/java12/com/vladium/util/ |
D | IntIntMap.java | 61 m_buckets = new Entry [initialCapacity]; in IntIntMap() 87 final Entry [] buckets = m_buckets; in contains() 91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in contains() 111 final Entry [] buckets = m_buckets; in get() 115 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in get() 130 final Entry [] buckets = m_buckets; in get() 134 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in get() 153 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next) in keys() 170 Entry currentKeyEntry = null; in put() 178 Entry [] buckets = m_buckets; in put() [all …]
|
D | IntObjectMap.java | 61 m_buckets = new Entry [initialCapacity]; in IntObjectMap() 87 final Entry [] buckets = m_buckets; in contains() 91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in contains() 112 final Entry [] buckets = m_buckets; in get() 116 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in get() 136 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next) in keys() 156 Entry currentKeyEntry = null; in put() 164 Entry [] buckets = m_buckets; in put() 165 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in put() 191 final Entry bucketListHead = buckets [bucketIndex]; in put() [all …]
|
D | IntSet.java | 59 m_buckets = new Entry [initialCapacity]; in IntSet() 85 final Entry [] buckets = m_buckets; in contains() 89 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in contains() 109 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next) in values() 127 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next) in values() 137 Entry currentKeyEntry = null; in add() 145 Entry [] buckets = m_buckets; in add() 146 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in add() 163 final Entry bucketListHead = buckets [bucketIndex]; in add() 164 final Entry newEntry = new Entry (key, bucketListHead); in add() [all …]
|
D | ObjectIntMap.java | 63 m_buckets = new Entry [initialCapacity]; in ObjectIntMap() 91 final Entry [] buckets = m_buckets; in contains() 96 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in contains() 119 final Entry [] buckets = m_buckets; in get() 124 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in get() 143 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next) in keys() 162 Entry currentKeyEntry = null; in put() 171 Entry [] buckets = m_buckets; in put() 172 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in put() 195 final Entry bucketListHead = buckets [bucketIndex]; in put() [all …]
|
/external/e2fsprogs/tests/f_bad_inode_csum/ |
D | expect.1 | 47 Entry '86' in / (2) has deleted/unused inode 97. Clear? yes 49 Entry '87' in / (2) has deleted/unused inode 98. Clear? yes 51 Entry '88' in / (2) has deleted/unused inode 99. Clear? yes 53 Entry '89' in / (2) has deleted/unused inode 100. Clear? yes 55 Entry '90' in / (2) has deleted/unused inode 101. Clear? yes 57 Entry '91' in / (2) has deleted/unused inode 102. Clear? yes 59 Entry '92' in / (2) has deleted/unused inode 103. Clear? yes 61 Entry '93' in / (2) has deleted/unused inode 104. Clear? yes 63 Entry '94' in / (2) has deleted/unused inode 105. Clear? yes 65 Entry '95' in / (2) has deleted/unused inode 106. Clear? yes [all …]
|
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/ |
D | AbstractMapTester.java | 25 import java.util.Map.Entry; 41 extends AbstractContainerTester<Map<K, V>, Entry<K, V>> { 47 protected Collection<Entry<K, V>> actualContents() { in actualContents() 56 protected void resetMap(Entry<K, V>[] entries) { in resetMap() 73 protected Entry<K, V>[] createArrayWithNullKey() { in createArrayWithNullKey() 74 Entry<K, V>[] array = createSamplesArray(); in createArrayWithNullKey() 76 final Entry<K, V> oldEntry = array[nullKeyLocation]; in createArrayWithNullKey() 89 private Entry<K, V> getEntryNullReplaces() { in getEntryNullReplaces() 90 Iterator<Entry<K, V>> entries = getSampleElements().iterator(); in getEntryNullReplaces() 98 protected Entry<K, V>[] createArrayWithNullValue() { in createArrayWithNullValue() [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | AbstractMapTester.java | 25 import java.util.Map.Entry; 41 extends AbstractContainerTester<Map<K, V>, Entry<K, V>> { 47 protected Collection<Entry<K, V>> actualContents() { in actualContents() 56 protected void resetMap(Entry<K, V>[] entries) { in resetMap() 73 protected Entry<K, V>[] createArrayWithNullKey() { in createArrayWithNullKey() 74 Entry<K, V>[] array = createSamplesArray(); in createArrayWithNullKey() 76 final Entry<K, V> oldEntry = array[nullKeyLocation]; in createArrayWithNullKey() 89 private Entry<K, V> getEntryNullReplaces() { in getEntryNullReplaces() 90 Iterator<Entry<K, V>> entries = getSampleElements().iterator(); in getEntryNullReplaces() 98 protected Entry<K, V>[] createArrayWithNullValue() { in createArrayWithNullValue() [all …]
|
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/ |
D | DerivedGoogleCollectionGenerators.java | 32 import java.util.Map.Entry; 45 private final OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> generator; 48 OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> oneSizeTestContainerGenerator) { in MapGenerator() 53 public SampleElements<Entry<K, V>> samples() { in samples() 63 public Entry<K, V>[] createArray(int length) { in createArray() 68 public Iterable<Entry<K, V>> order(List<Entry<K, V>> insertionOrder) { in order() 93 private final OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> generator; 96 OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> oneSizeTestContainerGenerator) { in InverseBiMapGenerator() 101 public SampleElements<Entry<V, K>> samples() { in samples() 102 SampleElements<Entry<K, V>> samples = generator.samples(); in samples() [all …]
|
D | MapGenerators.java | 41 import java.util.Map.Entry; 52 protected Map<String, String> create(Entry<String, String>[] entries) { in create() 54 for (Entry<String, String> entry : entries) { in create() 63 protected Map<String, String> create(Entry<String, String>[] entries) { in create() 65 for (Entry<String, String> entry : entries) { in create() 74 protected Map<String, String> create(Entry<String, String>[] entries) { in create() 116 implements TestListGenerator<Entry<String, Integer>> { 119 public SampleElements<Entry<String, Integer>> samples() { in samples() 130 public Entry<String, Integer>[] createArray(int length) { in createArray() 131 return new Entry[length]; in createArray() [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | DerivedGoogleCollectionGenerators.java | 32 import java.util.Map.Entry; 45 private final OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> generator; 48 OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> oneSizeTestContainerGenerator) { in MapGenerator() 53 public SampleElements<Entry<K, V>> samples() { in samples() 63 public Entry<K, V>[] createArray(int length) { in createArray() 68 public Iterable<Entry<K, V>> order(List<Entry<K, V>> insertionOrder) { in order() 93 private final OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> generator; 96 OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> oneSizeTestContainerGenerator) { in InverseBiMapGenerator() 101 public SampleElements<Entry<V, K>> samples() { in samples() 102 SampleElements<Entry<K, V>> samples = generator.samples(); in samples() [all …]
|
D | MapGenerators.java | 41 import java.util.Map.Entry; 52 protected Map<String, String> create(Entry<String, String>[] entries) { in create() 54 for (Entry<String, String> entry : entries) { in create() 63 protected Map<String, String> create(Entry<String, String>[] entries) { in create() 65 for (Entry<String, String> entry : entries) { in create() 74 protected Map<String, String> create(Entry<String, String>[] entries) { in create() 116 implements TestListGenerator<Entry<String, Integer>> { 119 public SampleElements<Entry<String, Integer>> samples() { in samples() 130 public Entry<String, Integer>[] createArray(int length) { in createArray() 131 return new Entry[length]; in createArray() [all …]
|
/external/skia/src/core/ |
D | SkLRUCache.h | 21 struct Entry { struct 22 Entry(const K& key, V&& value) in Entry() argument 29 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Entry); argument 37 Entry* node = fLRU.head(); in ~SkLRUCache() 46 Entry** value = fMap.find(key); in find() 50 Entry* entry = *value; in find() 59 Entry* entry = new Entry(key, std::move(value)); in insert() 74 typename SkTInternalLList<Entry>::Iter iter; in foreach() 75 for (Entry* e = iter.init(fLRU, SkTInternalLList<Entry>::Iter::kHead_IterStart); e; in foreach() 83 for (Entry* e = fLRU.head(); e; e = fLRU.head()) { in reset() [all …]
|
/external/skqp/src/core/ |
D | SkLRUCache.h | 21 struct Entry { struct 22 Entry(const K& key, V&& value) in Entry() argument 29 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Entry); argument 37 Entry* node = fLRU.head(); in ~SkLRUCache() 46 Entry** value = fMap.find(key); in find() 50 Entry* entry = *value; in find() 59 Entry* entry = new Entry(key, std::move(value)); in insert() 74 typename SkTInternalLList<Entry>::Iter iter; in foreach() 75 for (Entry* e = iter.init(fLRU, SkTInternalLList<Entry>::Iter::kHead_IterStart); e; in foreach() 83 for (Entry* e = fLRU.head(); e; e = fLRU.head()) { in reset() [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | Metadata.cs | 37 public sealed class Metadata : IList<Metadata.Entry> 56 readonly List<Entry> entries; 64 this.entries = new List<Entry>(); in Metadata() 85 public int IndexOf(Metadata.Entry item) in IndexOf() 93 public void Insert(int index, Metadata.Entry item) in Insert() 112 public Metadata.Entry this[int index] 130 public void Add(Metadata.Entry item) in Add() 142 Add(new Entry(key, value)); in Add() 150 Add(new Entry(key, valueBytes)); in Add() 165 public bool Contains(Metadata.Entry item) in Contains() [all …]
|
/external/skqp/tests/ |
D | DynamicHashTest.cpp | 16 struct Entry { struct 20 static const int& GetKey(const Entry& entry) { return entry.key; } in GetKey() argument 25 class Hash : public SkTDynamicHash<Entry, int> { 34 typedef SkTDynamicHash<Entry, int> INHERITED; 42 Entry a = { 1, 2.0 }; in DEF_TEST() 43 Entry b = { 2, 3.0 }; in DEF_TEST() 44 Entry c = { 3, 4.0 }; in DEF_TEST() 45 Entry d = { 4, 5.0 }; in DEF_TEST() 46 Entry e = { 5, 6.0 }; in DEF_TEST() 70 Entry a = { 1, 2.0 }; in DEF_TEST() [all …]
|
/external/skia/tests/ |
D | DynamicHashTest.cpp | 16 struct Entry { struct 20 static const int& GetKey(const Entry& entry) { return entry.key; } in GetKey() argument 25 class Hash : public SkTDynamicHash<Entry, int> { 34 typedef SkTDynamicHash<Entry, int> INHERITED; 42 Entry a = { 1, 2.0 }; in DEF_TEST() 43 Entry b = { 2, 3.0 }; in DEF_TEST() 44 Entry c = { 3, 4.0 }; in DEF_TEST() 45 Entry d = { 4, 5.0 }; in DEF_TEST() 46 Entry e = { 5, 6.0 }; in DEF_TEST() 70 Entry a = { 1, 2.0 }; in DEF_TEST() [all …]
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
D | ChangeTimeScaleTrack.java | 37 List<CompositionTimeToSample.Entry> ctts; 38 List<TimeToSampleBox.Entry> tts; 59 …Queue<TimeToSampleBox.Entry> timeQueue = new LinkedList<TimeToSampleBox.Entry>(track.getDecodingTi… in getTimes() 73 TimeToSampleBox.Entry entry = timeQueue.poll(); in getTimes() 87 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() { in getDecodingTimeEntries() 91 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() { in getCompositionTimeEntries() 99 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() { in getSampleDependencies() 142 …static List<CompositionTimeToSample.Entry> adjustCtts(List<CompositionTimeToSample.Entry> source, … in adjustCtts() 144 …List<CompositionTimeToSample.Entry> entries2 = new ArrayList<CompositionTimeToSample.Entry>(source… in adjustCtts() 145 for (CompositionTimeToSample.Entry entry : source) { in adjustCtts() [all …]
|
D | DivideTimeScaleTrack.java | 43 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() { in getDecodingTimeEntries() 47 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() { in getCompositionTimeEntries() 55 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() { in getSampleDependencies() 90 List<CompositionTimeToSample.Entry> adjustCtts() { in adjustCtts() 91 List<CompositionTimeToSample.Entry> origCtts = this.source.getCompositionTimeEntries(); in adjustCtts() 93 …List<CompositionTimeToSample.Entry> entries2 = new ArrayList<CompositionTimeToSample.Entry>(origCt… in adjustCtts() 94 for (CompositionTimeToSample.Entry entry : origCtts) { in adjustCtts() 95 …entries2.add(new CompositionTimeToSample.Entry(entry.getCount(), entry.getOffset() / timeScaleDivi… in adjustCtts() 103 List<TimeToSampleBox.Entry> adjustTts() { in adjustTts() 104 List<TimeToSampleBox.Entry> origTts = source.getDecodingTimeEntries(); in adjustTts() [all …]
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | SmallSortedMap.java | 101 final Map.Entry<FieldDescriptorType, Object> entry = getArrayEntryAt(i); in newFieldMap() 107 for (Map.Entry<FieldDescriptorType, Object> entry : getOverflowEntries()) { in newFieldMap() 133 private List<Entry> entryList; 183 public Map.Entry<K, V> getArrayEntryAt(int index) { 193 public Iterable<Map.Entry<K, V>> getOverflowEntries() { 195 ? EmptySet.<Map.Entry<K, V>>iterable() 199 Iterable<Map.Entry<K, V>> getOverflowEntriesDescending() { 201 ? EmptySet.<Map.Entry<K, V>>iterable() 255 final Entry lastEntryInArray = entryList.remove(maxArraySize - 1); in put() 258 entryList.add(insertionPoint, new Entry(key, value)); in put() [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | MetadataTest.cs | 36 var entry = new Metadata.Entry("ABC", "XYZ"); in AsciiEntry() 42 Assert.Throws(typeof(ArgumentException), () => new Metadata.Entry("abc-bin", "xyz")); in AsciiEntry() 51 var entry = new Metadata.Entry("ABC-BIN", bytes); in BinaryEntry() 57 Assert.Throws(typeof(ArgumentException), () => new Metadata.Entry("abc", bytes)); in BinaryEntry() 65 new Metadata.Entry("ABC", "XYZ"); in AsciiEntry_KeyValidity() 66 new Metadata.Entry("0123456789abc", "XYZ"); in AsciiEntry_KeyValidity() 67 new Metadata.Entry("-abc", "XYZ"); in AsciiEntry_KeyValidity() 68 new Metadata.Entry("a_bc_", "XYZ"); in AsciiEntry_KeyValidity() 69 new Metadata.Entry("abc.xyz", "XYZ"); in AsciiEntry_KeyValidity() 70 new Metadata.Entry("abc.xyz-bin", new byte[] {1, 2, 3}); in AsciiEntry_KeyValidity() [all …]
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | Multisets.java | 29 import com.google.common.collect.Multiset.Entry; 116 @MonotonicNonNullDecl transient Set<Multiset.Entry<E>> entrySet; 120 public Set<Multiset.Entry<E>> entrySet() { in entrySet() 121 Set<Multiset.Entry<E>> es = entrySet; in entrySet() 212 public static <E> Multiset.Entry<E> immutableEntry(@NullableDecl E e, int n) { in immutableEntry() 306 Set<Entry<E>> createEntrySet() { in createEntrySet() 309 new Predicate<Entry<E>>() { in createEntrySet() 311 public boolean apply(Entry<E> entry) { in createEntrySet() 318 Iterator<Entry<E>> entryIterator() { in entryIterator() 408 Iterator<Entry<E>> entryIterator() { [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapsCollectionTest.java | 46 import java.util.Map.Entry; 70 protected SortedMap<String, String> create(Entry<String, String>[] entries) { in suite() 84 protected BiMap<String, String> create(Entry<String, String>[] entries) { in suite() 86 for (Entry<String, String> entry : entries) { in suite() 106 public SampleElements<Entry<String, Integer>> samples() { in suite() 119 Entry<?, ?> entry = (Entry<?, ?>) e; in suite() 135 public Entry<String, Integer>[] createArray(int length) { in suite() 136 return new Entry[length]; in suite() 140 public Iterable<Entry<String, Integer>> order( in suite() 141 List<Entry<String, Integer>> insertionOrder) { in suite() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | MapsCollectionTest.java | 46 import java.util.Map.Entry; 70 protected SortedMap<String, String> create(Entry<String, String>[] entries) { in suite() 84 protected BiMap<String, String> create(Entry<String, String>[] entries) { in suite() 86 for (Entry<String, String> entry : entries) { in suite() 106 public SampleElements<Entry<String, Integer>> samples() { in suite() 119 Entry<?, ?> entry = (Entry<?, ?>) e; in suite() 135 public Entry<String, Integer>[] createArray(int length) { in suite() 136 return new Entry[length]; in suite() 140 public Iterable<Entry<String, Integer>> order( in suite() 141 List<Entry<String, Integer>> insertionOrder) { in suite() [all …]
|