/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
TestStringListMultimapGenerator.java | 27 import java.util.Map.Entry; 39 public SampleElements<Map.Entry<String, String>> samples() { 40 return new SampleElements<Map.Entry<String, String>>( 66 Entry<String, String>[] array = new Entry[entries.length]; 70 Entry<String, String> e = (Entry<String, String>) o; 77 Entry<String, String>[] entries); 81 public final Entry<String, String>[] createArray(int length) { 82 return new Entry[length] [all...] |
TestStringSetMultimapGenerator.java | 26 import java.util.Map.Entry; 38 public SampleElements<Map.Entry<String, String>> samples() { 39 return new SampleElements<Map.Entry<String, String>>( 65 Entry<String, String>[] array = new Entry[entries.length]; 69 Entry<String, String> e = (Entry<String, String>) o; 76 Entry<String, String>[] entries); 80 public final Entry<String, String>[] createArray(int length) { 81 return new Entry[length] [all...] |
/external/u-boot/tools/binman/etype/ |
_testing.py | 5 # Entry-type module for testing purposes. Not used in real images. 8 from entry import Entry 12 class Entry__testing(Entry): 14 Entry.__init__(self, section, etype, node) 25 return {'invalid-entry': [1, 2]}
|
/device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/ |
IoApicLib.c | 88 IO_APIC_REDIRECTION_TABLE_ENTRY Entry;
94 Entry.Uint32.Low = IoApicRead (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2);
95 Entry.Bits.Mask = Enable ? 0 : 1;
96 IoApicWrite (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2, Entry.Uint32.Low);
102 Configure an I/O APIC Redirection Table Entry to deliver an interrupt in physical
104 entry is for the interrupt to be disabled (masked). IoApicEnableInterrupts() must
138 IO_APIC_REDIRECTION_TABLE_ENTRY Entry;
146 Entry.Uint32.Low = IoApicRead (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2);
147 Entry.Bits.Vector = (UINT8)Vector;
148 Entry.Bits.DeliveryMode = (UINT32)DeliveryMode; [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestSortedMapGenerator.java | 35 * Returns an entry with a key less than the keys of the {@link #samples()} 38 Map.Entry<K, V> belowSamplesLesser(); 41 * Returns an entry with a key less than the keys of the {@link #samples()} 44 Map.Entry<K, V> belowSamplesGreater(); 47 * Returns an entry with a key greater than the keys of the {@link #samples()} 50 Map.Entry<K, V> aboveSamplesLesser(); 53 * Returns an entry with a key greater than the keys of the {@link #samples()} 56 Map.Entry<K, V> aboveSamplesGreater();
|
TestStringSortedMapGenerator.java | 24 import java.util.Map.Entry; 36 public Entry<String, String> belowSamplesLesser() { 41 public Entry<String, String> belowSamplesGreater() { 46 public Entry<String, String> aboveSamplesLesser() { 51 public Entry<String, String> aboveSamplesGreater() { 56 public Iterable<Entry<String, String>> order(List<Entry<String, String>> insertionOrder) { 61 protected abstract SortedMap<String, String> create(Entry<String, String>[] entries);
|
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/internal/ |
SimpleEventQueue.java | 26 public void enqueue(Entry entry) { 27 entry.process();
|
/cts/tests/sensor/src/android/hardware/cts/helpers/ |
ActivityResultMultiplexedLatch.java | 35 private final HashMap<Integer, Entry> mActivityEntries = new HashMap<Integer, Entry>(); 42 private Entry mEntry; 44 private Latch(Entry entry) { 45 mEntry = entry; 69 private class Entry { 75 public Entry(int requestCode) { 86 Entry entry; local 104 Entry entry; local [all...] |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/ |
SortIndex.java | 30 private class Entry implements Comparable<Entry> { 36 Entry(final int idx, final T item) { 41 public int compareTo(final Entry o) { 47 private final List<Entry> list = new ArrayList<Entry>(); 71 final Entry entry = new Entry(idx++, i); local 72 this.list.add(entry); [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
ProgressiveDownloadInformationBox.java | 15 List<Entry> entries = Collections.emptyList(); 29 for (Entry entry : entries) { 30 IsoTypeWriter.writeUInt32(byteBuffer, entry.getRate()); 31 IsoTypeWriter.writeUInt32(byteBuffer, entry.getInitialDelay()); 35 public List<Entry> getEntries() { 39 public void setEntries(List<Entry> entries) { 46 entries = new LinkedList<Entry>(); 48 Entry entry = new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content)) local [all...] |
/external/emma/core/java12/com/vladium/util/ |
IntObjectMap.java | 61 m_buckets = new Entry [initialCapacity]; 87 final Entry [] buckets = m_buckets; 91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) 93 if (key == entry.m_key) 112 final Entry [] buckets = m_buckets; 116 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next [all...] |
IntSet.java | 59 m_buckets = new Entry [initialCapacity]; 85 final Entry [] buckets = m_buckets; 89 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) 91 if (key == entry.m_key) 109 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/ |
LinkedList.c | 83 EFI_LIST_ENTRY *Entry
90 to free any memory used by the entry if needed. The list must have been
95 Entry - Element to remove from the list.
106 _ForwardLink = Entry->ForwardLink;
107 _BackLink = Entry->BackLink;
112 Entry->ForwardLink = (EFI_LIST_ENTRY *) EFI_BAD_POINTER;
113 Entry->BackLink = (EFI_LIST_ENTRY *) EFI_BAD_POINTER;
121 EFI_LIST_ENTRY *Entry
134 Entry - Element to insert at the end of the list.
147 Entry->ForwardLink = _ListHead; [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
DivideTimeScaleTrack.java | 43 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() { 47 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() { 55 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() { 90 List<CompositionTimeToSample.Entry> adjustCtts() { 91 List<CompositionTimeToSample.Entry> origCtts = this.source.getCompositionTimeEntries(); 93 List<CompositionTimeToSample.Entry> entries2 = new ArrayList<CompositionTimeToSample.Entry>(origCtts.size()); 94 for (CompositionTimeToSample.Entry entry : origCtts) { 95 entries2.add(new CompositionTimeToSample.Entry(entry.getCount(), entry.getOffset() / timeScaleDivisor)) [all...] |
MultiplyTimeScaleTrack.java | 49 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() { 53 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() { 61 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() { 96 static List<CompositionTimeToSample.Entry> adjustCtts(List<CompositionTimeToSample.Entry> source, int timeScaleFactor) { 98 List<CompositionTimeToSample.Entry> entries2 = new ArrayList<CompositionTimeToSample.Entry>(source.size()); 99 for (CompositionTimeToSample.Entry entry : source) { 100 entries2.add(new CompositionTimeToSample.Entry(entry.getCount(), timeScaleFactor * entry.getOffset())) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
CatchTable.java | 23 * Table of catch entries. Each entry includes a range of code 49 public Entry get(int n) { 50 return (Entry) get0(n); 54 * Sets the entry at the given index. 57 * @param entry {@code non-null;} the entry to set at {@code n} 59 public void set(int n, Entry entry) { 60 set0(n, entry); 75 Entry thisEntry = get(i) [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
CatchTable.java | 22 * Table of catch entries. Each entry includes a range of code 48 public Entry get(int n) { 49 return (Entry) get0(n); 53 * Sets the entry at the given index. 56 * @param entry {@code non-null;} the entry to set at {@code n} 58 public void set(int n, Entry entry) { 59 set0(n, entry); 75 Entry thisEntry = get(i) [all...] |
/external/google-breakpad/src/processor/ |
map_serializers.h | 78 template<typename Addr, typename Entry> 82 size_t SizeOf(const AddressMap<Addr, Entry> &m) const { 89 char* Write(const AddressMap<Addr, Entry> &m, char *dest) const { 97 char* Serialize(const AddressMap<Addr, Entry> &m, unsigned int *size) const { 104 StdMapSerializer<Addr, Entry> std_map_serializer_; 109 template<typename Address, typename Entry> 113 size_t SizeOf(const RangeMap<Address, Entry> &m) const; 118 char* Write(const RangeMap<Address, Entry> &m, char* dest) const; 124 char* Serialize(const RangeMap<Address, Entry> &m, unsigned int *size) const; 128 typedef typename RangeMap<Address, Entry>::Range Range [all...] |
/external/libchrome/mojo/core/ |
watcher_set.cc | 21 for (const auto& entry : watchers_) 22 entry.first->NotifyHandleState(owner_, state); 26 for (const auto& entry : watchers_) 27 entry.first->NotifyHandleClosed(owner_); 36 watchers_.insert(std::make_pair(watcher.get(), Entry{watcher})); 72 WatcherSet::Entry::Entry(const scoped_refptr<WatcherDispatcher>& dispatcher) 75 WatcherSet::Entry::Entry(Entry&& other) = default [all...] |
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
LazyField.java | 34 import java.util.Map.Entry; 91 static class LazyEntry<K> implements Entry<K, Object> { 92 private Entry<K, LazyField> entry; field in class:LazyField.LazyEntry 94 private LazyEntry(Entry<K, LazyField> entry) { 95 this.entry = entry; 100 return entry.getKey(); 105 LazyField field = entry.getValue() 142 Entry<K, ?> entry = iterator.next(); local [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
LinkedList.c | 118 Adds the node Entry at the beginning of the doubly linked list denoted by
122 If Entry is NULL, then ASSERT().
129 @param Entry A pointer to a node that is to be inserted at the beginning
139 IN OUT LIST_ENTRY *Entry
143 // ASSERT List not too long and Entry is not one of the nodes of List
145 ASSERT (!IsNodeInList (List, Entry));
147 Entry->ForwardLink = List->ForwardLink;
148 Entry->BackLink = List;
149 Entry->ForwardLink->BackLink = Entry;
[all...] |
/cts/tools/release-parser/src/com/android/cts/releaseparser/ |
ExeParser.java | 29 public Entry.EntryType getType() { 30 return Entry.EntryType.EXE;
|
JarParser.java | 29 public Entry.EntryType getType() { 30 return Entry.EntryType.JAR;
|
OdexParser.java | 29 public Entry.EntryType getType() { 30 return Entry.EntryType.ODEX;
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugMacro.h | 22 /// A single macro entry within a macro list. 23 struct Entry { 24 /// The type of the macro entry. 34 /// The string (name, value) of the macro entry. 43 typedef SmallVector<Entry, 4> MacroList;
|