Searched refs:Entry (Results 1 - 25 of 736) sorted by relevance

1234567891011>>

/external/skia/legacy/src/effects/
H A DSkBitmapCache.h27 struct Entry;
28 mutable Entry* fHead;
29 mutable Entry* fTail;
31 inline Entry* detach(Entry*) const;
32 inline void attachToHead(Entry*) const;
/external/skia/src/effects/gradients/
H A DSkBitmapCache.h27 struct Entry;
28 mutable Entry* fHead;
29 mutable Entry* fTail;
31 inline Entry* detach(Entry*) const;
32 inline void attachToHead(Entry*) const;
/external/webkit/Source/WebCore/fileapi/
H A DEntryCallback.idl36 boolean handleEvent(in Entry entry);
H A DEntryArray.h36 #include "Entry.h"
50 Entry* item(unsigned index) const;
51 void set(unsigned index, PassRefPtr<Entry> entry);
55 void append(PassRefPtr<Entry> entry) { m_entries.append(entry); }
60 Vector<RefPtr<Entry> > m_entries;
H A DEntryCallback.h40 class Entry;
45 virtual bool handleEvent(Entry*) = 0;
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestEnumMapGenerator.java21 import java.util.Map.Entry;
34 public SampleElements<Entry<AnEnum, String>> samples() {
35 return new SampleElements<Entry<AnEnum, String>>(
47 Entry<AnEnum, String>[] array = new Entry[entries.length];
51 Entry<AnEnum, String> e = (Entry<AnEnum, String>) o;
58 Entry<AnEnum, String>[] entries);
62 public final Entry<AnEnum, String>[] createArray(int length) {
63 return new Entry[lengt
57 create( Entry<AnEnum, String>[] entries) argument
[all...]
H A DTestStringMapGenerator.java21 import java.util.Map.Entry;
37 public SampleElements<Map.Entry<String, String>> samples() {
38 return new SampleElements<Map.Entry<String, String>>(
50 Entry<String, String>[] array = new Entry[entries.length];
54 Entry<String, String> e = (Entry<String, String>) o;
61 Entry<String, String>[] entries);
65 public final Entry<String, String>[] createArray(int length) {
66 return new Entry[lengt
60 create( Entry<String, String>[] entries) argument
[all...]
H A DTestMapEntrySetGenerator.java31 implements TestSetGenerator<Map.Entry<K, V>> {
42 public SampleElements<Map.Entry<K, V>> samples() {
47 public Set<Map.Entry<K, V>> create(Object... elements) {
48 Map.Entry<K, V>[] entries = createArray(elements.length);
53 public abstract Set<Map.Entry<K, V>> createFromEntries(
54 Map.Entry<K, V>[] entries);
58 public Map.Entry<K, V>[] createArray(int length) {
59 return new Map.Entry[length];
64 public List<Map.Entry<K, V>> order(List<Map.Entry<
[all...]
/external/chromium/net/ftp/
H A Dftp_auth_cache.h29 struct Entry { struct in class:net::FtpAuthCache
30 Entry(const GURL& origin, const string16& username,
32 ~Entry();
42 // Return Entry corresponding to given |origin| or NULL if not found.
43 Entry* Lookup(const GURL& origin);
57 typedef std::list<Entry> EntryList;
H A Dftp_auth_cache.cc15 FtpAuthCache::Entry::Entry(const GURL& origin, function in class:net::FtpAuthCache::Entry
23 FtpAuthCache::Entry::~Entry() {}
29 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
42 Entry* entry = Lookup(origin);
47 entries_.push_front(Entry(origin, username, password));
/external/javassist/src/main/javassist/bytecode/analysis/
H A DIntQueue.java20 private static class Entry { class in class:IntQueue
21 private IntQueue.Entry next;
23 private Entry(int value) { method in class:IntQueue.Entry
27 private IntQueue.Entry head;
29 private IntQueue.Entry tail;
32 IntQueue.Entry entry = new Entry(value);
/external/webkit/Source/WebCore/html/parser/
H A DHTMLFormattingElementList.h44 // Ideally Entry would be private, but HTMLTreeBuilder has to coordinate
46 // access to Entry::isMarker() and Entry::replaceElement() to do so.
47 class Entry { class in class:WebCore::HTMLFormattingElementList
50 explicit Entry(Element* element) function in class:WebCore::HTMLFormattingElementList::Entry
56 Entry(MarkerEntryType) function in class:WebCore::HTMLFormattingElementList::Entry
60 ~Entry() {}
83 Bookmark(Entry* entry)
89 void moveToAfter(Entry* before)
96 Entry* mar
[all...]
/external/llvm/include/llvm/Support/
H A DPredIteratorCache.h43 BasicBlock **&Entry = BlockToPredsMap[BB]; local
44 if (Entry) return Entry;
51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size());
52 std::copy(PredCache.begin(), PredCache.end(), Entry);
53 return Entry;
/external/clang/test/CodeGen/
H A Dpointer-signext.c26 MEMORY_MAP *Entry; local
30 Entry = CR (Link, MEMORY_MAP, Link);
31 return (int) Entry->Signature;
/external/llvm/include/llvm/ADT/
H A DStringSet.h36 StringMapEntry<char> &Entry = this->GetOrCreateValue(Key); local
37 if (Entry.getValue() == '+')
39 Entry.setValue('+');
H A DUniqueVector.h36 unsigned insert(const T &Entry) { argument
38 unsigned &Val = Map[Entry];
47 Vector.push_back(Entry);
53 unsigned idFor(const T &Entry) const {
55 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DProgressiveDownloadInformationBox.java15 List<Entry> entries = Collections.emptyList();
29 for (Entry entry : entries) {
35 public List<Entry> getEntries() {
39 public void setEntries(List<Entry> entries) {
46 entries = new LinkedList<Entry>();
48 Entry entry = new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content));
54 public static class Entry { class in class:ProgressiveDownloadInformationBox
58 public Entry(long rate, long initialDelay) { method in class:ProgressiveDownloadInformationBox.Entry
81 return "Entry{"
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIntObjectMap.java61 m_buckets = new Entry [initialCapacity];
87 final Entry [] buckets = m_buckets;
91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
112 final Entry [] buckets = m_buckets;
116 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
136 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
156 Entry currentKeyEntry = null;
164 Entry [] buckets = m_buckets;
165 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
191 final Entry bucketListHea
222 private static final class Entry implements Serializable class in class:IntObjectMap
224 Entry (final int key, final Object value, final Entry next) method in class:IntObjectMap.Entry
[all...]
H A DIntSet.java59 m_buckets = new Entry [initialCapacity];
85 final Entry [] buckets = m_buckets;
89 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
109 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
127 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
137 Entry currentKeyEntry = null;
145 Entry [] buckets = m_buckets;
146 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
163 final Entry bucketListHead = buckets [bucketIndex];
164 final Entry newEntr
196 private static final class Entry class in class:IntSet
198 Entry (final int key, final Entry next) method in class:IntSet.Entry
[all...]
H A DIntIntMap.java61 m_buckets = new Entry [initialCapacity];
87 final Entry [] buckets = m_buckets;
91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
111 final Entry [] buckets = m_buckets;
115 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
130 final Entry [] buckets = m_buckets;
134 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
153 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
170 Entry currentKeyEntry = null;
178 Entry [] bucket
264 private static final class Entry class in class:IntIntMap
266 Entry (final int key, final int value, final Entry next) method in class:IntIntMap.Entry
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DIntMap.java35 import com.jme3.util.IntMap.Entry;
46 public final class IntMap<T> implements Iterable<Entry<T>>, Cloneable {
48 private Entry[] table;
76 this.table = new Entry[capacity];
84 Entry[] newTable = new Entry[table.length];
97 Entry[] table = this.table;
99 for (Entry e = table[i]; e != null; e = e.next){
110 for (Entry e = table[index]; e != null; e = e.next){
120 for (Entry
271 public static final class Entry<T> implements Cloneable { class in class:IntMap
277 Entry(int k, T v, Entry n) { method in class:IntMap.Entry
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DDivideTimeScaleTrack.java43 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
47 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
55 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
90 List<CompositionTimeToSample.Entry> adjustCtts() {
91 List<CompositionTimeToSample.Entry> origCtts = this.source.getCompositionTimeEntries();
93 List<CompositionTimeToSample.Entry> entries2 = new ArrayList<CompositionTimeToSample.Entry>(origCtts.size());
94 for (CompositionTimeToSample.Entry entry : origCtts) {
95 entries2.add(new CompositionTimeToSample.Entry(entry.getCount(), entry.getOffset() / timeScaleDivisor));
103 List<TimeToSampleBox.Entry> adjustTt
[all...]
H A DMultiplyTimeScaleTrack.java49 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
53 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
61 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
96 static List<CompositionTimeToSample.Entry> adjustCtts(List<CompositionTimeToSample.Entry> source, int timeScaleFactor) {
98 List<CompositionTimeToSample.Entry> entries2 = new ArrayList<CompositionTimeToSample.Entry>(source.size());
99 for (CompositionTimeToSample.Entry entry : source) {
100 entries2.add(new CompositionTimeToSample.Entry(entry.getCount(), timeScaleFactor * entry.getOffset()));
108 static List<TimeToSampleBox.Entry> adjustTt
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchTable.java49 public Entry get(int n) {
50 return (Entry) get0(n);
59 public void set(int n, Entry entry) {
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
93 * Entry in a catch list.
95 public static class Entry implements Comparable<Entry> { class in class:CatchTable
112 public Entry(int start, int end, CatchHandlerList handlers) { method in class:CatchTable.Entry
141 if (other instanceof Entry) {
[all...]
H A DCatchHandlerList.java48 public Entry get(int n) {
49 return (Entry) get0(n);
75 Entry entry = get(i);
110 Entry last = get(size - 1);
122 set0(n, new Entry(exceptionType, handler));
131 public void set(int n, Entry entry) {
147 Entry thisEntry = get(i);
148 Entry otherEntry = other.get(i);
165 * Entry in the list.
167 public static class Entry implement class in class:CatchHandlerList
180 public Entry(CstType exceptionType, int handler) { method in class:CatchHandlerList.Entry
[all...]

Completed in 1219 milliseconds

1234567891011>>