/external/clang/lib/Index/ |
SimpleFormatContext.h | 51 const FileEntry *Entry = Files.getFile(Name); 52 assert(Entry != nullptr); 53 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
|
/external/guava/guava/src/com/google/common/collect/ |
DescendingImmutableSortedMultiset.java | 38 public Entry<E> firstEntry() { 43 public Entry<E> lastEntry() { 58 Entry<E> getEntry(int index) {
|
EmptyImmutableSortedMultiset.java | 38 public Entry<E> firstEntry() { 43 public Entry<E> lastEntry() { 68 Entry<E> getEntry(int index) {
|
ImmutableMap.java | 74 * Returns an immutable map containing a single entry. This map behaves and 129 * immutable entry with those values. 131 * <p>A call to {@link Map.Entry#setValue} on the returned entry will always 148 Entry<?, ?> entry1, Entry<?, ?> entry2) { 206 TerminalEntry<K, V> entry = entryOf(key, value); local 208 entries[size++] = entry; 213 * Adds the given {@code entry} to the map, making it immutable if 219 public Builder<K, V> put(Entry<? extends K, ? extends V> entry) [all...] |
AbstractMultiset.java | 69 for (Entry<E> entry : entrySet()) { 70 if (Objects.equal(entry.getElement(), element)) { 71 return entry.getCount(); 160 abstract Iterator<Entry<E>> entryIterator(); 164 private transient Set<Entry<E>> entrySet; 166 @Override public Set<Entry<E>> entrySet() { 167 Set<Entry<E>> result = entrySet; 179 @Override public Iterator<Entry<E>> iterator() { 188 Set<Entry<E>> createEntrySet() [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableEnumMapTest.java | 29 import java.util.Map.Entry; 40 protected Map<AnEnum, String> create(Entry<AnEnum, String>[] entries) { 42 for (Entry<AnEnum, String> entry : entries) { 43 map.put(entry.getKey(), entry.getValue());
|
SimpleAbstractMultisetTest.java | 84 Iterator<Entry<E>> entryIterator() { 85 final Iterator<Map.Entry<E, Integer>> backingEntries = backingMap.entrySet().iterator(); 86 return new UnmodifiableIterator<Multiset.Entry<E>>() { 93 public Multiset.Entry<E> next() { 94 final Map.Entry<E, Integer> mapEntry = backingEntries.next();
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFUnitIndex.h | 43 class Entry { 67 std::unique_ptr<Entry[]> Rows; 77 const Entry *getFromOffset(uint32_t Offset) const;
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/ |
TrackFragmentRandomAccessBox.java | 61 private List<Entry> entries = Collections.emptyList(); 94 entries = new ArrayList<Entry>(); 97 Entry entry = new Entry(); local 99 entry.time = IsoTypeReader.readUInt64(content); 100 entry.moofOffset = IsoTypeReader.readUInt64(content); 102 entry.time = IsoTypeReader.readUInt32(content); 103 entry.moofOffset = IsoTypeReader.readUInt32(content); 105 entry.trafNumber = IsoTypeReaderVariable.read(content, lengthSizeOfTrafNum) [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
TwoSecondIntersectionFinder.java | 33 for (TimeToSampleBox.Entry entry : track.getDecodingTimeEntries()) { 34 duration += entry.getCount() * entry.getDelta(); 43 List<TimeToSampleBox.Entry> entries = track.getDecodingTimeEntries(); 64 for (TimeToSampleBox.Entry entry : entries) { 65 for (int i = 0; i < entry.getCount(); i++) { 71 time += entry.getDelta();
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
ReplaceSampleTrack.java | 54 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/ |
SegmentIndexBox.java | 44 List<Entry> entries = new ArrayList<Entry>(); 85 for (Entry entry : entries) { 87 b.writeBits(entry.getReferenceType(), 1); 88 b.writeBits(entry.getReferencedSize(), 31); 89 IsoTypeWriter.writeUInt32(byteBuffer, entry.getSubsegmentDuration()); 91 b.writeBits(entry.getStartsWithSap(), 1); 92 b.writeBits(entry.getSapType(), 3); 93 b.writeBits(entry.getSapDeltaTime(), 28) [all...] |
/external/v8/src/profiler/ |
circular-queue-inl.h | 60 typename SamplingCircularQueue<T, L>::Entry* SamplingCircularQueue<T, L>::Next( 61 Entry* entry) { 62 Entry* next = entry + 1;
|
/frameworks/compile/mclinker/include/mcld/Target/ |
PLT.h | 22 * \brief PLTEntryDefaultBase provides the default interface for PLT Entry 51 class Entry : public EntryBase { 56 explicit Entry(SectionData& pParent) : EntryBase(pParent) {} 58 virtual ~Entry() {}
|
/libcore/ojluni/src/main/java/java/util/ |
Map.java | 352 * {@code setValue} operation on a map entry returned by the 362 Set<Map.Entry<K, V>> entrySet(); 365 * A map entry (key-value pair). The {@code Map.entrySet} method returns 367 * <i>only</i> way to obtain a reference to a map entry is from the 368 * iterator of this collection-view. These {@code Map.Entry} objects are 370 * the behavior of a map entry is undefined if the backing map has been 371 * modified after the entry was returned by the iterator, except through 372 * the {@code setValue} operation on the map entry. 377 interface Entry<K, V> { 379 * Returns the key corresponding to this entry [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
PhotoStore.java | 50 private final Map<Long, Entry> mEntries; 80 mEntries = new HashMap<Long, Entry>(); 108 * Returns the entry with the specified key if it exists, null otherwise. 110 public Entry get(long key) { 125 Entry entry = new Entry(file); local 126 putEntry(entry.id, entry); 128 // Not a valid photo store entry - delete the file 213 Entry entry = new Entry(target); local 272 Entry entry = mEntries.get(id); local [all...] |
/system/keymaster/ |
operation_table.cpp | 28 OperationTable::Entry::~Entry() { 37 table_.reset(new (std::nothrow) Entry[table_size_]);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableMultimap.java | 33 import java.util.Map.Entry; 73 * Returns an immutable multimap containing a single entry. 174 * Adds an entry to the built multimap. 178 public Builder<K, V> put(Entry<? extends K, ? extends V> entry) { 179 return put(entry.getKey(), entry.getValue()); 192 "null key in entry: null=" + Iterables.toString(values)); 222 for (Entry<? extends K, ? extends Collection<? extends V>> entry 510 Entry<?, ?> entry = (Entry<?, ?>) object; local [all...] |
/external/skia/src/core/ |
SkFlattenable.cpp | 53 struct Entry { 60 static Entry gEntries[MAX_ENTRY_COUNT]; 88 const Entry* entries = gEntries; 103 const Entry* entries = gEntries; 118 const Entry* entries = gEntries;
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldAbstractMapTest.java | 102 private final List<Entry<String, String>> entries = new ArrayList<Entry<String, String>>(); 110 @Override public Set<Entry<String, String>> entrySet() { 111 return new AbstractSet<Entry<String, String>>() { 112 @Override public Iterator<Entry<String, String>> iterator() {
|
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/ |
MapPutTester.java | 33 import java.util.Map.Entry; 46 private Entry<K, V> nullKeyEntry; 47 private Entry<K, V> nullValueEntry; 48 private Entry<K, V> nullKeyValueEntry; 49 private Entry<K, V> presentKeyNullValueEntry; 53 nullKeyEntry = entry(null, samples.e3.getValue()); 54 nullValueEntry = entry(samples.e3.getKey(), null); 55 nullKeyValueEntry = entry(null, null); 56 presentKeyNullValueEntry = entry(samples.e0.getKey(), null); 69 Iterator<Entry<K, V>> iterator = getMap().entrySet().iterator() [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
MapPutTester.java | 36 import java.util.Map.Entry; 49 private Entry<K, V> nullKeyEntry; 50 private Entry<K, V> nullValueEntry; 51 private Entry<K, V> nullKeyValueEntry; 52 private Entry<K, V> presentKeyNullValueEntry; 56 nullKeyEntry = entry(null, samples.e3.getValue()); 57 nullValueEntry = entry(samples.e3.getKey(), null); 58 nullKeyValueEntry = entry(null, null); 59 presentKeyNullValueEntry = entry(samples.e0.getKey(), null); 72 Iterator<Entry<K, V>> iterator = getMap().entrySet().iterator() [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PhotoFallbackEffect.java | 37 public static class Entry { 44 public Entry(Path path, Rect source, RawTexture texture) { 61 private ArrayList<Entry> mList = new ArrayList<Entry>(); 69 mList.add(new Entry(path, rect, texture)); 72 public Entry getEntry(Path path) { 74 Entry entry = mList.get(i); local 75 if (entry.path == path) return entry; 83 Entry entry = mList.get(i); local 165 Entry entry = mList.get(i); local 174 Entry entry = mList.get(i); local [all...] |
/external/guava/guava-testlib/test/com/google/common/collect/testing/ |
SafeTreeMapTest.java | 37 import java.util.Map.Entry; 53 Entry<String, String>[] entries) { 56 for (Entry<String, String> entry : entries) { 57 map.put(entry.getKey(), entry.getValue()); 67 Entry<String, String>[] entries) { 70 for (Entry<String, String> entry : entries) { 71 map.put(entry.getKey(), entry.getValue()) [all...] |
/external/llvm/include/llvm/Support/ |
Registry.h | 23 /// A simple registry entry which provides only a name, description, and 47 typedef SimpleRegistryEntry<T> entry; typedef in class:llvm::RegistryTraits 51 static const char *nameof(const entry &Entry) { return Entry.getName(); } 52 static const char *descof(const entry &Entry) { return Entry.getDesc(); } 62 typedef typename U::entry entry; typedef in class:llvm::Registry [all...] |