HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 201 - 225 of 2434) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SortedMapInterfaceTest.java 22 import java.util.Map.Entry;
68 Iterator<Entry<K, V>> iterator = map.entrySet().iterator();
69 Entry<K, V> firstEntry = iterator.next();
70 Entry<K, V> secondEntry = iterator.next();
95 Iterator<Entry<K, V>> iterator = map.entrySet().iterator();
96 Entry<K, V> firstEntry = iterator.next();
97 Entry<K, V> secondEntry = iterator.next();
118 Iterator<Entry<K, V>> iterator = map.entrySet().iterator();
120 Entry<K, V> secondEntry = iterator.next();
  /external/llvm/lib/ExecutionEngine/
GDBRegistrationListener.cpp 68 RegisteredObjectInfo(std::size_t Size, jit_code_entry *Entry,
70 : Size(Size), Entry(Entry), Obj(std::move(Obj)) {}
73 : Size(Other.Size), Entry(Other.Entry), Obj(std::move(Other.Obj)) {}
77 Entry = Other.Entry;
83 jit_code_entry *Entry;
108 /// Creates an entry in the JIT registry for the buffer @p Object,
134 // Insert this entry at the head of the list
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableClassToInstanceMapTest.java 33 import java.util.Map.Entry;
55 Entry<Class, Number> entry = (Entry<Class, Number>) object;
56 builder.put(entry.getKey(), entry.getValue());
161 public SampleElements<Entry<Class, Number>> samples() {
162 Entry<Class, Number> entry1 =
164 Entry<Class, Number> entry2 =
166 Entry<Class, Number> entry3
    [all...]
HashBiMapTest.java 33 import java.util.Map.Entry;
46 protected BiMap<String, String> create(Entry<String, String>[] entries) {
48 for (Entry<String, String> entry : entries) {
49 result.put(entry.getKey(), entry.getValue());
108 Set<Entry<Integer, Integer>> entries = bimap.entrySet();
109 for (Entry<Integer, Integer> entry : entries) {
110 entry.setValue(entry.getValue() + 2 * N)
122 Map.Entry<Integer, String> entry = iterator.next(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
ImmutableTypeToInstanceMapTest.java 36 import java.util.Map.Entry;
59 Entry<TypeToken, Object> entry = (Entry<TypeToken, Object>) object;
60 builder.put(entry.getKey(), entry.getValue());
157 public SampleElements<Entry<TypeToken, Object>> samples() {
158 Entry<TypeToken, Object> entry1 =
160 Entry<TypeToken, Object> entry2 =
162 Entry<TypeToken, Object> entry3
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 136 #define RemoveEntryList(Entry) { PLIST_ENTRY _EX_Blink; PLIST_ENTRY _EX_Flink; _EX_Flink = (Entry)->Flink; _EX_Blink = (Entry)->Blink; _EX_Blink->Flink = _EX_Flink; _EX_Flink->Blink = _EX_Blink; }
137 #define InsertTailList(ListHead,Entry) { PLIST_ENTRY _EX_Blink; PLIST_ENTRY _EX_ListHead; _EX_ListHead = (ListHead); _EX_Blink = _EX_ListHead->Blink; (Entry)->Flink = _EX_ListHead; (Entry)->Blink = _EX_Blink; _EX_Blink->Flink = (Entry); _EX_ListHead->Blink = (Entry); }
138 #define InsertHeadList(ListHead,Entry) { PLIST_ENTRY _EX_Flink; PLIST_ENTRY _EX_ListHead; _EX_ListHead = (ListHead); _EX_Flink = _EX_ListHead->Flink; (Entry)->Flink = _EX_Flink; (Entry)->Blink = _EX_ListHead; _EX_Flink->Blink = (Entry); _EX_ListHead->Flin (…)
    [all...]
  /art/runtime/
type_lookup_table.h 48 const Entry* entry = &entries_[pos]; local
49 while (!entry->IsEmpty()) {
50 if (CmpHashBits(entry->data, hash) && IsStringsEquals(str, entry->str_offset)) {
51 return GetClassDefIdx(entry->data);
53 if (entry->IsLast()) {
56 pos = (pos + entry->next_pos_delta) & GetSizeMask();
57 entry = &entries_[pos];
97 * So the data element of Entry used to store class_def_idx and part of hash of the entry
    [all...]
  /external/guava/guava/src/com/google/common/collect/
FilteredMultimapValues.java 28 import java.util.Map.Entry;
62 Predicate<? super Entry<K, V>> entryPredicate = multimap.entryPredicate();
63 for (Iterator<Entry<K, V>> unfilteredItr = multimap.unfiltered().entries().iterator();
65 Map.Entry<K, V> entry = unfilteredItr.next(); local
66 if (entryPredicate.apply(entry) && Objects.equal(entry.getValue(), o)) {
77 // explicit <Entry<K, V>> is required to build with JDK6
78 Predicates.<Entry<K, V>>and(multimap.entryPredicate(),
85 // explicit <Entry<K, V>> is required to build with JDK
    [all...]
RegularImmutableSortedMap.java 50 ImmutableSet<Entry<K, V>> createEntrySet() {
56 public UnmodifiableIterator<Entry<K, V>> iterator() {
61 ImmutableList<Entry<K, V>> createAsList() {
62 return new ImmutableAsList<Entry<K, V>>() {
67 public Entry<K, V> get(int index) {
72 ImmutableCollection<Entry<K, V>> delegateCollection() {
ImmutableMultiset.java 23 import com.google.common.collect.Multiset.Entry;
199 Collection<? extends Entry<? extends E>> entries) {
202 for (Entry<? extends E> entry : entries) {
203 int count = entry.getCount();
207 builder.put(entry.getElement(), count);
239 final Iterator<Entry<E>> entryIterator = entrySet().iterator();
252 Entry<E> entry = entryIterator.next(); local
253 element = entry.getElement()
    [all...]
EmptyImmutableBiMap.java 55 public ImmutableSet<Entry<Object, Object>> entrySet() {
60 ImmutableSet<Entry<Object, Object>> createEntrySet() {
ForwardingSetMultimap.java 21 import java.util.Map.Entry;
41 @Override public Set<Entry<K, V>> entries() {
MapConstraints.java 31 import java.util.Map.Entry;
175 * Returns a constrained view of the specified entry, using the specified
176 * constraint. The {@link Entry#setValue} operation will be verified with the
179 * @param entry the entry to constrain
180 * @param constraint the constraint for the entry
181 * @return a constrained view of the specified entry
183 private static <K, V> Entry<K, V> constrainedEntry(
184 final Entry<K, V> entry,
    [all...]
StandardTable.java 39 import java.util.Map.Entry;
162 Iterator<Entry<R, Map<C, V>>> iterator
165 Entry<R, Map<C, V>> entry = iterator.next(); local
166 V value = entry.getValue().remove(column);
168 output.put(entry.getKey(), value);
169 if (entry.getValue().isEmpty()) {
226 final Iterator<Entry<R, Map<C, V>>> rowIterator
228 Entry<R, Map<C, V>> rowEntry;
229 Iterator<Entry<C, V>> columnIterato
360 final Entry<C, V> entry = iterator.next(); local
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp 109 int Entry = 0;
114 Entry = TypeInfos.size();
119 Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--));
127 Entry = 0;
133 --Entry;
135 Asm->OutStreamer->AddComment("FilterInfo " + Twine(Entry));
  /external/llvm/unittests/Transforms/Utils/
Local.cpp 69 BasicBlock *Entry(BasicBlock::Create(C, "", F.get()));
71 BranchInst::Create(BB, Entry);
76 P1->addIncoming(B.getInt32(42), Entry);
79 P2->addIncoming(B.getInt32(42), Entry);
82 P3->addIncoming(B.getInt32(42), Entry);
86 P4->addIncoming(B.getInt32(42), Entry);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
Amf0Track.java 68 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
69 LinkedList<TimeToSampleBox.Entry> timesToSample = new LinkedList<TimeToSampleBox.Entry>();
78 timesToSample.add(new TimeToSampleBox.Entry(1, delta));
85 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
95 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractSampleEncryptionBox.java 27 List<Entry> entries = new LinkedList<Entry>();
65 Entry e = new Entry();
70 e.pairs = new LinkedList<Entry.Pair>();
85 public List<Entry> getEntries() {
89 public void setEntries(List<Entry> entries) {
152 for (Entry entry : entries) {
155 System.arraycopy(entry.iv, 0, ivFull, ivSize - entry.iv.length, entry.iv.length)
274 Entry entry = (Entry) o; local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMap.java 83 static <K, V> Entry<K, V> entryOf(K key, V value) {
89 final List<Entry<K, V>> entries = Lists.newArrayList();
98 public Builder<K, V> put(Entry<? extends K, ? extends V> entry) {
99 if (entry instanceof ImmutableEntry) {
100 checkNotNull(entry.getKey());
101 checkNotNull(entry.getValue());
103 Entry<K, V> immutableEntry = (Entry<K, V>) entry;
129 Entry<K, V> entry = getOnlyElement(entries); local
163 Entry<? extends K, ? extends V> entry local
    [all...]
ImmutableMapKeySet.java 21 import java.util.Map.Entry;
56 final ImmutableList<Entry<K, V>> entryList = map.entrySet().asList();
  /development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 30 * where each list element represents a single entry (post) in the XML feed.
37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException {
49 private List<Entry> readFeed(XmlPullParser parser) throws XmlPullParserException, IOException {
50 List<Entry> entries = new ArrayList<Entry>();
58 // Starts by looking for the entry tag
59 if (name.equals("entry")) {
68 // This class represents a single entry (post) in the XML feed.
70 public static class Entry {
75 private Entry(String title, String summary, String link)
    [all...]
  /external/deqp/framework/common/
tcuFunctionLibrary.hpp 54 struct Entry
60 StaticFunctionLibrary (const Entry* entries, int numEntries);
  /external/guava/guava-gwt/src/com/google/common/collect/
Table_CustomFieldSerializerBase.java 22 import java.util.Map.Entry;
36 for (Entry<?, ?> row : hashMap.entrySet()) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
HashBiMapTest.java 26 import java.util.Map.Entry;
39 protected BiMap<String, String> create(Entry<String, String>[] entries) {
41 for (Entry<String, String> entry : entries) {
42 result.put(entry.getKey(), entry.getValue());
84 Set<Entry<Integer, Integer>> entries = bimap.entrySet();
85 for (Entry<Integer, Integer> entry : entries) {
86 entry.setValue(entry.getValue() + 2 * N)
98 Map.Entry<Integer, String> entry = iterator.next(); local
    [all...]
  /external/llvm/include/llvm/Support/
SpecialCaseList.h 89 struct Entry;
90 StringMap<StringMap<Entry>> Entries;

Completed in 1574 milliseconds

1 2 3 4 5 6 7 891011>>