/external/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFCompileUnit.h | 23 const DWARFUnitIndex::Entry *Entry) 25 UnitSection, Entry) {}
|
DWARFDebugLoc.h | 23 struct Entry { 38 SmallVector<Entry, 2> Entries; 60 struct Entry { 68 SmallVector<Entry, 2> Entries;
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
CompositionTimeToSample.java | 38 * CT(n) = DT(n) + CTTS(n) where CTTS(n) is the (uncompressed) table entry for sample n. 48 List<Entry> entries = Collections.emptyList(); 58 public List<Entry> getEntries() { 62 public void setEntries(List<Entry> entries) { 70 entries = new ArrayList<Entry>(numberOfEntries); 72 Entry e = new Entry(l2i(IsoTypeReader.readUInt32(content)), content.getInt()); 82 for (Entry entry : entries) { 83 IsoTypeWriter.writeUInt32(byteBuffer, entry.getCount()) [all...] |
SampleToChunkBox.java | 38 List<Entry> entries = Collections.emptyList(); 46 public List<Entry> getEntries() { 50 public void setEntries(List<Entry> entries) { 63 entries = new ArrayList<Entry>(entryCount); 65 entries.add(new Entry( 76 for (Entry entry : entries) { 77 IsoTypeWriter.writeUInt32(byteBuffer, entry.getFirstChunk()); 78 IsoTypeWriter.writeUInt32(byteBuffer, entry.getSamplesPerChunk()); 79 IsoTypeWriter.writeUInt32(byteBuffer, entry.getSampleDescriptionIndex()) [all...] |
TimeToSampleBox.java | 33 * Other tables give sample sizes and pointers, from the sample number. Each entry in the table gives the 37 * is the (uncompressed) table entry for sample n.<br> 47 List<Entry> entries = Collections.emptyList(); 62 entries = new ArrayList<Entry>(entryCount); 65 entries.add(new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content))); 74 for (Entry entry : entries) { 75 IsoTypeWriter.writeUInt32(byteBuffer, entry.getCount()); 76 IsoTypeWriter.writeUInt32(byteBuffer, entry.getDelta()); 80 public List<Entry> getEntries() [all...] |
SampleDependencyTypeBox.java | 41 private List<Entry> entries = new ArrayList<Entry>(); 43 public static class Entry { 45 public Entry(int value) { 86 return "Entry{" + 107 for (Entry entry : entries) { 108 IsoTypeWriter.writeUInt8(byteBuffer, entry.value); 116 entries.add(new Entry(IsoTypeReader.readUInt8(content))); 120 public List<Entry> getEntries() [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/ |
Track.java | 34 List<TimeToSampleBox.Entry> getDecodingTimeEntries(); 36 List<CompositionTimeToSample.Entry> getCompositionTimeEntries(); 40 List<SampleDependencyTypeBox.Entry> getSampleDependencies();
|
/external/tensorflow/tensorflow/stream_executor/ |
executor_cache.h | 53 // Each Entry contains zero or more cached executors for a device ordinal. 54 struct Entry { 55 ~Entry(); 57 // Mutex that locks the contents of each entry. The 'mutex_' of the 59 // Entry, but not the Entry's contents. 'configurations_mutex' protects the 60 // contents of the entry after 'mutex_' has been dropped. 73 std::map<int, Entry> cache_ GUARDED_BY(mutex_);
|
/external/volley/src/main/java/com/android/volley/ |
Cache.java | 26 * Retrieves an entry from the cache. 29 * @return An {@link Entry} or null in the event of a cache miss 31 Entry get(String key); 34 * Adds or replaces an entry to the cache. 37 * @param entry Data to store and metadata for cache coherency, TTL, etc. 39 void put(String key, Entry entry); 48 * Invalidates an entry in the cache. 51 * @param fullExpire True to fully expire the entry, false to soft expire 56 * Removes an entry from the cache [all...] |
/external/emma/core/java12/com/vladium/util/ |
ObjectIntMap.java | 29 // TODO: optimize key comparisons using key.hash == entry.key.hash condition 63 m_buckets = new Entry [initialCapacity]; 91 final Entry [] buckets = m_buckets; 96 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) 98 if ((keyHash == entry.m_key.hashCode ()) || entry.m_key.equals (key) [all...] |
/external/skia/tests/ |
DynamicHashTest.cpp | 16 struct Entry { 20 static const int& GetKey(const Entry& entry) { return entry.key; } 25 class Hash : public SkTDynamicHash<Entry, int> { 34 typedef SkTDynamicHash<Entry, int> INHERITED; 42 Entry a = { 1, 2.0 }; 43 Entry b = { 2, 3.0 }; 44 Entry c = { 3, 4.0 }; 45 Entry d = { 4, 5.0 } [all...] |
/external/skqp/tests/ |
DynamicHashTest.cpp | 16 struct Entry { 20 static const int& GetKey(const Entry& entry) { return entry.key; } 25 class Hash : public SkTDynamicHash<Entry, int> { 34 typedef SkTDynamicHash<Entry, int> INHERITED; 42 Entry a = { 1, 2.0 }; 43 Entry b = { 2, 3.0 }; 44 Entry c = { 3, 4.0 }; 45 Entry d = { 4, 5.0 } [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ForwardingSortedMultiset.java | 107 public Entry<E> firstEntry() { 117 protected Entry<E> standardFirstEntry() { 118 Iterator<Entry<E>> entryIterator = entrySet().iterator(); 122 Entry<E> entry = entryIterator.next(); local 123 return Multisets.immutableEntry(entry.getElement(), entry.getCount()); 127 public Entry<E> lastEntry() { 138 protected Entry<E> standardLastEntry() { 139 Iterator<Entry<E>> entryIterator = descendingMultiset( 145 Entry<E> entry = entryIterator.next(); local 165 Entry<E> entry = entryIterator.next(); local 190 Entry<E> entry = entryIterator.next(); local [all...] |
FilteredMultimap.java | 22 import java.util.Map.Entry; 33 Predicate<? super Entry<K, V>> entryPredicate();
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
SortedMultiset.java | 35 Entry<E> firstEntry(); 37 Entry<E> lastEntry(); 39 Entry<E> pollFirstEntry(); 41 Entry<E> pollLastEntry();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractMapTester.java | 26 import java.util.Map.Entry; 41 AbstractContainerTester<Map<K, V>, Map.Entry<K, V>> { 52 @Override protected Collection<Map.Entry<K, V>> actualContents() { 79 protected Map.Entry<K, V>[] createArrayWithNullKey() { 80 Map.Entry<K, V>[] array = createSamplesArray(); 82 final Map.Entry<K, V> oldEntry = array[nullKeyLocation]; 83 array[nullKeyLocation] = entry(null, oldEntry.getValue()); 95 private Entry<K, V> getEntryNullReplaces() { 96 Iterator<Entry<K, V>> entries = getSampleElements().iterator(); 107 protected Map.Entry<K, V>[] createArrayWithNullValue() 187 protected Entry<K, V> entry(K key, V value) { method in class:AbstractMapTester [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
SortedMapGenerators.java | 31 import java.util.Map.Entry; 47 @Override public SortedMap<String, String> create(Entry<String, String>[] entries) { 49 for (Entry<String, String> entry : entries) { 50 checkNotNull(entry); 51 builder.put(entry.getKey(), entry.getValue()); 58 implements TestListGenerator<Entry<String, Integer>> { 61 public SampleElements<Entry<String, Integer>> samples() { 62 return new SampleElements<Entry<String, Integer>> 91 Entry<String, Integer> entry = (Entry<String, Integer>) o; local [all...] |
AbstractBiMapTester.java | 27 import java.util.Map.Entry; 40 static <K, V> Entry<V, K> reverseEntry(Entry<K, V> entry) { 41 return Helpers.mapEntry(entry.getValue(), entry.getKey()); 45 protected void expectContents(Collection<Entry<K, V>> expected) { 47 List<Entry<V, K>> reversedEntries = new ArrayList<Entry<V, K>>(); 48 for (Entry<K, V> entry : expected) [all...] |
/external/perfetto/protos/perfetto/trace/filesystem/ |
inode_file_map.proto | 24 // Representation of Entry 25 message Entry { 47 repeated Entry entries = 3;
|
/external/volley/src/test/java/com/android/volley/utils/ |
CacheTestUtils.java | 25 * Makes a random cache entry. 28 * @param isExpired Whether the TTLs should be set such that this entry is expired 29 * @param needsRefresh Whether the TTLs should be set such that this entry needs refresh 31 public static Cache.Entry makeRandomCacheEntry( 34 Cache.Entry entry = new Cache.Entry(); local 36 entry.data = data; 38 entry.data = new byte[random.nextInt(1024)]; 40 entry.etag = String.valueOf(random.nextLong()) [all...] |
/cts/tools/release-parser/src/com/android/cts/releaseparser/ |
ImgParser.java | 31 public Entry.EntryType getType() { 32 return Entry.EntryType.IMG;
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
PositionList.java | 76 PositionList.Entry[] arr = new PositionList.Entry[sz]; 99 arr[at] = new PositionList.Entry(insn.getAddress(), pos); 131 public Entry get(int n) { 132 return (Entry) get0(n); 136 * Sets the entry at the given index. 139 * @param entry {@code non-null;} the entry to set at {@code n} 141 public void set(int n, Entry entry) { [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
PositionList.java | 76 PositionList.Entry[] arr = new PositionList.Entry[sz]; 99 arr[at] = new PositionList.Entry(insn.getAddress(), pos); 131 public Entry get(int n) { 132 return (Entry) get0(n); 136 * Sets the entry at the given index. 139 * @param entry {@code non-null;} the entry to set at {@code n} 141 public void set(int n, Entry entry) { [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AddressParameters.java | 4 import java.util.Map.Entry; 27 public abstract Map<String,Entry<String,String>> getParameters();
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
HexagonSelectionDAGInfo.cpp | 36 TargetLowering::ArgListEntry Entry; 37 Entry.Ty = DAG.getDataLayout().getIntPtrType(*DAG.getContext()); 38 Entry.Node = Dst; 39 Args.push_back(Entry); 40 Entry.Node = Src; 41 Args.push_back(Entry); 42 Entry.Node = Size; 43 Args.push_back(Entry);
|