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

1 2 3 4 5 6 78 91011>>

  /external/caliper/caliper/src/main/java/com/google/caliper/model/
StringMapFunnel.java 23 import java.util.Map.Entry;
33 for (Entry<String, String> entry : from.entrySet()) {
34 into.putUnencodedChars(entry.getKey())
36 .putUnencodedChars(entry.getValue());
  /external/opencensus-java/impl/src/main/java/io/opencensus/impl/internal/
DisruptorEventQueue.java 37 * EventQueue.Entry} and pass it to the {@link #enqueue(Entry)} method. The {@link Entry#process()}
139 public void enqueue(Entry entry) {
143 event.setEntry(entry);
164 * @param entry a class encapsulating the actions to be taken for event processing.
167 public void enqueue(Entry entry) {
168 enqueuer.enqueue(entry);
200 @Nullable private volatile Entry entry = null; field in class:DisruptorEventQueue.DisruptorEvent
233 Entry entry = event.getEntry(); local
    [all...]
  /external/python/cpython2/Demo/tkinter/ttk/
mac_searchentry.py 60 style.layout("Search.entry", [
62 [("Entry.padding", {"sticky": "nswe", "children":
63 [("Entry.textarea", {"sticky": "nswe"})]
68 style.configure("Search.entry", background="#b2b2b2")
72 e1 = ttk.Entry(style="Search.entry", width=20)
73 e2 = ttk.Entry(style="Search.entry", width=20)
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Value.cpp 451 ValueHandleBase *&Entry = pImpl->ValueHandles[VP];
452 assert(Entry != 0 && "Value doesn't have any handles?");
453 AddToExistingUseList(&Entry);
465 ValueHandleBase *&Entry = Handles[VP];
466 assert(Entry == 0 && "Value really did already have handles?");
467 AddToExistingUseList(&Entry);
501 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
518 ValueHandleBase *Entry = pImpl->ValueHandles[V];
519 assert(Entry && "Value bit set but no entries exist");
530 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugPubTable.h 26 struct Entry {
30 /// An entry of the various gnu_pub* debug sections.
59 std::vector<Entry> Entries;
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 89 FeedContract.Entry._ID,
90 FeedContract.Entry.COLUMN_NAME_ENTRY_ID,
91 FeedContract.Entry.COLUMN_NAME_TITLE,
92 FeedContract.Entry.COLUMN_NAME_LINK,
93 FeedContract.Entry.COLUMN_NAME_PUBLISHED};
208 final List<FeedParser.Entry> entries = feedParser.parse(stream);
215 HashMap<String, FeedParser.Entry> entryMap = new HashMap<String, FeedParser.Entry>();
216 for (FeedParser.Entry e : entries) {
222 Uri uri = FeedContract.Entry.CONTENT_URI; // Get all entrie
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 89 FeedContract.Entry._ID,
90 FeedContract.Entry.COLUMN_NAME_ENTRY_ID,
91 FeedContract.Entry.COLUMN_NAME_TITLE,
92 FeedContract.Entry.COLUMN_NAME_LINK,
93 FeedContract.Entry.COLUMN_NAME_PUBLISHED};
208 final List<FeedParser.Entry> entries = feedParser.parse(stream);
215 HashMap<String, FeedParser.Entry> entryMap = new HashMap<String, FeedParser.Entry>();
216 for (FeedParser.Entry e : entries) {
222 Uri uri = FeedContract.Entry.CONTENT_URI; // Get all entrie
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncAdapter.java 89 FeedContract.Entry._ID,
90 FeedContract.Entry.COLUMN_NAME_ENTRY_ID,
91 FeedContract.Entry.COLUMN_NAME_TITLE,
92 FeedContract.Entry.COLUMN_NAME_LINK,
93 FeedContract.Entry.COLUMN_NAME_PUBLISHED};
208 final List<FeedParser.Entry> entries = feedParser.parse(stream);
215 HashMap<String, FeedParser.Entry> entryMap = new HashMap<String, FeedParser.Entry>();
216 for (FeedParser.Entry e : entries) {
222 Uri uri = FeedContract.Entry.CONTENT_URI; // Get all entrie
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 97 Iterator<Entry> it = sparseIterator();
98 Entry e;
112 Iterator<Entry> it = sparseIterator();
113 Entry e;
124 Iterator<Entry> it = sparseIterator();
125 Entry e;
140 Iterator<Entry> it = sparseIterator();
141 Entry e;
178 Iterator<Entry> it = sparseIterator();
179 Entry e
305 final Entry entry = iterator.next(); local
331 final Entry entry = iterator.next(); local
    [all...]
  /external/libchrome/mojo/core/
handle_table.cc 58 handles_.insert(std::make_pair(handle, Entry(std::move(dispatcher))));
81 std::make_pair(handle, Entry(dispatchers[i].dispatcher)));
156 for (const auto& entry : handles_)
157 handles->push_back(entry.first);
177 // for (const auto& entry : handles_) {
178 // ++handle_count[entry.second.dispatcher->GetType()];
182 // for (const auto& entry : handle_count) {
185 // GetNameForDispatcherType(entry.first));
188 // base::trace_event::MemoryAllocatorDump::kUnitsObjects, entry.second);
194 HandleTable::Entry::Entry() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Vectorize/
VPlanHCFGTest.cpp 23 "entry:\n"
26 " %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]\n"
44 VPBasicBlock *Entry = Plan->getEntry()->getEntryBasicBlock();
45 EXPECT_NE(nullptr, Entry->getSingleSuccessor());
46 EXPECT_EQ(0u, Entry->getNumPredecessors());
47 EXPECT_EQ(1u, Entry->getNumSuccessors());
48 EXPECT_EQ(nullptr, Entry->getCondBit());
50 VPBasicBlock *VecBB = Entry->getSingleSuccessor()->getEntryBasicBlock();
100 "entry:\n"
103 " %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]\n
    [all...]
  /external/v8/src/compiler/
node-cache.cc 25 struct NodeCache<Key, Hash, Pred>::Entry {
36 Entry* old_entries = entries_;
40 entries_ = zone->NewArray<Entry>(num_entries);
41 memset(entries_, 0, sizeof(Entry) * num_entries);
45 Entry* old = &old_entries[i];
51 Entry* entry = &entries_[j]; local
52 if (!entry->value_) {
53 entry->key_ = old->key_;
54 entry->value_ = old->value_
73 Entry* entry = &entries_[hash & (kInitialSize - 1)]; local
83 Entry* entry = &entries_[i]; local
95 Entry* entry = &entries_[hash & (size_ - 1)]; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCContext.cpp 69 // key if we are creating the entry.
70 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
71 MCSymbol *Sym = Entry.getValue();
77 Entry.setValue(Sym);
99 // Ok, the entry doesn't already exist. Have the MCSymbol object itself refer
100 // to the copy of the string that is embedded in the UsedNames entry.
176 const MCSectionMachO *&Entry = Map[Name.str()];
177 if (Entry) return Entry;
180 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/
ArmVExpressFastBoot.c 57 FASTBOOT_PARTITION_LIST *Entry;
60 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead);
61 while (!IsNull (&mPartitionListHead, &Entry->Link)) {
62 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link);
64 RemoveEntryList (&Entry->Link);
65 FreePool (Entry);
67 Entry = NextEntry;
91 // Read size of Partition entry and number of entries from GPT header
163 FASTBOOT_PARTITION_LIST *Entry;
204 // Read the GPT partition entry array into memory so we can get the partition names
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapTestSuiteBuilder.java 57 import java.util.Map.Entry;
69 TestMultimapGenerator<K, V, M>, M, Map.Entry<K, V>> {
106 ? extends OneSizeTestContainerGenerator<M, Map.Entry<K, V>>>
141 extends OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
152 extends OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
163 OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
174 OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
190 OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
283 for (Map.Entry<Feature<?>, Feature<?>> entry : GET_FEATURE_MAP.entries())
347 Map.Entry<K, Collection<V>> entry = (Entry<K, Collection<V>>) o; local
    [all...]
  /external/v8/src/ast/
modules.cc 36 Entry* entry = new (zone) Entry(loc); local
37 entry->local_name = local_name;
38 entry->import_name = import_name;
39 entry->module_request = AddModuleRequest(module_request, specifier_loc);
40 AddRegularImport(entry);
48 Entry* entry = new (zone) Entry(loc) local
63 Entry* entry = new (zone) Entry(loc); local
77 Entry* entry = new (zone) Entry(loc); local
88 Entry* entry = new (zone) Entry(loc); local
198 Entry* entry = local
211 Entry* entry = it->second; local
255 Entry* entry = it->second; local
268 Entry* entry = elem.second; local
322 const Entry* entry = FindDuplicateExport(zone); local
333 const Entry* entry = elem.second; local
    [all...]
  /external/v8/src/base/
hashmap.h 15 #include "src/base/hashmap-entry.h"
30 typedef TemplateHashMapEntry<Key, Value> Entry;
50 // If an entry with matching key is found, returns that entry.
52 Entry* Lookup(const Key& key, uint32_t hash) const;
54 // If an entry with matching key is found, returns that entry.
55 // If no matching entry is found, a new entry is inserted with
57 Entry* LookupOrInsert(const Key& key, uint32_t hash
164 Entry* entry = Probe(key, hash); local
184 Entry* entry = Probe(key, hash); local
197 Entry* entry = Probe(key, hash); local
    [all...]
  /art/libdexfile/dex/
type_lookup_table.cc 40 std::unique_ptr<Entry[]> owned_entries(new Entry[size]);
41 Entry* entries = owned_entries.get();
43 static_assert(alignof(Entry) == 4u, "Expecting Entry to be 4-byte aligned.");
44 const uint32_t mask = Entry::GetMask(mask_bits);
56 entries[pos] = Entry(str_id.string_data_off_, hash, class_def_idx, mask_bits);
69 // Find the last entry in the chain.
76 // Find an empty entry for insertion.
81 // Insert and chain the new entry
105 const Entry* entry = &entries_[pos]; local
    [all...]
  /art/runtime/interpreter/
interpreter_cache.cc 25 data_.fill(Entry{});
  /cts/tools/release-parser/tests/src/com/android/cts/releaseparser/
ApkParserTest.java 78 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
81 Entry fileEntry = fileEntryBuilder.build();
82 Entry.Builder expectedfileEntryBuilder = Entry.newBuilder();
91 "ApkParser does not return the same Entry of %s as %s.\n%s",
  /device/linaro/bootloader/edk2/ArmPkg/Library/DefaultExceptionHandlerLib/
DefaultExceptionHandlerUefi.c 23 it came from. As long as the PE/COFF image contains a debug directory entry a
45 UINTN Entry;
59 for (Entry = 0; Entry < DebugTableHeader->TableSize; Entry++, DebugTable++) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/Bds/
Bds.h 76 EFI_BDS_ENTRY Entry;
91 Entry - The entry point to BDS. This call does not take any parameters,
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Library/
EblCmdLib.h 28 IN const EBL_COMMAND_TABLE *Entry
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Bds.h 67 EFI_BDS_ENTRY Entry;
  /external/grpc-grpc/src/core/lib/slice/
slice_weak_hash_table.h 29 /// This entries in this table are weak: an entry may be removed at any time due
59 const auto& entry = entries_[idx]; local
60 return grpc_slice_eq(entry.key(), key) ? entry.value() : nullptr;
76 class Entry {
78 Entry() = default;
79 ~Entry() {
84 /// Return the entry's value, or null if unset.
90 /// Set the \a key and \a value (which is moved) for the entry.
104 Entry entries_[Size]
    [all...]

Completed in 687 milliseconds

1 2 3 4 5 6 78 91011>>