HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 376 - 400 of 2434) sorted by null

<<11121314151617181920>>

  /external/llvm/tools/dsymutil/
DebugMap.cpp 41 typedef std::pair<StringRef, SymbolMapping> Entry;
42 std::vector<Entry> Entries;
48 [](const Entry &LHS, const Entry &RHS) { return LHS.first < RHS.first; });
204 for (auto &Entry : Obj.Symbols)
205 Entries.push_back(std::make_pair(Entry.getKey(), Entry.getValue()));
238 for (auto &Entry : Entries) {
239 auto &Mapping = Entry.second;
241 auto AddressIt = SymbolAddresses.find(Entry.first)
    [all...]
  /external/webrtc/webrtc/base/
diskcache.cc 100 Entry* entry = GetOrCreateEntry(id, true); local
101 if (LS_LOCKED == entry->lock_state)
103 if ((LS_UNLOCKED == entry->lock_state) && (entry->accessors > 0))
109 entry->lock_state = LS_LOCKED;
114 Entry* entry = GetOrCreateEntry(id, false); local
115 if (LS_LOCKED != entry->lock_state)
121 ASSERT(previous_size <= entry->size)
142 Entry* entry = GetOrCreateEntry(id, false); local
158 const Entry* entry = GetEntry(id); local
174 const Entry* entry = GetEntry(id); local
179 const Entry* entry = GetEntry(id); local
189 Entry* entry = GetOrCreateEntry(id, false); local
317 const Entry* entry = GetEntry(id); local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Multimaps.java 40 import java.util.Map.Entry;
321 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
322 dest.put(entry.getValue(), entry.getKey());
405 transient Collection<Entry<K, V>> entries;
437 @Override public Collection<Entry<K, V>> entries() {
438 Collection<Entry<K, V>> result = entries;
538 @Override public Set<Map.Entry<K, V>> entries() {
748 * {@link Entry#setValue} operation throws an {@lin
    [all...]
ImmutableMapValues.java 21 import java.util.Map.Entry;
61 final ImmutableList<Entry<K, V>> entryList = map.entrySet().asList();
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java 47 * List fragment containing a list of Atom entry objects (articles) stored in the local database.
93 FeedContract.Entry._ID,
94 FeedContract.Entry.COLUMN_NAME_TITLE,
95 FeedContract.Entry.COLUMN_NAME_LINK,
96 FeedContract.Entry.COLUMN_NAME_PUBLISHED
114 FeedContract.Entry.COLUMN_NAME_TITLE,
115 FeedContract.Entry.COLUMN_NAME_PUBLISHED
216 FeedContract.Entry.CONTENT_URI, // URI
220 FeedContract.Entry.COLUMN_NAME_PUBLISHED + " desc"); // Sort
283 Log.e(TAG, "Attempt to launch entry with null link")
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java 47 * List fragment containing a list of Atom entry objects (articles) stored in the local database.
93 FeedContract.Entry._ID,
94 FeedContract.Entry.COLUMN_NAME_TITLE,
95 FeedContract.Entry.COLUMN_NAME_LINK,
96 FeedContract.Entry.COLUMN_NAME_PUBLISHED
114 FeedContract.Entry.COLUMN_NAME_TITLE,
115 FeedContract.Entry.COLUMN_NAME_PUBLISHED
216 FeedContract.Entry.CONTENT_URI, // URI
220 FeedContract.Entry.COLUMN_NAME_PUBLISHED + " desc"); // Sort
283 Log.e(TAG, "Attempt to launch entry with null link")
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
EntryListFragment.java 47 * List fragment containing a list of Atom entry objects (articles) stored in the local database.
93 FeedContract.Entry._ID,
94 FeedContract.Entry.COLUMN_NAME_TITLE,
95 FeedContract.Entry.COLUMN_NAME_LINK,
96 FeedContract.Entry.COLUMN_NAME_PUBLISHED
114 FeedContract.Entry.COLUMN_NAME_TITLE,
115 FeedContract.Entry.COLUMN_NAME_PUBLISHED
216 FeedContract.Entry.CONTENT_URI, // URI
220 FeedContract.Entry.COLUMN_NAME_PUBLISHED + " desc"); // Sort
283 Log.e(TAG, "Attempt to launch entry with null link")
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 139 llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
140 if (Entry && !Entry->isDeclaration())
201 if (Entry) {
202 assert(Entry->getType() == AliasType &&
204 Alias->takeName(Entry);
205 Entry->replaceAllUsesWith(Alias);
206 Entry->eraseFromParent();
  /external/dagger2/core/src/main/java/dagger/internal/
MapFactory.java 19 import java.util.Map.Entry;
55 for (Entry<K, Provider<V>> entry: contributingMap.entrySet()) {
56 result.put(entry.getKey(), entry.getValue().get());
  /external/dng_sdk/source/
dng_opcode_list.h 94 dng_opcode & Entry (uint32 index)
102 const dng_opcode & Entry (uint32 index) const
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
AttributeSet.java 57 final Map.Entry entry = (Map.Entry) a.next (); local
59 final Attribute attr = (Attribute) entry.getKey ();
60 final String value = entry.getValue ().toString ();
  /external/guava/guava/src/com/google/common/collect/
AbstractSetMultimap.java 73 @Override public Set<Map.Entry<K, V>> entries() {
74 return (Set<Map.Entry<K, V>>) super.entries();
ImmutableMapKeySet.java 23 import java.util.Map.Entry;
58 final ImmutableList<Entry<K, V>> entryList = map.entrySet().asList();
ImmutableMapValues.java 23 import java.util.Map.Entry;
63 final ImmutableList<Entry<K, V>> entryList = map.entrySet().asList();
Multiset.java 52 * collapsed", and {@link #entrySet} is similar but contains {@link Entry
53 * Multiset.Entry} instances, each providing both a distinct element and the
205 * Multiset.Entry} instances, each providing an element of the multiset and
206 * the count of that element. This set contains exactly one entry for each
211 * <p>The entry set is backed by the same data as the multiset, so any change
213 * may or may not be reflected in any {@code Entry} instances already
214 * retrieved from the entry set (this is implementation-dependent).
216 * the entry set at all, and the {@code Entry} instances themselves don't
218 * for more details on how its entry set handles modifications
    [all...]
RegularImmutableMultiset.java 70 Entry<E> getEntry(int index) {
71 Map.Entry<E, Integer> mapEntry = map.entrySet().asList().get(index);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapAsMapTester.java 38 import java.util.Map.Entry;
51 for (Entry<K, V> entry : getSampleElements()) {
52 if (entry.getKey().equals(key)) {
53 expectedValues.add(entry.getValue());
101 Set<Entry<K, Collection<V>>> asMapEntrySet = multimap().asMap().entrySet();
117 Set<Entry<K, Collection<V>>> asMapEntrySet = multimap().asMap().entrySet();
128 Set<Entry<K, Collection<V>>> asMapEntrySet = multimap().asMap().entrySet();
129 Entry<K, Collection<V>> asMapEntry0 = Iterables.getOnlyElement(asMapEntrySet);
142 Set<Entry<K, Collection<V>>> asMapEntrySet = multimap().asMap().entrySet()
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractBiMapTest.java 21 import java.util.Map.Entry;
56 Iterator<Entry<Integer, String>> iterator = bimap.entrySet().iterator();
  /external/llvm/lib/CodeGen/
SpillPlacement.h 75 /// BorderConstraint - A basic block has separate constraints for entry and
79 PrefReg, ///< Block entry/exit prefers a register.
80 PrefSpill, ///< Block entry/exit prefers a stack slot.
81 PrefBoth, ///< Block entry prefers both register and stack.
85 /// BlockConstraint - Entry and exit constraints for a basic block.
88 BorderConstraint Entry : 8; ///< Constraint on block entry.
114 /// Entry = Exit = PrefSpill, and ChangesValue = false.
159 void setThreshold(const BlockFrequency &Entry);
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugMacro.cpp 23 for (const Entry &E : Macros) {
61 // A macro list entry consists of:
62 Entry E;
74 // Push the corrupted entry to the list and halt parsing.
DWARFUnitIndex.cpp 54 Rows = llvm::make_unique<Entry[]>(Header.NumBuckets);
56 llvm::make_unique<Entry::SectionContribution *[]>(Header.NumUnits);
70 llvm::make_unique<Entry::SectionContribution[]>(Header.NumColumns);
147 const DWARFUnitIndex::Entry::SectionContribution *
148 DWARFUnitIndex::Entry::getOffset(DWARFSectionKind Sec) const {
155 const DWARFUnitIndex::Entry::SectionContribution *
156 DWARFUnitIndex::Entry::getOffset() const {
160 const DWARFUnitIndex::Entry *
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
MovieFragmentBox.java 43 final List<SampleDependencyTypeBox.Entry> sampleEntries = sdtp.getEntries();
45 for (SampleDependencyTypeBox.Entry sampleEntry : sampleEntries) {

Completed in 599 milliseconds

<<11121314151617181920>>