HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 726 - 750 of 2649) sorted by null

<<21222324252627282930>>

  /external/guava/guava/src/com/google/common/collect/
Multimaps.java 44 import java.util.Map.Entry;
410 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
411 dest.put(entry.getValue(), entry.getKey());
494 transient Collection<Entry<K, V>> entries;
526 @Override public Collection<Entry<K, V>> entries() {
527 Collection<Entry<K, V>> result = entries;
627 @Override public Set<Map.Entry<K, V>> entries() {
837 * {@link Entry#setValue} operation throws an {@lin
    [all...]
ImmutableSetMultimap.java 37 import java.util.Map.Entry;
77 * Returns an immutable multimap containing a single entry.
87 * Repeated occurrences of an entry (according to {@link Object#equals}) after
99 * Repeated occurrences of an entry (according to {@link Object#equals}) after
113 * Repeated occurrences of an entry (according to {@link Object#equals}) after
128 * Repeated occurrences of an entry (according to {@link Object#equals}) after
203 * Adds an entry to the built multimap if it is not already present.
207 @Override public Builder<K, V> put(Entry<? extends K, ? extends V> entry) {
209 checkNotNull(entry.getKey()), checkNotNull(entry.getValue()))
435 Entry<?, ?> entry = (Entry<?, ?>) object; local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/
MnpIo.c 410 LIST_ENTRY *Entry;
415 NET_LIST_FOR_EACH (Entry, &MnpServiceData->ChildrenList) {
416 Instance = NET_LIST_USER_STRUCT (Entry, MNP_INSTANCE_DATA, InstEntry);
467 // Remove this Wrap entry from the list.
510 // Recycle this OldRxDataWrap, this entry will be removed by the callee.
552 LIST_ENTRY *Entry;
587 NET_LIST_FOR_EACH (Entry, &Instance->GroupCtrlBlkList) {
589 GroupCtrlBlk = NET_LIST_USER_STRUCT (Entry, MNP_GROUP_CONTROL_BLOCK, CtrlBlkEntry);
634 LIST_ENTRY *Entry;
669 NET_LIST_FOR_EACH (Entry, &MnpDeviceData->GroupAddressList) {
    [all...]
MnpDriver.c 2 Implementation of driver entry point and driver binding protocol.
32 @param[in] Entry The entry to be removed.
35 @retval EFI_SUCCESS The entry has been removed successfully.
36 @retval Others Fail to remove the entry.
42 IN LIST_ENTRY *Entry,
48 MnpServiceData = MNP_SERVICE_DATA_FROM_LINK (Entry);
55 @param[in] Entry The entry to be removed.
58 @retval EFI_SUCCESS The entry has been removed successfully.
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/SnpNt32Dxe/
SnpNt32.c 358 @param BuffSize On entry, the size, in bytes, of Buffer. On exit, the size, in
398 }, // Entry
481 LIST_ENTRY *Entry;
486 NET_LIST_FOR_EACH (Entry, &GlobalData->InstanceList) {
488 Instance = NET_LIST_USER_STRUCT_S (Entry, SNPNT32_INSTANCE_DATA, Entry, SNP_NT32_INSTANCE_SIGNATURE);
    [all...]
  /external/libkmsxx/utils/
kmsprint.cpp 264 struct Entry
268 vector<Entry> children;
271 static Entry& add_entry(vector<Entry>& entries)
323 static void print_entry(const Entry& e, const string& prefix, bool is_child, bool is_last)
344 for (const Entry& child : e.children) {
351 static void print_entries(const vector<Entry>& entries, const string& prefix)
353 for (const Entry& e: entries) {
410 vector<Entry> entries;
413 Entry& e1 = add_entry(entries)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapConstraintsTest.java 268 Map.Entry<String, Collection<Integer>> entry local
270 assertTrue(entry.getValue() instanceof List);
281 Map.Entry<String, Collection<Integer>> entry local
283 assertTrue(entry.getValue() instanceof List);
294 Map.Entry<String, Collection<Integer>> entry local
296 assertTrue(entry.getValue() instanceof Set);
307 Map.Entry<String, Collection<Integer>> entr local
459 Map.Entry<String, Integer> entry local
488 Map.Entry<String, Collection<Integer>> entry local
624 final Map.Entry<K, V> entry = Maps.immutableEntry(key, value); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapConstraintsTest.java 270 Map.Entry<String, Collection<Integer>> entry local
272 assertTrue(entry.getValue() instanceof List);
283 Map.Entry<String, Collection<Integer>> entry local
285 assertTrue(entry.getValue() instanceof List);
296 Map.Entry<String, Collection<Integer>> entry local
298 assertTrue(entry.getValue() instanceof Set);
309 Map.Entry<String, Collection<Integer>> entr local
461 Map.Entry<String, Integer> entry local
490 Map.Entry<String, Collection<Integer>> entry local
626 final Map.Entry<K, V> entry = Maps.immutableEntry(key, value); local
    [all...]
LinkedHashMultimapTest.java 47 import java.util.Map.Entry;
63 protected SetMultimap<String, String> create(Entry<String, String>[] entries) {
65 for (Entry<String, String> entry : entries) {
66 multimap.put(entry.getKey(), entry.getValue());
170 Iterator<Map.Entry<String, Integer>> entryIterator =
178 Iterator<Map.Entry<String, Collection<Integer>>> collectionIterator =
180 Map.Entry<String, Collection<Integer>> entry = collectionIterator.next() local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 46 * entry has a string key and a fixed number of values. Each key must match
63 * <p>Clients call {@link #edit} to create or update the values of an entry. An
64 * entry may have only one editor at one time; if a value is not available to be
67 * <li>When an entry is being <strong>created</strong> it is necessary to
70 * <li>When an entry is being <strong>edited</strong>, it is not necessary
78 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
123 * cache entry. Each line contains space-separated values: a state, a key,
125 * o DIRTY lines track that an entry is actively being created or updated.
129 * o CLEAN lines track a cache entry that has been successfully published
151 private final LinkedHashMap<String, Entry> lruEntries = new LinkedHashMap<>(0, 0.75f, true)
330 Entry entry = lruEntries.get(key); local
357 Entry entry = i.next(); local
426 Entry entry = lruEntries.get(key); local
454 Entry entry = lruEntries.get(key); local
515 Entry entry = editor.entry; local
596 Entry entry = lruEntries.get(key); local
733 Entry entry = delegate.next(); local
827 private final Entry entry; field in class:Editor
    [all...]
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/
DiskLruCache.java 47 * entry has a string key and a fixed number of values. Each key must match
64 * <p>Clients call {@link #edit} to create or update the values of an entry. An
65 * entry may have only one editor at one time; if a value is not available to be
68 * <li>When an entry is being <strong>created</strong> it is necessary to
71 * <li>When an entry is being <strong>edited</strong>, it is not necessary
79 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
125 * cache entry. Each line contains space-separated values: a state, a key,
127 * o DIRTY lines track that an entry is actively being created or updated.
131 * o CLEAN lines track a cache entry that has been successfully published
153 private final LinkedHashMap<String, Entry> lruEntries = new LinkedHashMap<>(0, 0.75f, true)
332 Entry entry = lruEntries.get(key); local
359 Entry entry = i.next(); local
428 Entry entry = lruEntries.get(key); local
456 Entry entry = lruEntries.get(key); local
517 Entry entry = editor.entry; local
598 Entry entry = lruEntries.get(key); local
735 Entry entry = delegate.next(); local
831 private final Entry entry; field in class:Editor
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbHook.c 44 It will record soruce address for Callstack entry.
61 // Record the new callstack entry
75 It will record parameter for Callstack entry.
110 It will record source address for callstack entry.
126 // If there is empty entry for callstack, add it
133 // If there is no empty entry for callstack, throw the oldest one
151 It will throw the newest Callstack entry.
181 It will record source address for trace entry.
198 // Record the new trace entry
212 It will record destination address for trace entry.
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
NavigableMapNavigationTester.java 32 import java.util.Map.Entry;
45 private List<Entry<K, V>> entries;
46 private Entry<K, V> a;
47 private Entry<K, V> b;
48 private Entry<K, V> c;
73 Entry<K, V>[] entries = new Entry[] {a, c};
239 List<Entry<K, V>> descending = new ArrayList<Entry<K, V>>();
240 for (Entry<K, V> entry : navigableMap.descendingMap().entrySet())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Type.cpp 288 IntegerType *&Entry = C.pImpl->IntegerTypes[NumBits];
290 if (Entry == 0)
291 Entry = new (C.pImpl->TypeAllocator) IntegerType(C, NumBits);
293 return Entry;
418 // If this struct already had a name, remove its symbol table entry.
428 // Look up the entry for the name.
429 StringMapEntry<StructType*> *Entry =
433 if (Entry->getValue()) {
443 Entry = &getContext().pImpl->
445 } while (Entry->getValue())
    [all...]
  /art/libartbase/base/
bit_table.h 261 class Entry {
263 Entry() {
270 Entry(std::initializer_list<uint32_t> values) {
294 Entry& operator[](size_t row) { return rows_[row]; }
295 const Entry& operator[](size_t row) const { return rows_[row]; }
296 const Entry& back() const { return rows_.back(); }
301 void Add(Entry value) {
307 uint32_t Dedup(Entry* values, size_t count = 1) {
309 uint32_t hash = hasher(MemoryRegion(values, sizeof(Entry) * count));
319 [](const Entry& lhs, const Entry& rhs)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Misc.c 188 LIST_ENTRY *Entry;
197 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
198 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
253 LIST_ENTRY *Entry;
260 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
261 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
270 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
271 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
308 LIST_ENTRY *Entry;
320 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpMisc.c 249 LIST_ENTRY *Entry;
258 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
259 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
320 LIST_ENTRY *Entry;
327 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
328 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
339 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
340 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
380 LIST_ENTRY *Entry;
392 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
    [all...]
TcpTimer.c 500 LIST_ENTRY *Entry;
511 for (Entry = mTcpRunQue.ForwardLink; Entry != &mTcpRunQue; Entry = Next) {
513 Next = Entry->ForwardLink;
515 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
562 if ((Next->BackLink != Entry) || (Tcb->EnabledTimer == 0)) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
UnicodeMapTest.java 17 import java.util.Map.Entry;
190 for (Entry<String, Integer> e : me.entrySet()) {
193 Set<Entry<String, Integer>> entrySet = stayWithMe.entrySet();
475 static Comparator<Map.Entry<Integer, String>> ENTRY_COMPARATOR = new Comparator<Map.Entry<Integer, String>>() {
477 public int compare(Map.Entry<Integer, String> o1, Map.Entry<Integer, String> o2) {
481 Map.Entry<Integer, String> a = o1;
482 Map.Entry<Integer, String> b = o2;
495 private void getEntries(String title, Set<Map.Entry<Integer,String>> m1entries, Set<Map.Entry<Integer, String>> m2entries, StringBuilder buffer, int l (…)
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
UnicodeMapTest.java 16 import java.util.Map.Entry;
187 for (Entry<String, Integer> e : me.entrySet()) {
190 Set<Entry<String, Integer>> entrySet = stayWithMe.entrySet();
472 static Comparator<Map.Entry<Integer, String>> ENTRY_COMPARATOR = new Comparator<Map.Entry<Integer, String>>() {
474 public int compare(Map.Entry<Integer, String> o1, Map.Entry<Integer, String> o2) {
478 Map.Entry<Integer, String> a = o1;
479 Map.Entry<Integer, String> b = o2;
492 private void getEntries(String title, Set<Map.Entry<Integer,String>> m1entries, Set<Map.Entry<Integer, String>> m2entries, StringBuilder buffer, int l (…)
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2macho.cpp 55 void dumpExportEntry(raw_ostream &OS, MachOYAML::ExportEntry &Entry);
295 MachOYAML::ExportEntry &Entry) {
296 encodeSLEB128(Entry.TerminalSize, OS);
297 if (Entry.TerminalSize > 0) {
298 encodeSLEB128(Entry.Flags, OS);
299 if (Entry.Flags & MachO::EXPORT_SYMBOL_FLAGS_REEXPORT) {
300 encodeSLEB128(Entry.Other, OS);
301 OS << Entry.ImportName;
304 encodeSLEB128(Entry.Address, OS);
305 if (Entry.Flags & MachO::EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER
    [all...]
  /external/llvm/unittests/Bitcode/
BitstreamReaderTest.cpp 221 BitstreamEntry Entry =
223 ASSERT_EQ(BitstreamEntry::SubBlock, Entry.Kind);
224 ASSERT_EQ(BlockID, Entry.ID);
228 Entry = Stream.advance();
229 ASSERT_EQ(BitstreamEntry::Record, Entry.Kind);
230 ASSERT_EQ(AbbrevID, Entry.ID);
235 ASSERT_EQ(RecordID, Stream.readRecord(Entry.ID, Record, &BlobOut));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 96 struct Entry {
107 std::vector<Entry> Entries;
174 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::Entry)
203 static void mapping(IO &IO, DWARFYAML::PubEntry &Entry);
214 template <> struct MappingTraits<DWARFYAML::Entry> {
215 static void mapping(IO &IO, DWARFYAML::Entry &Entry);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/AggressiveInstCombine/
TruncInstCombine.cpp 296 Info Entry = InstInfoMap.lookup(I);
297 assert(Entry.NewValue);
298 return Entry.NewValue;
334 auto Entry = find(Worklist, I);
335 if (Entry != Worklist.end()) {
337 *Entry = NewCI;
339 Worklist.erase(Entry);
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 71 unsigned &Entry = NodePredicateMap[TP];
72 if (Entry == 0) {
76 // We've never seen a predicate with the same code: allocate an entry.
78 Entry = NodePredicates.size();
81 Entry = NodePredicateMap[SameCodePreds.front()];
82 assert(Entry != 0);
88 return Entry-1;
92 unsigned &Entry = PatternPredicateMap[PredName];
93 if (Entry == 0) {
95 Entry = PatternPredicates.size()
    [all...]

Completed in 1669 milliseconds

<<21222324252627282930>>