/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Bitcode/ |
BitstreamReaderTest.cpp | 123 BitstreamEntry Entry = 125 ASSERT_EQ(BitstreamEntry::SubBlock, Entry.Kind); 126 ASSERT_EQ(BlockID, Entry.ID); 130 Entry = Stream.advance(); 131 ASSERT_EQ(BitstreamEntry::Record, Entry.Kind); 132 ASSERT_EQ(AbbrevID, Entry.ID); 137 ASSERT_EQ(RecordID, Stream.readRecord(Entry.ID, Record, &BlobOut));
|
/external/swiftshader/third_party/subzero/pnacl-llvm/ |
NaClBitcodeParser.cpp | 27 os << ", Code " << Data.Code << ", EntryID " << Entry.ID << ", <"; 53 Parser->Record.Entry.Kind = NaClBitstreamEntry::Record; 54 Parser->Record.Entry.ID = naclbitc::UNABBREV_RECORD; 64 Parser->Record.Entry.Kind = NaClBitstreamEntry::EndBlock; 65 Parser->Record.Entry.ID = naclbitc::END_BLOCK; 75 Parser->Record.Entry.Kind = NaClBitstreamEntry::Record; 76 Parser->Record.Entry.ID = naclbitc::DEFINE_ABBREV; 129 // Read entry defining type of entry.
|
/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...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/ |
IfrParse.c | 708 PackageGuid - on input, it comes from the HII data table entry for this pack.
771 // Allocate a new IFR entry to put in our linked list, then
790 // Add this entry to our linked list. If it's not the first, then
791 // forward the variable store settings from the previous entry.
1091 VARIABLE_STORE_ENTRY *Entry;
1096 for (Entry = mVariableStores; Entry != NULL; Entry = Entry->Next) {
1098 *VarPack = Entry->VarPack; [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/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
MachineModuleInfo.cpp | 111 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB]; 113 // If we already had an entry for this block, just return it. 114 if (!Entry.Symbols.empty()) { 115 assert(BB->getParent() == Entry.Fn && "Parent changed"); 116 return Entry.Symbols; 119 // Otherwise, this is a new entry, create a new symbol for it and add an 120 // entry to BBCallbacks so we can be notified if the BB is deleted or RAUWd. 123 Entry.Index = BBCallbacks.size() - 1; 124 Entry.Fn = BB->getParent(); 125 Entry.Symbols.push_back(Context.createTempSymbol()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
RegisterFile.cpp | 85 RegisterRenamingInfo &Entry = RegisterMappings[Reg].second; 86 IndexPlusCostPairTy &IPC = Entry.IndexPlusCost; 95 Entry.RenameAs = Reg; 111 void RegisterFile::allocatePhysRegs(const RegisterRenamingInfo &Entry, 113 unsigned RegisterFileIndex = Entry.IndexPlusCost.first; 114 unsigned Cost = Entry.IndexPlusCost.second; 126 void RegisterFile::freePhysRegs(const RegisterRenamingInfo &Entry, 128 unsigned RegisterFileIndex = Entry.IndexPlusCost.first; 129 unsigned Cost = Entry.IndexPlusCost.second; 285 const IndexPlusCostPairTy &Entry = RRI.IndexPlusCost [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/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 | 518 ConstInfoEntry Entry = findInfo(StmtNode); 520 if (Entry != PropagationMap.end()) 521 return Entry->second; 533 InfoEntry Entry = findInfo(From); 534 if (Entry != PropagationMap.end()) 535 insertInfo(To, Entry->second); 543 InfoEntry Entry = findInfo(From); 544 if (Entry != PropagationMap.end()) { 545 PropagationInfo& PInfo = Entry->second; 557 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...] |
ForwardingNavigableMapTest.java | 34 import java.util.Map.Entry; 99 @Override public Set<Entry<K, V>> entrySet() { 102 public Iterator<Entry<K, V>> iterator() { 121 public Entry<K, V> lowerEntry(K key) { 131 public Entry<K, V> floorEntry(K key) { 141 public Entry<K, V> ceilingEntry(K key) { 151 public Entry<K, V> higherEntry(K key) { 161 public Entry<K, V> firstEntry() { 171 public Entry<K, V> pollFirstEntry() { 176 public Entry<K, V> pollLastEntry() [all...] |
/external/grpc-grpc/src/core/lib/slice/ |
slice_hash_table.h | 47 struct Entry { 64 Entry* entries, 88 SliceHashTable(size_t num_entries, Entry* entries, ValueCmp value_cmp); 99 Entry* entries_; 108 Entry* entries, 114 SliceHashTable<T>::SliceHashTable(size_t num_entries, Entry* entries, 120 entries_ = static_cast<Entry*>(gpr_zalloc(sizeof(Entry) * size_)); 122 Entry* entry = &entries[i] local 130 Entry& entry = entries_[i]; 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/libchrome/mojo/public/cpp/bindings/ |
binding_set.h | 50 // the |context_| field of a BindingSetBase::Entry with void context. The 211 friend class Entry; 213 class Entry { 215 Entry(ImplPointerType impl, 226 base::BindOnce(&Entry::OnConnectionError, base::Unretained(this))); 238 explicit DispatchFilter(Entry* entry) : entry_(entry) {} 248 Entry* entry_; 268 DISALLOW_COPY_AND_ASSIGN(Entry); 283 auto entry = std::make_unique<Entry>(std::move(impl), std::move(request), local 296 std::unique_ptr<Entry> entry = std::move(it->second); local [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/mtl/ |
GrMtlResourceProvider.mm | 55 struct GrMtlResourceProvider::PipelineStateCache::Entry { 56 Entry(GrMtlGpu* gpu, GrMtlPipelineState* pipelineState) 108 std::unique_ptr<Entry>* entry = fMap.find(desc); 109 if (!entry) { 112 entry = fMap.find(desc); 114 if (!entry) { 123 entry = fMap.insert(desc, std::unique_ptr<Entry>(new Entry(fGpu, pipelineState))) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
X86RetpolineThunks.cpp | 213 BasicBlock *Entry = BasicBlock::Create(Ctx, "entry", F); 214 IRBuilder<> Builder(Entry); 222 MachineBasicBlock *EntryMBB = MF.CreateMachineBasicBlock(Entry); 241 MachineBasicBlock *Entry = &MF.front(); 242 Entry->clear(); 244 MachineBasicBlock *CaptureSpec = MF.CreateMachineBasicBlock(Entry->getBasicBlock()); 245 MachineBasicBlock *CallTarget = MF.CreateMachineBasicBlock(Entry->getBasicBlock()); 252 BuildMI(Entry, DebugLoc(), TII->get(CallOpc)).addMBB(CallTarget); 253 Entry->addSuccessor(CallTarget) [all...] |
/external/cldr/tools/java/org/unicode/cldr/util/ |
Counter.java | 136 private static class Entry<T> { 141 public Entry(RWLong count, T value, int uniqueness) { 148 private static class EntryComparator<T> implements Comparator<Entry<T>> { 157 public int compare(Entry<T> o1, Entry<T> o2) { 172 Set<Entry<T>> count_key = new TreeSet<Entry<T>>(new EntryComparator<T>(ascending, byValue)); 175 count_key.add(new Entry<T>(map.get(key), key, counter++)); 178 for (Entry<T> entry : count_key) [all...] |
/external/oauth/core/src/main/java/net/oauth/ |
OAuthMessage.java | 50 Collection<? extends Map.Entry> parameters) { 54 this.parameters = new ArrayList<Map.Entry<String, String>>(); 56 this.parameters = new ArrayList<Map.Entry<String, String>>(parameters.size()); 57 for (Map.Entry p : parameters) { 67 private final List<Map.Entry<String, String>> parameters; 70 private final List<Map.Entry<String, String>> headers = new ArrayList<Map.Entry<String, String>>(); 91 public List<Map.Entry<String, String>> getParameters() throws IOException { 100 public void addParameter(Map.Entry<String, String> parameter) { 106 Collection<? extends Map.Entry<String, String>> parameters) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
HashTable.h | 182 // One (Key, ValueT) pair for each entry Present. 201 for (const auto &Entry : *this) { 202 if (auto EC = Writer.writeInteger(Entry.first)) 204 if (auto EC = Writer.writeObject(Entry.second)) 223 /// Find the entry whose key has the specified hash value, using the specified 247 // The only way FirstUnused would not be set is if every single entry in the 254 /// Set the entry using a key type that the specified Traits can convert 276 /// Set the entry using a key type that the specified Traits can convert 280 auto Entry = find_as(K); 281 if (Entry != end()) [all...] |
/external/volley/src/test/java/com/android/volley/toolbox/ |
HttpHeaderParserTest.java | 59 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 61 assertNotNull(entry); 62 assertNull(entry.etag); 63 assertEquals(0, entry.serverDate); 64 assertEquals(0, entry.lastModified); 65 assertEquals(0, entry.ttl); 66 assertEquals(0, entry.softTtl); 73 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response) local 85 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 98 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 114 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 132 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 145 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 164 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 179 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 191 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 205 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 225 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local [all...] |