Searched refs:Entry (Results 51 - 75 of 1050) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/util/
H A DObjectIntMap.java63 m_buckets = new Entry [initialCapacity];
91 final Entry [] buckets = m_buckets;
96 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
119 final Entry [] buckets = m_buckets;
124 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
143 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
162 Entry currentKeyEntry = null;
171 Entry [] buckets = m_buckets;
172 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
195 final Entry bucketListHea
260 private static final class Entry class in class:ObjectIntMap
262 Entry (final Object key, final int value, final Entry next) method in class:ObjectIntMap.Entry
[all...]
/external/chromium_org/cc/resources/
H A Dmemory_history.h22 struct Entry { struct in class:cc::MemoryHistory
23 Entry() function in struct:cc::MemoryHistory::Entry
38 void SaveEntry(const Entry& entry);
41 typedef RingBuffer<Entry, 80> RingBufferType;
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DHTMLInputElementFileSystem.h38 class Entry;
H A DFileEntry.cpp43 : Entry(fileSystem, fullPath)
59 Entry::trace(visitor);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractMapTester.java24 import java.util.Map.Entry;
40 AbstractContainerTester<Map<K, V>, Map.Entry<K, V>> {
51 @Override protected Collection<Map.Entry<K, V>> actualContents() {
78 protected Map.Entry<K, V>[] createArrayWithNullKey() {
79 Map.Entry<K, V>[] array = createSamplesArray();
81 final Map.Entry<K, V> oldEntry = array[nullKeyLocation];
94 private Entry<K, V> getEntryNullReplaces() {
95 Iterator<Entry<K, V>> entries = getSampleElements().iterator();
106 protected Map.Entry<K, V>[] createArrayWithNullValue() {
107 Map.Entry<
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLoc.h23 struct Entry { struct in class:llvm::DWARFDebugLoc
38 SmallVector<Entry, 2> Entries;
60 struct Entry { struct in class:llvm::DWARFDebugLocDWO
68 SmallVector<Entry, 2> Entries;
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractMapEntry.java22 * Abstract Pair class to assist with creating correct Map Entry implementations.
31 public abstract class AbstractMapEntry <K,V> extends AbstractKeyValue<K, V> implements Map.Entry<K, V> {
43 // Map.Entry interface
46 * Sets the value stored in this Map Entry.
48 * This Map Entry is not connected to a Map, so only the local data is changed.
60 * Compares this Map Entry with another Map Entry.
62 * Implemented per API documentation of {@link java.util.Map.Entry#equals(Object)}
71 if (obj instanceof Map.Entry == false) {
74 Map.Entry othe
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DTimeToSampleBox.java47 List<Entry> entries = Collections.emptyList();
62 entries = new ArrayList<Entry>(entryCount);
65 entries.add(new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content)));
74 for (Entry entry : entries) {
80 public List<Entry> getEntries() {
84 public void setEntries(List<Entry> entries) {
92 public static class Entry { class in class:TimeToSampleBox
96 public Entry(long count, long delta) { method in class:TimeToSampleBox.Entry
119 return "Entry{" +
131 public static long[] blowupTimeToSamples(List<TimeToSampleBox.Entry> entrie
[all...]
H A DSampleDependencyTypeBox.java41 private List<Entry> entries = new ArrayList<Entry>();
43 public static class Entry { class in class:SampleDependencyTypeBox
45 public Entry(int value) { method in class:SampleDependencyTypeBox.Entry
86 return "Entry{" +
107 for (Entry entry : entries) {
116 entries.add(new Entry(IsoTypeReader.readUInt8(content)));
120 public List<Entry> getEntries() {
124 public void setEntries(List<Entry> entries) {
/external/chromium_org/net/dns/
H A Dhost_cache.h26 struct NET_EXPORT Entry { struct in class:net::HostCache
27 Entry(int error, const AddressList& addrlist, base::TimeDelta ttl);
29 Entry(int error, const AddressList& addrlist);
30 ~Entry();
66 const Entry& entry,
72 typedef ExpiringCache<Key, Entry, base::TimeTicks,
83 const Entry* Lookup(const Key& key, base::TimeTicks now);
89 const Entry& entry,
/external/chromium_org/v8/src/compiler/
H A Dvalue-numbering-reducer.cc36 class ValueNumberingReducer::Entry FINAL : public ZoneObject {
38 Entry(Node* node, Entry* next) : node_(node), next_(next) {} function in class:v8::internal::compiler::FINAL
41 Entry* next() const { return next_; }
45 Entry* next_;
60 Entry** head = &buckets_[HashCode(node) % arraysize(buckets_)];
61 for (Entry* entry = *head; entry; entry = entry->next()) {
68 *head = new (zone()) Entry(node, *head);
H A Dvalue-numbering-reducer.h27 class Entry;
28 Entry* buckets_[117u];
H A Dnode-cache.cc49 Entry* old_entries = entries_;
53 entries_ = zone->NewArray<Entry>(num_entries);
54 memset(entries_, 0, sizeof(Entry) * num_entries);
58 Entry* old = &old_entries[i];
64 Entry* entry = &entries_[j];
83 entries_ = zone->NewArray<Entry>(num_entries);
85 memset(entries_, 0, sizeof(Entry) * num_entries);
86 Entry* entry = &entries_[hash & (INITIAL_SIZE - 1)];
96 Entry* entry = &entries_[i];
108 Entry* entr
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DPositionList.java76 PositionList.Entry[] arr = new PositionList.Entry[sz];
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
131 public Entry get(int n) {
132 return (Entry) get0(n);
141 public void set(int n, Entry entry) {
146 * Entry in a position list.
148 public static class Entry { class in class:PositionList
161 public Entry (int address, SourcePosition position) { method in class:PositionList.Entry
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParameters.java4 import java.util.Map.Entry;
27 public abstract Map<String,Entry<String,String>> getParameters();
/external/chromium_org/net/http/
H A Dpartial_data.h14 class Entry;
56 int ShouldValidateCache(disk_cache::Entry* entry,
61 void PrepareCacheValidation(disk_cache::Entry* entry,
75 disk_cache::Entry* entry, bool truncated);
99 int CacheRead(disk_cache::Entry* entry, IOBuffer* data, int data_len,
104 int CacheWrite(disk_cache::Entry* entry, IOBuffer* data, int data_len,
/external/guava/guava/src/com/google/common/collect/
H A DForwardingMapEntry.java24 import java.util.Map.Entry;
56 extends ForwardingObject implements Map.Entry<K, V> {
62 @Override protected abstract Map.Entry<K, V> delegate();
96 if (object instanceof Entry) {
97 Entry<?, ?> that = (Entry<?, ?>) object;
/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp45 TargetLowering::ArgListEntry Entry; local
46 Entry.Node = Dst;
47 Entry.Ty = IntPtrTy;
48 Args.push_back(Entry);
49 Entry.Node = Size;
50 Args.push_back(Entry);
/external/chromium_org/sync/syncable/
H A Dentry.cc21 Entry::Entry(BaseTransaction* trans, GetById, const Id& id) function in class:syncer::syncable::Entry
26 Entry::Entry(BaseTransaction* trans, GetByClientTag, const string& tag) function in class:syncer::syncable::Entry
31 Entry::Entry(BaseTransaction* trans, GetTypeRoot, ModelType type) function in class:syncer::syncable::Entry
37 Entry::Entry(BaseTransaction* trans, GetByHandle, int64 metahandle) function in class:syncer::syncable::Entry
42 Entry::Entry(BaseTransactio function in class:syncer::syncable::Entry
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DEC3SpecificBox.java15 List<Entry> entries = new LinkedList<Entry>();
26 for (Entry entry : entries) {
46 Entry e = new Entry();
68 for (Entry e : entries) {
85 public List<Entry> getEntries() {
89 public void setEntries(List<Entry> entries) {
93 public void addEntry(Entry entry) {
113 public static class Entry { class in class:EC3SpecificBox
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DSampleToGroupBox.java49 List<Entry> entries = new LinkedList<Entry>();
69 for (Entry entry : entries) {
85 entries.add(new Entry(l2i(IsoTypeReader.readUInt32(content)), l2i(IsoTypeReader.readUInt32(content))));
89 public static class Entry { class in class:SampleToGroupBox
93 public Entry(long sampleCount, int groupDescriptionIndex) { method in class:SampleToGroupBox.Entry
116 return "Entry{" +
131 Entry entry = (Entry) o;
167 public List<Entry> getEntrie
[all...]
/external/chromium_org/v8/src/
H A Dhashmap.h37 struct Entry { struct in class:v8::internal::TemplateHashMapImpl
49 Entry* Lookup(void* key, uint32_t hash, bool insert,
70 // for (Entry* p = map.Start(); p != NULL; p = map.Next(p)) {
76 Entry* Start() const;
77 Entry* Next(Entry* p) const;
86 Entry* map_;
90 Entry* map_end() const { return map_ + capacity_; }
91 Entry* Probe(void* key, uint32_t hash);
113 typename TemplateHashMapImpl<AllocationPolicy>::Entry*
[all...]
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkGradientBitmapCache.cpp12 struct SkGradientBitmapCache::Entry { struct in class:SkGradientBitmapCache
13 Entry* fPrev;
14 Entry* fNext;
20 Entry(const void* buffer, size_t size, const SkBitmap& bm) function in struct:SkGradientBitmapCache::Entry
29 ~Entry() { sk_free(fBuffer); }
46 Entry* entry = fHead;
48 Entry* next = entry->fNext;
54 SkGradientBitmapCache::Entry* SkGradientBitmapCache::detach(Entry* entry) const {
72 void SkGradientBitmapCache::attachToHead(Entry* entr
[all...]
/external/skia/src/effects/gradients/
H A DSkBitmapCache.cpp12 struct SkBitmapCache::Entry { struct in class:SkBitmapCache
13 Entry* fPrev;
14 Entry* fNext;
20 Entry(const void* buffer, size_t size, const SkBitmap& bm) function in struct:SkBitmapCache::Entry
29 ~Entry() { sk_free(fBuffer); }
46 Entry* entry = fHead;
48 Entry* next = entry->fNext;
54 SkBitmapCache::Entry* SkBitmapCache::detach(Entry* entry) const {
72 void SkBitmapCache::attachToHead(Entry* entr
[all...]
/external/chromium_org/chrome/browser/sessions/
H A Dtab_restore_service.h56 struct Entry { struct in class:TabRestoreService
57 Entry();
58 explicit Entry(Type type);
59 virtual ~Entry();
78 struct Tab : public Entry {
111 struct Window : public Entry {
125 typedef std::list<Entry*> Entries;

Completed in 6764 milliseconds

1234567891011>>