/device/linaro/bootloader/edk2/SignedCapsulePkg/Universal/SystemFirmwareUpdate/ |
ParseConfigProfile.c | 47 CHAR8 Entry[MAX_LINE_LENGTH];
88 AsciiStrCpyS (Entry, MAX_LINE_LENGTH, "Update");
89 AsciiValueToString(Entry + AsciiStrLen(Entry), 0, Index, 0);
93 Entry,
97 DEBUG((DEBUG_ERROR, "[%d] %a not found\n", Index, Entry));
|
/external/guava/guava/src/com/google/common/collect/ |
FilteredMultimapValues.java | 28 import java.util.Map.Entry; 62 Predicate<? super Entry<K, V>> entryPredicate = multimap.entryPredicate(); 63 for (Iterator<Entry<K, V>> unfilteredItr = multimap.unfiltered().entries().iterator(); 65 Map.Entry<K, V> entry = unfilteredItr.next(); local 66 if (entryPredicate.apply(entry) && Objects.equal(entry.getValue(), o)) { 77 // explicit <Entry<K, V>> is required to build with JDK6 78 Predicates.<Entry<K, V>>and(multimap.entryPredicate(), 85 // explicit <Entry<K, V>> is required to build with JDK [all...] |
RegularImmutableSortedMap.java | 50 ImmutableSet<Entry<K, V>> createEntrySet() { 56 public UnmodifiableIterator<Entry<K, V>> iterator() { 61 ImmutableList<Entry<K, V>> createAsList() { 62 return new ImmutableAsList<Entry<K, V>>() { 67 public Entry<K, V> get(int index) { 72 ImmutableCollection<Entry<K, V>> delegateCollection() {
|
ImmutableMultiset.java | 23 import com.google.common.collect.Multiset.Entry; 199 Collection<? extends Entry<? extends E>> entries) { 202 for (Entry<? extends E> entry : entries) { 203 int count = entry.getCount(); 207 builder.put(entry.getElement(), count); 239 final Iterator<Entry<E>> entryIterator = entrySet().iterator(); 252 Entry<E> entry = entryIterator.next(); local 253 element = entry.getElement() [all...] |
EmptyImmutableBiMap.java | 55 public ImmutableSet<Entry<Object, Object>> entrySet() { 60 ImmutableSet<Entry<Object, Object>> createEntrySet() {
|
ForwardingSetMultimap.java | 21 import java.util.Map.Entry; 41 @Override public Set<Entry<K, V>> entries() {
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
ARMException.cpp | 107 int Entry = 0; 112 Entry = TypeInfos.size(); 117 Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--)); 125 Entry = 0; 131 --Entry; 133 Asm->OutStreamer->AddComment("FilterInfo " + Twine(Entry));
|
/external/llvm/unittests/Transforms/Utils/ |
Local.cpp | 69 BasicBlock *Entry(BasicBlock::Create(C, "", F.get())); 71 BranchInst::Create(BB, Entry); 76 P1->addIncoming(B.getInt32(42), Entry); 79 P2->addIncoming(B.getInt32(42), Entry); 82 P3->addIncoming(B.getInt32(42), Entry); 86 P4->addIncoming(B.getInt32(42), Entry);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
Amf0Track.java | 68 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() { 69 LinkedList<TimeToSampleBox.Entry> timesToSample = new LinkedList<TimeToSampleBox.Entry>(); 78 timesToSample.add(new TimeToSampleBox.Entry(1, delta)); 85 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() { 95 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
|
/external/skia/src/core/ |
SkDescriptor.cpp | 28 Entry* entry = (Entry*)((char*)this + fLength); local 29 entry->fTag = tag; 30 entry->fLen = SkToU32(length); 32 memcpy(entry + 1, data, length); 36 fLength = SkToU32(fLength + sizeof(Entry) + length); 37 return (entry + 1); // return its data 45 const Entry* entry = (const Entry*)(this + 1) local [all...] |
/external/skqp/src/core/ |
SkDescriptor.cpp | 28 Entry* entry = (Entry*)((char*)this + fLength); local 29 entry->fTag = tag; 30 entry->fLen = SkToU32(length); 32 memcpy(entry + 1, data, length); 36 fLength = SkToU32(fLength + sizeof(Entry) + length); 37 return (entry + 1); // return its data 45 const Entry* entry = (const Entry*)(this + 1) local [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
InterferenceCache.h | 36 /// Entry - A cache entry containing interference information for all aliases 38 class Entry { 46 /// RefCount - The total number of Cursor instances referring to this Entry. 74 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0) {} 77 assert(!hasRefs() && "Cannot clear cache entry with references"); 91 /// valid - Return true if this is a valid entry for physReg. 94 /// reset - Initialize entry to represent physReg's aliases. 108 // We don't keep a cache entry for every physical register, that would use too 113 // Point to an entry for each physreg. The entry pointed to may not be up t [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
ARMException.cpp | 102 int Entry = 0; 107 Entry = TypeInfos.size(); 112 Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--)); 122 Entry = 0; 128 --Entry; 130 Asm->OutStreamer->AddComment("FilterInfo " + Twine(Entry));
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
InterferenceCache.h | 44 /// Entry - A cache entry containing interference information for all aliases 46 class Entry { 54 /// RefCount - The total number of Cursor instances referring to this Entry. 102 Entry() = default; 105 assert(!hasRefs() && "Cannot clear cache entry with references"); 120 /// valid - Return true if this is a valid entry for physReg. 123 /// reset - Initialize entry to represent physReg's aliases. 137 // We don't keep a cache entry for every physical register, that would use too 146 // Point to an entry for each physreg. The entry pointed to may not be up t [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
DebugChecksumsSubsection.cpp | 71 FileChecksumEntry Entry; 75 Entry.Checksum = makeArrayRef(Copy, Bytes.size()); 78 Entry.FileNameOffset = Strings.insert(FileName); 79 Entry.Kind = Kind; 80 Checksums.push_back(Entry); 83 // of this checksum entry in the checksum buffer. 84 OffsetMap[Entry.FileNameOffset] = SerializedSize;
|
DebugInlineeLinesSubsection.cpp | 71 // one header for each entry. 74 // If extra files are enabled, one count for each entry. 111 auto &Entry = Entries.back(); 112 Entry.ExtraFiles.push_back(ulittle32_t(Offset)); 122 auto &Entry = Entries.back(); 123 Entry.Header.FileID = Offset; 124 Entry.Header.SourceLineNum = SourceLine; 125 Entry.Header.Inlinee = FuncId;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
ConstantPools.cpp | 31 for (const ConstantPoolEntry &Entry : Entries) { 32 Streamer.EmitCodeAlignment(Entry.Size); // align naturally 33 Streamer.EmitLabel(Entry.Label); 34 Streamer.EmitValue(Entry.Value, Entry.Size, Entry.Loc); 44 // Check if there is existing entry for the same constant. If so, reuse it.
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ |
AbstractSampleEncryptionBox.java | 27 List<Entry> entries = new LinkedList<Entry>(); 65 Entry e = new Entry(); 70 e.pairs = new LinkedList<Entry.Pair>(); 85 public List<Entry> getEntries() { 89 public void setEntries(List<Entry> entries) { 152 for (Entry entry : entries) { 155 System.arraycopy(entry.iv, 0, ivFull, ivSize - entry.iv.length, entry.iv.length) 274 Entry entry = (Entry) o; local [all...] |
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
DebugLoc.cpp | 192 // If we already have an entry for this scope, return it. 196 // If we don't have an entry, but ExistingIdx is specified, use it. 200 // Otherwise add a new entry. 215 // If we already have an entry, return it. 219 // If we don't have an entry, but ExistingIdx is specified, use it. 241 /// to drop to null and we need remove our entry from the DenseMap. 244 // it doesn't have a map entry. 252 // If the index is positive, it is an entry in ScopeRecords. 262 // Otherwise, it is an entry in ScopeInlinedAtRecords, we don't know if it 263 // is the scope or the inlined-at record entry [all...] |
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
MetadataTest.cs | 36 var entry = new Metadata.Entry("ABC", "XYZ"); 37 Assert.IsFalse(entry.IsBinary); 38 Assert.AreEqual("abc", entry.Key); // key is in lowercase. 39 Assert.AreEqual("XYZ", entry.Value); 40 CollectionAssert.AreEqual(new[] { (byte)'X', (byte)'Y', (byte)'Z' }, entry.ValueBytes); 42 Assert.Throws(typeof(ArgumentException), () => new Metadata.Entry("abc-bin", "xyz")); 44 Assert.AreEqual("[Entry: key=abc, value=XYZ]", entry.ToString()); 51 var entry = new Metadata.Entry("ABC-BIN", bytes) [all...] |
/external/swiftshader/third_party/LLVM/lib/Object/ |
MachOObjectFile.cpp | 116 InMemoryStruct<macho::Symbol64TableEntry> Entry; 117 getSymbol64TableEntry(DRI, Entry); 118 Result = MachOObj->getStringAtIndex(Entry->StringIndex); 120 InMemoryStruct<macho::SymbolTableEntry> Entry; 121 getSymbolTableEntry(DRI, Entry); 122 Result = MachOObj->getStringAtIndex(Entry->StringIndex); 132 InMemoryStruct<macho::Symbol64TableEntry> Entry; 133 getSymbol64TableEntry(DRI, Entry); 134 Result = Entry->Value; 135 SectionIndex = Entry->SectionIndex [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableMap.java | 83 static <K, V> Entry<K, V> entryOf(K key, V value) { 89 final List<Entry<K, V>> entries = Lists.newArrayList(); 98 public Builder<K, V> put(Entry<? extends K, ? extends V> entry) { 99 if (entry instanceof ImmutableEntry) { 100 checkNotNull(entry.getKey()); 101 checkNotNull(entry.getValue()); 103 Entry<K, V> immutableEntry = (Entry<K, V>) entry; 129 Entry<K, V> entry = getOnlyElement(entries); local 163 Entry<? extends K, ? extends V> entry local [all...] |
/development/samples/training/network-usage/src/com/example/android/networkusage/ |
StackOverflowXmlParser.java | 30 * where each list element represents a single entry (post) in the XML feed. 37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException { 49 private List<Entry> readFeed(XmlPullParser parser) throws XmlPullParserException, IOException { 50 List<Entry> entries = new ArrayList<Entry>(); 58 // Starts by looking for the entry tag 59 if (name.equals("entry")) { 68 // This class represents a single entry (post) in the XML feed. 70 public static class Entry { 75 private Entry(String title, String summary, String link) [all...] |
/device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/Arm/ |
ArchPrePeiCore.c | 23 IN UINT32 Entry,
30 switch (Entry) {
|
/external/deqp/framework/common/ |
tcuFunctionLibrary.hpp | 54 struct Entry 60 StaticFunctionLibrary (const Entry* entries, int numEntries);
|