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

1234567891011>>

/external/guava/guava-gwt/src/com/google/common/collect/
H A DHashBasedTable_CustomFieldSerializer.java24 import java.util.Map.Entry;
42 for (Entry<?, ?> row : hashMap.entrySet()) {
/external/regex-re2/re2/
H A Dprefilter_tree.h59 // Each unique node has a corresponding Entry that helps in
61 struct Entry { struct in class:re2::PrefilterTree
107 vector<Entry> entries_;
/external/webkit/Source/WebCore/fileapi/
H A DFileEntry.idl37 ] FileEntry : Entry {
H A DFileEntry.cpp45 : Entry(fileSystem, fullPath)
/external/chromium/net/base/
H A Dcapturing_net_log.h25 struct Entry { struct in class:net::CapturingNetLog
26 Entry(EventType type,
31 ~Entry();
41 typedef std::vector<Entry> EntryList;
/external/chromium/net/http/
H A Ddisk_cache_based_ssl_host_info.h63 disk_cache::Entry** entry_pointer() { return &entry_; }
65 disk_cache::Entry* entry() const { return entry_; }
75 disk_cache::Entry* entry_;
113 disk_cache::Entry* entry_;
/external/llvm/lib/IR/
H A DValueSymbolTable.cpp80 ValueName &Entry = vmap.GetOrCreateValue(Name); local
81 if (Entry.getValue() == 0) {
82 Entry.setValue(V);
83 //DEBUG(dbgs() << " Inserted value: " << Entry.getKeyData() << ": "
85 return &Entry;
/external/llvm/lib/Support/
H A DPrettyStackTrace.cpp35 static unsigned PrintStack(const PrettyStackTraceEntry *Entry, raw_ostream &OS){ argument
37 if (Entry->getNextEntry())
38 NextID = PrintStack(Entry->getNextEntry(), OS);
40 Entry->print(OS);
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DDefaultMapEntry.java23 * A restricted implementation of {@link java.util.Map.Entry} that prevents
61 public DefaultMapEntry(final Map.Entry<K, V> entry) {
/external/webkit/Source/WebCore/bindings/js/
H A DJSEntryCustom.cpp37 #include "Entry.h"
47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Entry* entry)
/external/webkit/Source/WebCore/html/parser/
H A DHTMLFormattingElementList.cpp45 const Entry& entry = m_entries[m_entries.size() - i];
59 HTMLFormattingElementList::Entry* HTMLFormattingElementList::find(Element* element)
105 m_entries.append(Entry::MarkerEntry);
124 const Entry& entry = m_entries[m_entries.size() - i];
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoEncoder.java94 private final LocalList.Entry[] lastEntryForReg;
120 lastEntryForReg = new LocalList.Entry[regSize];
194 ArrayList<PositionList.Entry> sortedPositions = buildSortedPositions();
195 ArrayList<LocalList.Entry> methodArgs = extractMethodArguments();
286 LocalList.Entry entry = locals.get(curLocalIdx++);
288 LocalList.Entry prevEntry = lastEntryForReg[reg];
349 ArrayList<PositionList.Entry> sortedPositions)
369 private void emitHeader(ArrayList<PositionList.Entry> sortedPositions,
370 ArrayList<LocalList.Entry> methodArgs) throws IOException {
376 PositionList.Entry entr
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMap.java77 ImmutableList.<Entry<Comparable, Object>>of(), NATURAL_ORDER);
96 ImmutableList.<Entry<K, V>>of(), comparator);
251 Entry<K, V>[] entries = map.entrySet().toArray(new Entry[0]);
254 Entry<K, V> entry = entries[i];
258 List<Entry<K, V>> list = Arrays.asList(entries);
269 List<Entry<K, V>> entries, final Comparator<? super K> comparator) {
270 Comparator<Entry<K, V>> entryComparator = new Comparator<Entry<K, V>>() {
272 @Override public int compare(Entry<
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimaps.java45 import java.util.Map.Entry;
317 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
401 transient Collection<Entry<K, V>> entries;
429 Set<Entry<K, Collection<V>>> entrySet;
431 @Override public Set<Map.Entry<K, Collection<V>>> entrySet() {
432 Set<Entry<K, Collection<V>>> result = entrySet;
463 @Override public Collection<Entry<K, V>> entries() {
464 Collection<Entry<K, V>> result = entries;
604 @Override public Set<Map.Entry<K, V>> entries() {
814 * The {@link Entry#setValu
2069 filterFiltered(FilteredMultimap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2080 FilteredMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
[all...]
H A DLinkedHashMultimap.java79 transient Collection<Map.Entry<K, V>> linkedEntries;
126 linkedEntries = new LinkedHashSet<Map.Entry<K, V>>(
135 = new LinkedHashSet<Map.Entry<K, V>>(Maps.capacity(multimap.size()));
179 <E> Map.Entry<K, E> createEntry(@Nullable E value) {
183 <E> Collection<Map.Entry<K, E>> createEntries(Collection<E> values) {
185 Collection<Map.Entry<K, E>> entries
285 @Override Iterator<Map.Entry<K, V>> createEntryIterator() {
286 final Iterator<Map.Entry<K, V>> delegateIterator = linkedEntries.iterator();
288 return new Iterator<Map.Entry<K, V>>() {
289 Map.Entry<
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java161 Map.Entry entry = (Map.Entry) it.next();
166 Entry dereferencedEntry = new Entry(key, value);
252 Map.Entry entry = (Map.Entry) it.next();
343 /** Entry implementation */
344 private final static class Entry implements Map.Entry { class in class:WeakHashtable
349 private Entry(Objec method in class:WeakHashtable.Entry
[all...]
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_provider.h37 struct Entry { struct in struct:policy::ConfigurationPolicyProvider::PolicyDefinitionList
43 const Entry* begin;
44 const Entry* end;
/external/clang/lib/Analysis/
H A DCFGStmtMap.cpp57 CFGBlock *&Entry = SM[CS->getStmt()]; local
58 // If 'Entry' is already initialized (e.g., a terminator was already),
60 if (Entry)
63 Entry = B;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DLRUCache.java61 protected boolean removeEldestEntry(Map.Entry<K, V> eldest) {
119 public synchronized Collection<Map.Entry<K, V>> getAll() {
120 return new ArrayList<Map.Entry<K, V>>(this.map.entrySet());
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp155 TargetLowering::ArgListEntry Entry; local
159 Entry.Node = Dst;
160 Entry.Ty = IntPtrTy;
161 Args.push_back(Entry);
164 Entry.Node = Size;
165 Entry.Ty = IntPtrTy;
166 Entry.isSExt = false;
167 Args.push_back(Entry);
176 Entry.Node = Src;
177 Entry
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp308 uint32_t Entry = 0; local
310 Entry |= NumExtraEntryWords << 24;
311 Entry |= (EHT_COMPACT | PersonalityIndex) << 16;
315 Entry |= UNWIND_OPCODE_FINISH << 8;
316 Entry |= UNWIND_OPCODE_FINISH;
318 EmitIntValue(Entry, 4, 0);
371 uint32_t Entry = 0; local
376 Entry |= NumExtraEntryWords << 24;
377 Entry |= UNWIND_OPCODE_FINISH << 16;
378 Entry |
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DTrackFragmentRandomAccessBox.java61 private List<Entry> entries = Collections.emptyList();
94 entries = new ArrayList<Entry>();
97 Entry entry = new Entry();
127 for (Entry entry : entries) {
183 public List<Entry> getEntries() {
187 public void setEntries(List<Entry> entries) {
191 public static class Entry { class in class:TrackFragmentRandomAccessBox
198 public Entry() { method in class:TrackFragmentRandomAccessBox.Entry
201 public Entry(lon method in class:TrackFragmentRandomAccessBox.Entry
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DTwoSecondIntersectionFinder.java33 for (TimeToSampleBox.Entry entry : track.getDecodingTimeEntries()) {
43 List<TimeToSampleBox.Entry> entries = track.getDecodingTimeEntries();
64 for (TimeToSampleBox.Entry entry : entries) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DReplaceSampleTrack.java54 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
59 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
68 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/
H A DSegmentIndexBox.java44 List<Entry> entries = new ArrayList<Entry>();
85 for (Entry entry : entries) {
114 Entry e = new Entry();
127 public List<Entry> getEntries() {
131 public void setEntries(List<Entry> entries) {
175 public static class Entry { class in class:SegmentIndexBox
183 public Entry() { method in class:SegmentIndexBox.Entry
186 public Entry(byt method in class:SegmentIndexBox.Entry
[all...]

Completed in 551 milliseconds

1234567891011>>