Searched refs:Entry (Results 151 - 175 of 736) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/text/
H A DAtomicStringKeyedMRUCache.h47 Entry entry = m_cache[foundIndex];
66 typedef pair<AtomicString, T> Entry; typedef in class:WebCore::AtomicStringKeyedMRUCache
67 typedef Vector<Entry, capacity> Cache;
/external/guava/guava/src/com/google/common/collect/
H A DMultisets.java40 import com.google.common.collect.Multiset.Entry;
118 transient Set<Multiset.Entry<E>> entrySet;
121 @Override public Set<Multiset.Entry<E>> entrySet() {
122 Set<Multiset.Entry<E>> es = entrySet;
124 // Safe because the returned set is made unmodifiable and Entry
240 public Entry<E> firstEntry() {
245 public Entry<E> lastEntry() {
250 public Entry<E> pollFirstEntry() {
255 public Entry<E> pollLastEntry() {
290 public static <E> Multiset.Entry<
[all...]
H A DSortedMaps.java23 import java.util.Map.Entry;
224 Predicate<Entry<K, V>> entryPredicate = new Predicate<Entry<K, V>>() {
226 public boolean apply(Entry<K, V> input) {
242 * putAll()}, and {@link Entry#setValue} methods throw an {@link
266 Predicate<Entry<K, V>> entryPredicate =
267 new Predicate<Entry<K, V>>() {
269 public boolean apply(Entry<K, V> input) {
286 * Similarly, the map's entries have a {@link Entry#setValue} method that
308 Predicate<? super Entry<
306 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
319 filterFiltered( FilteredSortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
330 FilteredSortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DAbstractMultiset.java69 for (Entry<E> entry : entrySet()) {
160 abstract Iterator<Entry<E>> entryIterator();
164 private transient Set<Entry<E>> entrySet;
166 @Override public Set<Entry<E>> entrySet() {
167 Set<Entry<E>> result = entrySet;
176 @Override public Iterator<Entry<E>> iterator() {
185 Set<Entry<E>> createEntrySet() {
H A DLinkedHashMultimap.java83 transient Collection<Map.Entry<K, V>> linkedEntries;
130 linkedEntries = new LinkedHashSet<Map.Entry<K, V>>(
139 = new LinkedHashSet<Map.Entry<K, V>>(Maps.capacity(multimap.size()));
183 <E> Map.Entry<K, E> createEntry(@Nullable E value) {
187 <E> Collection<Map.Entry<K, E>> createEntries(Collection<E> values) {
189 Collection<Map.Entry<K, E>> entries
289 @Override Iterator<Map.Entry<K, V>> createEntryIterator() {
290 final Iterator<Map.Entry<K, V>> delegateIterator = linkedEntries.iterator();
292 return new Iterator<Map.Entry<K, V>>() {
293 Map.Entry<
[all...]
H A DRegularImmutableMap.java48 RegularImmutableMap(Entry<?, ?>... immutableEntries) {
58 // each of our 6 callers carefully put only Entry<K, V>s into the array!
60 Entry<K, V> entry = (Entry<K, V>) immutableEntries[entryIndex];
103 private interface LinkedEntry<K, V> extends Entry<K, V> {
178 for (Entry<K, V> entry : entries) {
190 private transient ImmutableSet<Entry<K, V>> entrySet;
192 @Override public ImmutableSet<Entry<K, V>> entrySet() {
193 ImmutableSet<Entry<K, V>> es = entrySet;
198 private static class EntrySet<K, V> extends ArrayImmutableSet<Entry<
[all...]
H A DImmutableMultiset.java22 import com.google.common.collect.Multiset.Entry;
208 Collection<? extends Entry<? extends E>> entries) {
211 for (Entry<? extends E> entry : entries) {
247 final Iterator<Entry<E>> entryIterator = entryIterator();
261 Entry<E> entry = entryIterator.next();
330 for (Entry<?> entry : that.entrySet()) {
348 private transient ImmutableSet<Entry<E>> entrySet;
351 public Set<Entry<E>> entrySet() {
352 ImmutableSet<Entry<E>> es = entrySet;
356 abstract UnmodifiableIterator<Entry<
[all...]
H A DAbstractBiMap.java144 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
194 final Iterator<Entry<K, V>> iterator = delegate.entrySet().iterator();
196 Entry<K, V> entry;
269 private transient Set<Entry<K, V>> entrySet;
271 @Override public Set<Entry<K, V>> entrySet() {
272 Set<Entry<K, V>> result = entrySet;
276 private class EntrySet extends ForwardingSet<Entry<K, V>> {
277 final Set<Entry<K, V>> esDelegate = delegate.entrySet();
279 @Override protected Set<Entry<K, V>> delegate() {
293 Entry<
[all...]
H A DSortedIterables.java21 import com.google.common.collect.Multiset.Entry;
122 public static <E> Collection<Multiset.Entry<E>> sortedCounts(
133 public static <E> Collection<Multiset.Entry<E>> sortedCounts(
140 List<Multiset.Entry<E>> entries = Lists.newArrayList(multiset.entrySet());
142 entries, Ordering.from(comparator).onResultOf(new Function<Multiset.Entry<E>, E>() {
144 public E apply(Entry<E> entry) {
162 List<Multiset.Entry<E>> sortedEntries = Lists.newArrayList();
187 static <E> Collection<Multiset.Entry<E>> singletonEntries(Collection<E> set) {
188 return Collections2.transform(set, new Function<E, Multiset.Entry<E>>() {
190 public Entry<
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingMapTest.java38 import java.util.Map.Entry;
95 @Override public Set<Entry<K, V>> entrySet() {
98 public Iterator<Entry<K, V>> iterator() {
124 Entry<String, String>[] entries) {
126 for (Entry<String, String> entry : entries) {
139 Entry<String, String>[] entries) {
141 for (Entry<String, String> entry : entries) {
251 final Set<Map.Entry<String, Boolean>> entrySet = createMock(Set.class);
258 .andReturn(Iterators.<Entry<String, Boolean>>emptyIterator())
270 @Override public Set<Entry<Strin
[all...]
H A DAbstractSetMultimapTest.java82 Set<Map.Entry<String, Collection<Integer>>> set
85 Iterator<Map.Entry<String, Collection<Integer>>> i = set.iterator();
86 Map.Entry<String, Collection<Integer>> expected =
89 Map.Entry<String, Collection<Integer>> entry = i.next();
96 Map.Entry<?, ?>[] array = new Map.Entry<?, ?>[3];
159 Collection<Map.Entry<String, Integer>> entries = multimap.entries();
161 Set<Map.Entry<String, Integer>> same = Sets.newHashSet(
172 Set<Map.Entry<String, Integer>> different3 = Sets.newHashSet(
179 Set<Map.Entry<Strin
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dbuild_and_process_conflict_sets_command.cc74 syncable::Entry entry(trans, syncable::GET_BY_ID, *i);
95 void StoreLocalDataForUpdateRollback(syncable::Entry* entry,
172 syncable::Entry entry(trans, syncable::GET_BY_ID, *it);
185 syncable::Entry entry(trans, syncable::GET_BY_ID, rollback_ids[i]);
229 syncable::Entry entry(trans, syncable::GET_BY_ID, *i);
255 syncable::BaseTransaction* trans, syncable::Entry* entry,
264 syncable::Entry parent(trans, syncable::GET_BY_ID, parent_id);
273 syncable::Entry parent(trans, syncable::GET_BY_ID, parent_id);
299 static bool CausingConflict(const syncable::Entry& e,
300 const syncable::Entry
[all...]
/external/chromium/chrome/browser/
H A Dcustom_home_pages_table_model.cc26 struct CustomHomePagesTableModel::Entry { struct in class:CustomHomePagesTableModel
27 Entry() : title_handle(0), favicon_handle(0) {} function in struct:CustomHomePagesTableModel::Entry
71 entries_.insert(entries_.begin() + static_cast<size_t>(index), Entry());
80 Entry* entry = &(entries_[index]);
155 void CustomHomePagesTableModel::LoadTitleAndFavicon(Entry* entry) {
177 Entry* entry =
178 GetEntryByLoadHandle(&Entry::title_handle, handle, &entry_index);
195 Entry* entry =
196 GetEntryByLoadHandle(&Entry::favicon_handle, handle, &entry_index);
219 CustomHomePagesTableModel::Entry*
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DBiMapGenerators.java29 import java.util.Map.Entry;
70 @Override public Set<Entry<String, String>> createFromEntries( argument
71 Entry<String, String>[] entries) {
73 for (Entry<String, String> entry : entries) {
109 @Override public Set<Entry<String, String>> createFromEntries( argument
110 Entry<String, String>[] entries) {
112 for (Entry<String, String> entry : entries) {
H A DMultisetNavigationTester.java30 import com.google.common.collect.Multiset.Entry;
51 private Entry<E> a;
52 private Entry<E> b;
53 private Entry<E> c;
243 List<Entry<E>> ascending = new ArrayList<Entry<E>>();
245 List<Entry<E>> descending = new ArrayList<Entry<E>>();
251 void expectAddFailure(SortedMultiset<E> multiset, Entry<E> entry) {
268 void expectRemoveZero(SortedMultiset<E> multiset, Entry<
[all...]
/external/llvm/include/llvm/Support/
H A DRegistry.h47 static const char *nameof(const entry &Entry) { return Entry.getName(); } argument
48 static const char *descof(const entry &Entry) { return Entry.getDesc(); } argument
193 entry Entry; member in class:llvm::Registry::Add
200 : Entry(Name, Desc, CtorFn), Node(Entry) {}
/external/llvm/lib/Support/
H A DIntervalMap.cpp21 path.front() = Entry(Root, Size, Offsets.first);
22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second));
61 path.resize(Level + 1, Entry(0, 0, 0));
69 path[l] = Entry(NR, NR.size() - 1);
72 path[l] = Entry(NR, NR.size() - 1);
113 path[l] = Entry(NR, 0);
116 path[l] = Entry(NR, 0);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DQuicktimeTextTrackImpl.java93 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
94 List<TimeToSampleBox.Entry> stts = new LinkedList<TimeToSampleBox.Entry>();
99 stts.add(new TimeToSampleBox.Entry(1, silentTime));
103 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
109 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
117 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
H A DTextTrackImpl.java96 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
97 List<TimeToSampleBox.Entry> stts = new LinkedList<TimeToSampleBox.Entry>();
102 stts.add(new TimeToSampleBox.Entry(1, silentTime));
106 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
112 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
120 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthClient.java138 Collection<? extends Map.Entry> parameters) throws IOException,
148 List<Map.Entry> p = (parameters == null) ? new ArrayList<Map.Entry>(
150 : new ArrayList<Map.Entry>(parameters);
184 Collection<? extends Map.Entry> parameters) throws IOException, OAuthException, URISyntaxException {
189 List<Map.Entry> p = new ArrayList<Map.Entry>(parameters);
215 String url, Collection<? extends Map.Entry> parameters)
250 Collection<? extends Map.Entry> parameters) throws IOException,
272 final List<Map.Entry<Strin
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DPopulatedCachesTest.java42 import java.util.Map.Entry;
60 List<Entry<Object, Object>> warmed = warmUp(cache);
70 List<Entry<Object, Object>> warmed = warmUp(cache);
72 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN);
86 List<Entry<Object, Object>> warmed = warmUp(cache);
88 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN);
109 List<Entry<Object, Object>> warmed = warmUp(cache);
111 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN);
130 List<Entry<Object, Object>> warmed = warmUp(cache);
144 List<Entry<Objec
[all...]
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java29 import java.util.Map.Entry;
385 * {@code Iterator<? extends Entry<?, ?>>}, or better yet, by implementing only
392 I extends Object & Iterable<? extends Entry<?, ?>> & Iterator<? extends Entry<?, ?>>>
394 Iterator<? extends Entry<?, ?>> iterator = entries;
405 public <A extends Appendable> A appendTo(A appendable, Iterable<? extends Entry<?, ?>> entries) argument
417 public <A extends Appendable> A appendTo(A appendable, Iterator<? extends Entry<?, ?>> parts) argument
421 Entry<?, ?> entry = parts.next();
427 Entry<?, ?> e = parts.next();
441 * {@code Iterator<? extends Entry<
461 appendTo(StringBuilder builder, Iterable<? extends Entry<?, ?>> entries) argument
473 appendTo(StringBuilder builder, Iterator<? extends Entry<?, ?>> entries) argument
506 join(Iterable<? extends Entry<?, ?>> entries) argument
517 join(Iterator<? extends Entry<?, ?>> entries) argument
[all...]
/external/chromium/net/disk_cache/
H A Din_flight_backend_io.h21 class Entry;
50 void OpenEntry(const std::string& key, Entry** entry);
51 void CreateEntry(const std::string& key, Entry** entry);
57 void OpenNextEntry(void** iter, Entry** next_entry);
58 void OpenPrevEntry(void** iter, Entry** prev_entry);
120 Entry** entry_ptr_;
148 void OpenEntry(const std::string& key, Entry** entry,
150 void CreateEntry(const std::string& key, Entry** entry,
159 void OpenNextEntry(void** iter, Entry** next_entry,
161 void OpenPrevEntry(void** iter, Entry** prev_entr
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapPutTester.java29 import java.util.Map.Entry;
43 private Entry<K, V> nullKeyEntry;
44 private Entry<K, V> nullValueEntry;
45 private Entry<K, V> nullKeyValueEntry;
46 private Entry<K, V> presentKeyNullValueEntry;
104 Entry<K, V> newEntry = entry(null, samples.e3.getValue());
109 Entry<K, V>[] expected = createArrayWithNullKey();
177 Entry<K, V> newEntry = entry(getKeyForNullValue(), samples.e3.getValue());
182 Entry<K, V>[] expected = createArrayWithNullValue();
193 private V put(Map.Entry<
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DTrackRunBox.java51 private List<Entry> entries = new ArrayList<Entry>();
54 public List<Entry> getEntries() {
58 public static class Entry { class in class:TrackRunBox
64 public Entry() { method in class:TrackRunBox.Entry
67 public Entry(long sampleDuration, long sampleSize, SampleFlags sampleFlags, int sampleCompositionTimeOffset) { method in class:TrackRunBox.Entry
108 return "Entry{" +
199 for (Entry entry : entries) {
230 Entry entry = new Entry();
[all...]

Completed in 1189 milliseconds

1234567891011>>