Searched refs:Entry (Results 126 - 150 of 1024) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMap.java54 ImmutableMap(Entry<? extends K, ? extends V>... entries) {
56 for (Entry<? extends K, ? extends V> entry : entries) {
105 static <K, V> Entry<K, V> entryOf(K key, V value) {
110 final List<Entry<K, V>> entries = Lists.newArrayList();
119 public Builder<K, V> put(Entry<? extends K, ? extends V> entry) {
124 Entry<K, V> immutableEntry = (Entry<K, V>) entry;
133 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
144 List<Entry<K, V>> entries) {
150 Entry<
[all...]
H A DMaps.java48 import java.util.Map.Entry;
358 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
547 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
683 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
691 public static <K, V> Entry<K, V> immutableEntry(
698 * Entry#setValue} operation throws an {@link UnsupportedOperationException},
704 static <K, V> Set<Entry<K, V>> unmodifiableEntrySet(
705 Set<Entry<K, V>> entrySet) {
712 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
714 * the Entry contrac
719 unmodifiableEntry(final Entry<K, V> entry) argument
768 addAll( Collection<? extends Entry<K, V>> collection) argument
1466 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1509 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1522 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1534 AbstractFilteredMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
1667 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1678 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1766 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DAbstractBiMap.java140 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
190 final Iterator<Entry<K, V>> iterator = delegate.entrySet().iterator();
192 Entry<K, V> entry;
265 private transient Set<Entry<K, V>> entrySet;
267 @Override public Set<Entry<K, V>> entrySet() {
268 Set<Entry<K, V>> result = entrySet;
272 private class EntrySet extends ForwardingSet<Entry<K, V>> {
273 final Set<Entry<K, V>> esDelegate = delegate.entrySet();
275 @Override protected Set<Entry<K, V>> delegate() {
289 Entry<
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DSilenceTrackImpl.java20 TimeToSampleBox.Entry entry;
27 entry = new TimeToSampleBox.Entry(numFrames, standZeit);
45 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
86 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
94 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
H A DAmf0Track.java68 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/guava/guava/src/com/google/common/collect/
H A DMaps.java50 import java.util.Map.Entry;
361 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
550 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
712 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
720 public static <K, V> Entry<K, V> immutableEntry(
727 * Entry#setValue} operation throws an {@link UnsupportedOperationException},
733 static <K, V> Set<Entry<K, V>> unmodifiableEntrySet(
734 Set<Entry<K, V>> entrySet) {
741 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
743 * the Entry contrac
748 unmodifiableEntry(final Entry<K, V> entry) argument
797 addAll( Collection<? extends Entry<K, V>> collection) argument
1495 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1538 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1551 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1563 AbstractFilteredMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
1696 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1707 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1795 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DStandardTable.java36 import java.util.Map.Entry;
202 Iterator<Entry<R, Map<C, V>>> iterator
205 Entry<R, Map<C, V>> entry = iterator.next();
307 final Iterator<Entry<R, Map<C, V>>> rowIterator
309 Entry<R, Map<C, V>> rowEntry;
310 Iterator<Entry<C, V>> columnIterator
322 Entry<C, V> columnEntry = columnIterator.next();
432 Set<Entry<C, V>> entrySet;
435 public Set<Entry<C, V>> entrySet() {
436 Set<Entry<
541 removePredicate(Predicate<? super Entry<R, V>> predicate) argument
[all...]
H A DMultimaps.java49 import java.util.Map.Entry;
406 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
490 transient Collection<Entry<K, V>> entries;
518 Set<Entry<K, Collection<V>>> entrySet;
520 @Override public Set<Map.Entry<K, Collection<V>>> entrySet() {
521 Set<Entry<K, Collection<V>>> result = entrySet;
552 @Override public Collection<Entry<K, V>> entries() {
553 Collection<Entry<K, V>> result = entries;
693 @Override public Set<Map.Entry<K, V>> entries() {
903 * The {@link Entry#setValu
2271 filterEntries( Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2286 filterFiltered(FilteredMultimap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2297 FilteredMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
[all...]
/external/chromium_org/components/policy/core/common/
H A Dpolicy_map.cc14 PolicyMap::Entry::Entry() function in class:policy::PolicyMap::Entry
20 void PolicyMap::Entry::DeleteOwnedMembers() {
27 scoped_ptr<PolicyMap::Entry> PolicyMap::Entry::DeepCopy() const {
28 scoped_ptr<Entry> copy(new Entry);
40 bool PolicyMap::Entry::has_higher_priority_than(
41 const PolicyMap::Entry& other) const {
48 bool PolicyMap::Entry
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DSortedMapGenerators.java33 import java.util.Map.Entry;
47 public static final Comparator<Entry<String, String>> ENTRY_COMPARATOR
48 = new Comparator<Entry<String, String>>() {
51 Entry<String, String> o1, Entry<String, String> o2) {
107 @Override public Set<Entry<String, String>> createFromEntries( argument
108 Entry<String, String>[] entries) {
112 for (Entry<String, String> entry : entries) {
119 @Override public List<Entry<String, String>> order(
120 List<Entry<Strin
179 createFromEntries( Entry<String, String>[] entries) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalList.java59 public Entry get(int n) {
60 return (Entry) get0(n);
69 public void set(int n, Entry entry) {
118 * Entry in a local list.
120 public static class Entry implements Comparable<Entry> { class in class:LocalList
141 public Entry(int address, Disposition disposition, RegisterSpec spec) { method in class:LocalList.Entry
174 if (!(other instanceof Entry)) {
178 return (compareTo((Entry) other) == 0);
189 public int compareTo(Entry othe
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DNavigableMapTestSuiteBuilder.java30 import java.util.Map.Entry;
53 ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>> parentBuilder) {
110 ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>>
120 final Comparator<Entry<K, V>> entryComparator = Helpers.entryComparator(emptyMap.comparator());
123 SampleElements<Entry<K, V>> samples = delegate.samples();
125 List<Entry<K, V>> samplesList = Arrays.asList(
135 List<Entry<K, V>> extremeValues = (List) getExtremeValues();
137 List<Entry<K, V>> normalValues = (List) Arrays.asList(entries);
153 List<Entry<K, V>> allEntries = new ArrayList<Entry<
[all...]
H A DMapTestSuiteBuilder.java44 import java.util.Map.Entry;
56 TestMapGenerator<K, V>, Map<K, V>, Map.Entry<K, V>> {
83 ? extends OneSizeTestContainerGenerator<Map<K, V>, Map.Entry<K, V>>>
180 implements TestSetGenerator<Map.Entry<K, V>> {
181 private final OneSizeTestContainerGenerator<Map<K, V>, Map.Entry<K, V>>
186 Map<K, V>, Map.Entry<K, V>> mapGenerator) {
191 public SampleElements<Map.Entry<K, V>> samples() {
196 public Set<Map.Entry<K, V>> create(Object... elements) {
201 public Map.Entry<K, V>[] createArray(int length) {
206 public Iterable<Map.Entry<
[all...]
H A DTestsForMapsInJavaUtil.java35 import java.util.Map.Entry;
89 Entry<String, String>[] entries) {
105 Entry<String, String>[] entries) {
123 Entry<String, String>[] entries) {
126 @Override public Iterable<Entry<String, String>> order(
127 List<Entry<String, String>> insertionOrder) {
149 Entry<String, String>[] entries) {
168 Entry<String, String>[] entries) {
188 Entry<AnEnum, String>[] entries) {
208 Entry<Strin
222 toHashMap( Entry<String, String>[] entries) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp152 bool VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
157 const ReduceEntry &Entry);
160 const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop);
165 const ReduceEntry &Entry, bool LiveCPSR,
171 const ReduceEntry &Entry, bool LiveCPSR,
291 Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry, argument
294 if ((is2Addr && Entry.PredCC2 == 0) ||
295 (!is2Addr && Entry.PredCC1 == 0)) {
314 } else if ((is2Addr && Entry.PredCC2 == 2) ||
315 (!is2Addr && Entry
365 ReduceLoadStore(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry) argument
526 ReduceSpecial(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop) argument
628 ReduceTo2Addr(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop) argument
746 ReduceToNarrow(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop) argument
895 const ReduceEntry &Entry = ReduceTable[OPI->second]; local
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableClassToInstanceMapTest.java33 import java.util.Map.Entry;
55 Entry<Class, Number> entry = (Entry<Class, Number>) object;
160 public SampleElements<Entry<Class, Number>> samples() {
161 Entry<Class, Number> entry1 =
163 Entry<Class, Number> entry2 =
165 Entry<Class, Number> entry3 =
167 Entry<Class, Number> entry4 =
169 Entry<Class, Number> entry5 =
171 return new SampleElements<Entry<Clas
[all...]
H A DSimpleAbstractMultisetTest.java20 import com.google.common.collect.Multiset.Entry;
85 Iterator<Entry<E>> entryIterator() {
86 final Iterator<Map.Entry<E, Integer>> backingEntries = backingMap.entrySet().iterator();
87 return new Iterator<Multiset.Entry<E>>() {
94 public Multiset.Entry<E> next() {
95 final Map.Entry<E, Integer> mapEntry = backingEntries.next();
/external/lldb/include/lldb/Core/
H A DRangeMap.h175 typedef Range<B,S> Entry; typedef in class:lldb_private::RangeArray
176 typedef llvm::SmallVector<Entry, N> Collection;
188 Append (const Entry &entry)
216 // First we determine if we can combine any of the Entry objects so we
240 // First we determine if we can combine any of the Entry objects so we
324 const Entry *
333 const Entry &
339 Entry *
347 const Entry *
356 BaseLessThan (const Entry
455 typedef Range<B,S> Entry; typedef in class:lldb_private::RangeVector
799 typedef RangeData<B,S,T> Entry; typedef in class:lldb_private::RangeDataArray
1061 typedef RangeData<B,S,T> Entry; typedef in class:lldb_private::RangeDataVector
1410 typedef AddressData<B,T> Entry; typedef in class:lldb_private::AddressDataArray
[all...]
/external/chromium_org/net/disk_cache/memory/
H A Dmem_backend_impl.h67 virtual int OpenEntry(const std::string& key, Entry** entry,
69 virtual int CreateEntry(const std::string& key, Entry** entry,
79 virtual int OpenNextEntry(void** iter, Entry** next_entry,
90 bool OpenEntry(const std::string& key, Entry** entry);
91 bool CreateEntry(const std::string& key, Entry** entry);
97 bool OpenNextEntry(void** iter, Entry** next_entry);
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_entry_operation.h18 class Entry;
46 Entry** out_entry);
51 Entry** out_entry);
100 Entry** out_entry() { return out_entry_; }
116 Entry** out_entry,
134 Entry** out_entry_;
/external/chromium_org/sync/internal_api/
H A Dread_node.cc34 entry_ = new syncable::Entry(trans, syncable::GET_BY_ID, trans->root_id());
43 entry_ = new syncable::Entry(trans, syncable::GET_BY_HANDLE, id);
63 entry_ = new syncable::Entry(transaction_->GetWrappedTrans(),
72 const syncable::Entry* ReadNode::GetEntry() const {
86 entry_ = new syncable::Entry(trans, syncable::GET_BY_SERVER_TAG, tag);
102 entry_ = new syncable::Entry(trans, syncable::GET_TYPE_ROOT, type);
/external/chromium_org/third_party/WebKit/Source/web/
H A DContextFeaturesClientImpl.cpp47 class Entry { class in class:blink::FINAL
55 Entry() function in class:blink::FINAL::Entry
85 Entry& entryFor(ContextFeatures::FeatureType type)
96 Entry m_entries[ContextFeatures::FeatureTypeSize];
122 m_entries[i] = Entry();
128 ContextFeaturesCache::Entry& cache = ContextFeaturesCache::from(*document).entryFor(type);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp116 int Entry = 0; local
121 Entry = TypeInfos.size();
128 Asm->OutStreamer.AddComment("TypeInfo " + Twine(Entry--));
136 Entry = 0;
142 --Entry;
144 Asm->OutStreamer.AddComment("FilterInfo " + Twine(Entry));
/external/llvm/lib/IR/
H A DDebugLoc.cpp279 std::pair<DebugRecVH, DebugRecVH> &Entry = Ctx->ScopeInlinedAtRecords[-Idx-1]; local
280 assert((this == &Entry.first || this == &Entry.second) &&
283 MDNode *OldScope = Entry.first.get();
284 MDNode *OldInlinedAt = Entry.second.get();
286 "Entry should be non-canonical if either val dropped to null");
296 Entry.first.Idx = Entry.second.Idx = 0;
333 std::pair<DebugRecVH, DebugRecVH> &Entry = Ctx->ScopeInlinedAtRecords[-Idx-1]; local
334 assert((this == &Entry
355 std::pair<DebugRecVH, DebugRecVH> &Entry=Ctx->ScopeInlinedAtRecords[-Idx-1]; local
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DAbstractSampleEncryptionBox.java27 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) {
163 for (Entry.Pair pair : entry.pairs) {
179 for (Entry entr
194 public class Entry { class in class:AbstractSampleEncryptionBox
[all...]

Completed in 612 milliseconds

1234567891011>>