HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 576 - 600 of 2649) sorted by null

<<21222324252627282930>>

  /external/guava/guava/src/com/google/common/collect/
RegularImmutableMap.java 51 * <p>This allows reuse of the entry objects from the array in the actual implementation.
60 TerminalEntry<K, V> entry = (TerminalEntry<K, V>) theEntries[entryIndex]; local
61 K key = entry.getKey();
66 ? entry
67 : new NonTerminalMapEntry<K, V>(entry, existing);
77 RegularImmutableMap(Entry<?, ?>[] theEntries) {
84 @SuppressWarnings("unchecked") // all our callers carefully put in only Entry<K, V>s
85 Entry<K, V> entry = (Entry<K, V>) theEntries[entryIndex] local
    [all...]
AbstractMapBasedMultimap.java 37 import java.util.Map.Entry;
56 * <p>The multimap constructor takes a map that has a single entry for each
109 * an entry for the provided key, and if so replaces the delegate.
925 final Iterator<Map.Entry<K, Collection<V>>> entryIterator
928 Map.Entry<K, Collection<V>> entry;
936 entry = entryIterator.next();
937 return entry.getKey();
941 checkRemove(entry != null);
942 Collection<V> collection = entry.getValue()
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
MutableTypeToInstanceMapTest.java 36 import java.util.Map.Entry;
69 Entry<TypeToken, Object> entry = (Entry<TypeToken, Object>) object;
70 map.putInstance(entry.getKey(), entry.getValue());
122 Entry<Object, Object> entry = (Entry<Object, Object>) map.entrySet().toArray()[0]; local
123 assertEquals(TypeToken.of(String.class), entry.getKey())
134 Entry<Object, Object> entry = map.entrySet().toArray(new Entry[0])[0]; local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 92 public static String formEncode(Iterable<? extends Map.Entry> parameters)
103 public static void formEncode(Iterable<? extends Map.Entry> parameters,
107 for (Map.Entry parameter : parameters) {
184 public static Map<String, String> newMap(Iterable<? extends Map.Entry> from) {
187 for (Map.Entry f : from) {
207 public static class Parameter implements Map.Entry<String, String> {
287 Iterable<? extends Map.Entry<String, String>> parameters)
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX8632Traits.h 500 const auto &Entry = X8632RegTable[ii];
501 (IntegerRegistersI32)[Entry.Val] = Entry.Is32;
502 (IntegerRegistersI16)[Entry.Val] = Entry.Is16;
503 (IntegerRegistersI8)[Entry.Val] = Entry.Is8;
504 (FloatRegisters)[Entry.Val] = Entry.IsXmm;
505 (VectorRegisters)[Entry.Val] = Entry.IsXmm
    [all...]
  /frameworks/av/media/codec2/sfplugin/
CCodecBufferChannel.h 279 struct Entry {
280 inline Entry() : buffer(nullptr), timestamp(0), flags(0), ordinal({0, 0, 0}) {}
281 inline Entry(
299 bool pop(Entry *entry);
305 void defer(const Entry &entry);
310 std::list<Entry> mPending;
311 std::list<Entry> mStash;
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecDriver.c 179 LIST_ENTRY *Entry;
204 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Private->Ikev2SessionList) {
205 Ikev2SaSession = IKEV2_SA_SESSION_BY_SESSION (Entry);
215 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Private->Ikev2EstablishedList) {
216 Ikev2SaSession = IKEV2_SA_SESSION_BY_SESSION (Entry);
227 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Private->Udp4List) {
229 UdpSrv = IPSEC_UDP_SERVICE_FROM_LIST (Entry);
254 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Private->Udp6List) {
256 UdpSrv = IPSEC_UDP_SERVICE_FROM_LIST (Entry);
503 This is the declaration of an EFI image entry point. This entry point is
    [all...]
IkeService.c 81 LIST_ENTRY *Entry;
88 NET_LIST_FOR_EACH_SAFE (Entry, Next, Head) {
90 Udp = IPSEC_UDP_SERVICE_FROM_LIST (Entry);
532 @param[in] SpdEntry Point to the SPD entry related to the IKE negotiation.
536 @retval EFI_ACCESS_DENIED No related PAD entry was found.
573 // Find the pad entry by the remote ip address.
580 // Determine the IKE exchange instance by the auth protocol in pad entry.
750 LIST_ENTRY *Entry;
768 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Private->Ikev2SessionList) {
769 Ikev2SaSession = IKEV2_SA_SESSION_BY_SESSION (Entry);
    [all...]
  /external/google-breakpad/src/processor/
map_serializers-inl.h 118 template<typename Address, typename Entry>
119 size_t RangeMapSerializer<Address, Entry>::SizeOf(
120 const RangeMap<Address, Entry> &m) const {
131 // Size of entry.
132 size += entry_serializer_.SizeOf(iter->second.entry());
137 template<typename Address, typename Entry>
138 char *RangeMapSerializer<Address, Entry>::Write(
139 const RangeMap<Address, Entry> &m, char *dest) const {
163 dest = entry_serializer_.Write(iter->second.entry(), dest);
168 template<typename Address, typename Entry>
    [all...]
  /external/guava/guava/src/com/google/common/base/
Joiner.java 29 import java.util.Map.Entry;
289 * <li>To output a separate entry for each key-value pair, pass {@code multimap.entries()} to a
292 * <li>To output a single entry for each key, pass {@code multimap.asMap()} to a {@code MapJoiner}
309 * Appends the string representation of each entry of {@code map}, using the previously
317 * Appends the string representation of each entry of {@code map}, using the previously
326 * Returns a string containing the string representation of each entry of {@code map}, using the
334 * Appends the string representation of each entry in {@code entries}, using the previously
340 public <A extends Appendable> A appendTo(A appendable, Iterable<? extends Entry<?, ?>> entries)
346 * Appends the string representation of each entry in {@code entries}, using the previously
352 public <A extends Appendable> A appendTo(A appendable, Iterator<? extends Entry<?, ?>> parts
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
EnumHashBiMapTest.java 37 import java.util.Map.Entry;
56 Entry<Country, String> entry = (Entry<Country, String>) o; local
57 result.put(entry.getKey(), entry.getValue());
63 public SampleElements<Entry<Country, String>> samples() {
64 return new SampleElements<Entry<Country, String>>(
74 public Entry<Country, String>[] createArray(int length) {
75 return new Entry[length]
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 177 /// This is the main entry point for the type legalizer. This does a top-down
809 std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
810 RemapValue(Entry.first);
811 RemapValue(Entry.second);
812 assert(Entry.first.getNode() && "Operand isn't expanded");
813 Lo = Entry.first;
814 Hi = Entry.second;
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
EC3TrackImpl.java 37 List<TimeToSampleBox.Entry> stts = new LinkedList<TimeToSampleBox.Entry>();
59 for (BitStreamInfo entry : entries) {
60 if (bsi.strmtyp != 1 && entry.substreamid == bsi.substreamid) {
96 EC3SpecificBox.Entry e = new EC3SpecificBox.Entry();
137 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
141 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
149 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
183 BitStreamInfo entry = new BitStreamInfo() local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 142 List<Map.Entry<String, String>> parameters;
149 parameters = new ArrayList<Map.Entry<String, String>>();
181 Collection<? extends Map.Entry> parameters) throws IOException {
187 for (Map.Entry parameter : parameters) {
262 ComparableParameter(Map.Entry value) {
271 final Map.Entry value;
291 private static List<Map.Entry> getParameters(
296 List<Map.Entry> list = new ArrayList<Map.Entry>(parameters.size());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DIEHash.cpp 137 const DIE &Entry, StringRef Name) {
145 if (const DIE *Parent = Entry.getParent())
157 // For DW_TAG_friend, if the referenced entry is the DW_TAG_subprogram,
176 const DIE &Entry) {
192 StringRef Name = getDIEStringAttr(Entry, dwarf::DW_AT_name);
194 hashShallowTypeReference(Attribute, Entry, Name);
199 unsigned &DieNumber = Numbering[&Entry];
213 computeHash(Entry);
228 for (const auto &Entry : Locs.getEntries(Locs.getList(LocList.getValue())))
229 DD.emitDebugLocEntry(Streamer, Entry);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DWARFYAML.cpp 78 DWARFYAML::PubEntry &Entry) {
79 IO.mapRequired("DieOffset", Entry.DieOffset);
81 IO.mapRequired("Descriptor", Entry.Descriptor);
82 IO.mapRequired("Name", Entry.Name);
109 void MappingTraits<DWARFYAML::Entry>::mapping(IO &IO, DWARFYAML::Entry &Entry) {
110 IO.mapRequired("AbbrCode", Entry.AbbrCode);
111 IO.mapRequired("Values", Entry.Values);
  /external/v8/src/snapshot/
serializer.h 48 for (base::HashMap::Entry* p = impl_.Start(); p != nullptr;
55 base::HashMap::Entry* entry = FindOrCreateEntry(code_address); local
56 if (entry->value == nullptr) {
57 entry->value = CopyName(name, name_size);
62 base::HashMap::Entry* entry = FindEntry(code_address); local
63 return (entry != nullptr) ? static_cast<const char*>(entry->value)
68 base::HashMap::Entry* entry = FindEntry(code_address) local
    [all...]
  /art/compiler/optimizing/
stack_map_stream.h 121 BitTableBuilder<StackMap>::Entry current_stack_map_;
122 ScopedArenaVector<BitTableBuilder<InlineInfo>::Entry> current_inline_infos_;
131 ScopedArenaVector<BitTableBuilder<DexRegisterMapInfo>::Entry> temp_dex_register_map_;
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiPackage.java 24 import java.util.Map.Entry;
82 Iterator<Entry<String, ApiClass>> it = mApiClassMap.entrySet().iterator();
84 Map.Entry<String, ApiClass> entry = it.next(); local
85 ApiClass apiClass = entry.getValue();
  /cts/tools/release-parser/src/com/android/cts/releaseparser/
ApkParser.java 35 public Entry.EntryType getType() {
36 return Entry.EntryType.APK;
115 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
  /development/tools/mkstubs/src/com/android/mkstubs/
StubGenerator.java 30 import java.util.Map.Entry;
60 for (Entry<String, ClassReader> entry : classes.entrySet()) {
61 ClassReader cr = entry.getValue();
74 * Utility method that converts a fully qualified java name into a JAR entry path
90 for (Entry<String, byte[]> entry : all.entrySet()) {
91 String name = entry.getKey();
94 jar.write(entry.getValue());
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/RamDiskDxe/
RamDiskDriver.c 2 The driver entry point for RamDiskDxe driver.
61 LIST_ENTRY *Entry;
101 EFI_LIST_FOR_EACH (Entry, &RegisteredRamDisks) {
102 PrivateData = RAM_DISK_PRIVATE_FROM_THIS (Entry);
109 The entry point for RamDiskDxe driver.
115 @retval EFI_OUT_OF_RESOURCES Fail to execute entry point due to lack of
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EsrtDxe/
EsrtDxe.c 33 Get ESRT entry from ESRT Cache by FwClass Guid
35 @param[in] FwClass FwClass of Esrt entry to get
36 @param[in, out] Entry Esrt entry returned
38 @retval EFI_SUCCESS The variable saving this Esrt Entry exists.
47 IN OUT EFI_SYSTEM_RESOURCE_ENTRY *Entry
52 if (FwClass == NULL || Entry == NULL) {
67 Entry
84 Entry
94 Update one ESRT entry in ESRT Cache.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsImpl.c 226 LIST_ENTRY *Entry;
230 NET_LIST_FOR_EACH (Entry, &TokensMap->Used) {
231 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
262 LIST_ENTRY *Entry;
266 NET_LIST_FOR_EACH (Entry, &TokensMap->Used) {
267 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
751 @param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
752 If TRUE, this function will delete matching DNS Cache entry.
753 @param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
754 If FALSE, EFI_ACCESS_DENIED will be returned if the entry to be added is already exists.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Common.c 42 LIST_ENTRY *Entry;
77 NET_LIST_FOR_EACH (Entry, &IpSb->DefaultInterface->AddressList) {
78 AddrInfo = NET_LIST_USER_STRUCT_S (Entry, IP6_ADDRESS_INFO, Link, IP6_ADDR_INFO_SIGNATURE);
334 @param[in] Entry The entry to be removed.
337 @retval EFI_SUCCESS The entry has been removed successfully.
338 @retval Others Fail to remove the entry.
344 IN LIST_ENTRY *Entry,
352 Instance = NET_LIST_USER_STRUCT_S (Entry, IP6_PROTOCOL, Link, IP6_PROTOCOL_SIGNATURE);
426 LIST_ENTRY *Entry;
    [all...]

Completed in 623 milliseconds

<<21222324252627282930>>