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

<<11121314151617181920>>

  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocStream.h 28 /// variable/inlined-at pair, and an \a Entry for each \a DebugLocEntry.
41 struct Entry {
46 Entry(const MCSymbol *BeginSym, const MCSymbol *EndSym, size_t ByteOffset,
54 SmallVector<Entry, 32> Entries;
72 /// \brief Start a new .debug_loc entry list.
74 /// Start a new .debug_loc entry list. Return the new list's index so it can
84 /// Finalize a .debug_loc entry list.
92 /// \brief Start a new .debug_loc entry.
95 /// entry.
100 /// Finalize a .debug_loc entry, deleting if it's empty
    [all...]
  /external/llvm/lib/Support/
IntervalMap.cpp 21 path.front() = Entry(Root, Size, Offsets.first);
22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second));
61 path.resize(Level + 1, Entry(nullptr, 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/
QuicktimeTextTrackImpl.java 93 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() {
TextTrackImpl.java 96 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/v8/src/ic/
stub-cache.h 35 struct Entry {
42 // Access cache for entry hash(name, map).
77 StubCache::Entry* first_entry(StubCache::Table table) {
90 // Setting the entry size such that the index is shifted by Name::kHashShift
101 // update strategy on updates is fairly clear and simple: Any existing entry
142 // Compute the entry for a given offset in exactly the same way as
145 // of sizeof(Entry). This makes it easier to avoid making mistakes
147 static Entry* entry(Entry* table, int offset) function in class:v8::internal::StubCache
    [all...]
  /frameworks/native/services/sensorservice/
SensorList.cpp 35 mHandleMap.emplace(handle, Entry(si, isForDebug, isVirtual));
44 auto entry = mHandleMap.find(handle); local
45 if (entry != mHandleMap.end()) {
46 mHandleMap.erase(entry);
54 handle, [] (const Entry& e) -> String8 {return e.si->getSensor().getName();},
60 handle, [] (const Entry& e) -> sp<SensorInterface> {return e.si;}, nullptr);
73 [&sensors] (const Entry& e) -> bool {
86 [&sensors] (const Entry& e) -> bool {
99 [&sensors] (const Entry& e) -> bool {
112 [&sensors] (const Entry& e) -> bool
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Maps.java 52 import java.util.Map.Entry;
80 private enum EntryFunction implements Function<Entry<?, ?>, Object> {
84 public Object apply(Entry<?, ?> entry) {
85 return entry.getKey();
91 public Object apply(Entry<?, ?> entry) {
92 return entry.getValue();
98 static <K> Function<Entry<K, ?>, K> keyFunction() {
103 static <V> Function<Entry<?, V>, V> valueFunction()
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 30 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) {
    [all...]
SetMultimapTestSuiteBuilder.java 35 import java.util.Map.Entry;
67 OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>>> parentBuilder) {
79 OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>>> parentBuilder) {
96 OneSizeTestContainerGenerator<SetMultimap<K, V>, Map.Entry<K, V>>> parentBuilder) {
107 implements TestSetGenerator<Entry<K, V>> {
110 OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>> multimapGenerator) {
115 public Set<Entry<K, V>> create(Object... elements) {
116 return (Set<Entry<K, V>>) super.create(elements);
124 OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>> multimapGenerator) {
139 OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>> multimapGenerator)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForMapsInJavaUtil.java 35 import java.util.Map.Entry;
101 Entry<String, String>[] entries) {
117 Entry<String, String>[] entries) {
137 Entry<String, String>[] entries) {
159 Entry<String, String>[] entries) {
182 Entry<String, String>[] entries) {
207 Entry<String, String>[] entries) {
231 Entry<AnEnum, String>[] entries) {
253 Entry<String, String>[] entries) {
271 Entry<String, String>[] entries)
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 138 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<String, String>> headers
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 103 // exists. Most likely, we were using a stat cache with an invalid entry but
108 // currently handle returning a null entry here. Ideally we should detect
135 // Check that the file's size is the same as in the file entry (which may
218 /// presumed \#include stack. If it is 1, this is a file entry, if it is 2 then
253 /// FindNearestLineEntry - Find the line entry nearest to FID that is before
254 /// it. If there is no line entry before Offset in FID, return null.
272 /// \brief Add a new line entry that has already been encoded into
294 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
295 if (!Entry.isFile() || Invalid)
298 const SrcMgr::FileInfo &FileInfo = Entry.getFile()
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/http/
PathMap.java 87 Entry _prefixDefault=null;
88 Entry _default=null;
157 Entry entry = new Entry("",object); local
158 entry.setMapped("");
159 _exactMap.put("", entry);
175 // Make entry that was just created.
176 Entry entry = new Entry(spec,object) local
221 Map.Entry entry = getMatch(path); local
235 Map.Entry entry=null; local
289 Map.Entry entry; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 48 public static final class Entry {
66 public Entry(StatusBarNotification n, StatusBarIconView ic) {
81 * Resets the notification entry to be re-used.
170 private final ArrayMap<String, Entry> mEntries = new ArrayMap<>();
171 private final ArrayList<Entry> mSortedAndFiltered = new ArrayList<>();
182 private final Comparator<Entry> mRankingComparator = new Comparator<Entry>() {
187 public int compare(Entry a, Entry b) {
252 public ArrayList<Entry> getActiveNotifications()
262 mEntries.put(entry.notification.getKey(), entry); local
339 Entry entry = mEntries.valueAt(i); local
361 Entry entry = mEntries.valueAt(i); local
436 Entry entry = mEntries.valueAt(i); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationGroupManager.java 74 public void onEntryRemoved(NotificationData.Entry removed) {
80 * An entry was removed.
82 * @param removed the removed entry
83 * @param sbn the notification the entry has, which doesn't need to be the same as it's internal
86 private void onEntryRemovedInternal(NotificationData.Entry removed,
110 public void onEntryAdded(final NotificationData.Entry added) {
127 HashSet<NotificationData.Entry> childrenCopy =
128 (HashSet<NotificationData.Entry>) group.children.clone();
129 for (NotificationData.Entry child : childrenCopy) {
137 private void onEntryBecomingChild(NotificationData.Entry entry)
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java 40 import java.util.Map.Entry;
59 List<Entry<Object, Object>> warmed = warmUp(cache);
69 List<Entry<Object, Object>> warmed = warmUp(cache);
71 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN); local
72 assertTrue(cache.asMap().containsKey(entry.getKey()));
73 assertTrue(cache.asMap().containsValue(entry.getValue()));
75 assertEquals(entry.getValue(), cache.getUnchecked(entry.getKey()));
85 List<Entry<Object, Object>> warmed = warmUp(cache)
87 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN); local
110 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN); local
145 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN); local
166 Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN); local
275 Entry<Object, Object> entry = Iterables.getOnlyElement(cache.asMap().entrySet()); local
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 512 ConstInfoEntry Entry = findInfo(StmtNode);
514 if (Entry != PropagationMap.end())
515 return Entry->second;
527 InfoEntry Entry = findInfo(From);
528 if (Entry != PropagationMap.end())
529 insertInfo(To, Entry->second);
537 InfoEntry Entry = findInfo(From);
538 if (Entry != PropagationMap.end()) {
539 PropagationInfo& PInfo = Entry->second;
551 InfoEntry Entry = findInfo(From)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsCollectionTest.java 65 import java.util.Map.Entry;
177 implements TestCollectionGenerator<Entry<String, Integer>> {
179 public SampleElements<Entry<String, Integer>> samples() {
180 return new SampleElements<Entry<String, Integer>>(
189 public Collection<Entry<String, Integer>> create(Object... elements) {
193 Entry<String, Integer> entry = (Entry<String, Integer>) element; local
194 multimap.put(entry.getKey(), entry.getValue())
357 Entry<String, String> entry = (Entry<String, String>) o; local
521 Entry<String, Integer> entry = (Entry<String, Integer>) o; local
542 Entry<String, Integer> entry = (Entry<String, Integer>) o; local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SortedMapNavigationTester.java 33 import java.util.Map.Entry;
48 private Entry<K, V> a;
49 private Entry<K, V> c;
54 List<Entry<K, V>> entries = Helpers.copyToList(getSubjectGenerator().getSampleElements(
116 List<Entry<K, V>> entries = Helpers.copyToList(getSubjectGenerator().getSampleElements(
126 List<Entry<K, V>> entries = Helpers.copyToList(getSubjectGenerator().getSampleElements(
136 List<Entry<K, V>> entries = Helpers.copyToList(getSubjectGenerator().getSampleElements(
170 Iterator<Entry<K, V>> entryItr = navigableMap.entrySet().iterator();
171 Entry<K, V> prevEntry = entryItr.next();
173 Entry<K, V> nextEntry = entryItr.next()
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackRunBox.java 51 private List<Entry> entries = new ArrayList<Entry>();
54 public List<Entry> getEntries() {
58 public static class Entry {
64 public Entry() {
67 public Entry(long sampleDuration, long sampleSize, SampleFlags sampleFlags, int sampleCompositionTimeOffset) {
108 return "Entry{" +
199 for (Entry entry : entries) {
201 IsoTypeWriter.writeUInt32(byteBuffer, entry.sampleDuration)
230 Entry entry = new Entry(); local
    [all...]
  /external/skia/src/gpu/gl/
GrGLGpuProgramCache.cpp 25 struct GrGLGpu::ProgramCache::Entry {
27 Entry() : fProgram(nullptr), fLRUStamp(0) {}
34 bool operator() (const GrProgramDesc& desc, const Entry* entry) {
35 SkASSERT(entry->fProgram.get());
36 return GrProgramDesc::Less(desc, entry->fProgram->getDesc());
39 bool operator() (const Entry* entry, const GrProgramDesc& desc) {
40 SkASSERT(entry->fProgram.get());
41 return GrProgramDesc::Less(entry->fProgram->getDesc(), desc)
116 Entry* entry = nullptr; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Atlas.java 56 * Represents a bitmap packed in the atlas. Each entry has a location in
59 public static class Entry {
110 * @return An {@link Entry} instance if the rectangle was packed in
113 * @see #pack(int, int, Atlas.Entry)
115 public Entry pack(int width, int height) {
124 * @param entry Out parameter that will be filled in with the location
127 * @return An {@link Entry} instance if the rectangle was packed in
132 public Entry pack(int width, int height, Entry entry) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DisplaySettings.java 50 private final HashMap<String, Entry> mEntries = new HashMap<String, Entry>();
52 public static class Entry {
59 public Entry(String _name) {
71 // Try to get the entry with the unique if possible.
73 Entry entry; local
74 if (uniqueId == null || (entry = mEntries.get(uniqueId)) == null) {
75 entry = mEntries.get(name);
77 if (entry != null)
97 Entry entry = mEntries.get(uniqueId); local
184 Entry entry = new Entry(name); local
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
HashIterator.h 38 if (bucket_type::getTombstone() == bucket.Entry) {
41 if (bucket.Entry->compare(pKey)) {
86 return m_pHashTable->m_Buckets[m_Index].Entry;
92 return m_pHashTable->m_Buckets[m_Index].Entry;
118 if (bucket_type::getTombstone() == bucket.Entry ||
119 bucket_type::getEmptyBucket() == bucket.Entry) {
190 return m_pHashTable->m_Buckets[m_Index].Entry;
196 return m_pHashTable->m_Buckets[m_Index].Entry;
214 m_pHashTable->m_Buckets[m_Index].Entry ||
216 m_pHashTable->m_Buckets[m_Index].Entry);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
GalleryWidgetMigrator.java 33 import com.android.gallery3d.gadget.WidgetDatabaseHelper.Entry;
82 List<Entry> entries = dbHelper.getEntries(WidgetDatabaseHelper.TYPE_ALBUM);
85 // Check each entry's relativePath. If exists, update bucket id using relative
89 HashMap<Integer, Entry> localEntries = new HashMap<Integer, Entry>(entries.size());
90 for (Entry entry : entries) {
91 Path path = Path.fromString(entry.albumPath);
94 if (entry.relativePath != null && entry.relativePath.length() > 0)
140 Entry entry = entries.remove(oldBucketId); local
    [all...]

Completed in 1191 milliseconds

<<11121314151617181920>>