HomeSort by relevance Sort by last modified time
    Searched refs:entries (Results 276 - 300 of 1273) sorted by null

<<11121314151617181920>>

  /external/guava/guava-tests/test/com/google/common/collect/
MapConstraintsTest.java 233 ASSERT.that(ImmutableList.copyOf(multimap.entries()))
234 .is(ImmutableList.copyOf(constrained.entries()));
243 ASSERT.that(multimap.entries()).hasContentsInOrder(
273 assertFalse(multimap.entries() instanceof Set);
286 assertFalse(multimap.entries() instanceof Set);
385 constrained.entries().add(Maps.immutableEntry(TEST_KEY, 1));
389 constrained.entries().addAll(Arrays.asList(
410 ASSERT.that(ImmutableList.copyOf(multimap.entries()))
411 .is(ImmutableList.copyOf(constrained.entries()));
477 Set<Map.Entry<String, Integer>> entries = constrained.entrySet() local
526 Collection<Map.Entry<String, Integer>> entries = constrained.entries(); local
540 Collection<Map.Entry<String, Integer>> entries = constrained.entries(); local
554 Set<Map.Entry<String, Collection<Integer>>> entries local
569 Set<Map.Entry<String, Collection<Integer>>> entries local
    [all...]
  /art/runtime/
reference_table.h 57 static void Dump(std::ostream& os, Table& entries)
  /bionic/libc/kernel/uapi/linux/netfilter/
x_tables.h 110 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) ({ unsigned int __i, __n; int __ret = 0; type *__entry; for (__i = 0, __n = 0; __i < (size); __i += __entry->next_offset, __n++) { __entry = (void *)(entries) + __i; if (__n < n) continue; __ret = fn(__entry , ## args); if (__ret != 0) break; } __ret; })
111 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebtables.h 54 char __user *entries; member in struct:ebt_replace
66 char *entries; member in struct:ebt_replace_kernel
167 #define EBT_ENTRY_ITERATE(entries, size, fn, args...) ({ unsigned int __i; int __ret = 0; struct ebt_entry *__entry; for (__i = 0; __i < (size);) { __entry = (void *)(entries) + __i; __ret = fn(__entry , ## args); if (__ret != 0) break; if (__entry->bitmask != 0) __i += __entry->next_offset; else __i += sizeof(struct ebt_entries); } if (__ret == 0) { if (__i != (size)) __ret = -EINVAL; } __ret; })
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 104 List<LocationEntry> entries = dataManager.getPoints(params[0]); local
105 if (entries != null && !entries.isEmpty()) {
108 for (LocationEntry entry : entries) {
123 Log.d(TAG, "No Entries found for that date");
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 104 List<LocationEntry> entries = dataManager.getPoints(params[0]); local
105 if (entries != null && !entries.isEmpty()) {
108 for (LocationEntry entry : entries) {
123 Log.d(TAG, "No Entries found for that date");
  /development/ndk/platforms/android-L/include/linux/netfilter/
x_tables.h 110 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) ({ unsigned int __i, __n; int __ret = 0; type *__entry; for (__i = 0, __n = 0; __i < (size); __i += __entry->next_offset, __n++) { __entry = (void *)(entries) + __i; if (__n < n) continue; __ret = fn(__entry , ## args); if (__ret != 0) break; } __ret; })
111 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
  /development/ndk/platforms/android-L/include/linux/netfilter_bridge/
ebtables.h 54 char __user *entries; member in struct:ebt_replace
66 char *entries; member in struct:ebt_replace_kernel
167 #define EBT_ENTRY_ITERATE(entries, size, fn, args...) ({ unsigned int __i; int __ret = 0; struct ebt_entry *__entry; for (__i = 0; __i < (size);) { __entry = (void *)(entries) + __i; __ret = fn(__entry , ## args); if (__ret != 0) break; if (__entry->bitmask != 0) __i += __entry->next_offset; else __i += sizeof(struct ebt_entries); } if (__ret == 0) { if (__i != (size)) __ret = -EINVAL; } __ret; })
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/
PhoneMainActivity.java 104 List<LocationEntry> entries = dataManager.getPoints(params[0]); local
105 if (entries != null && !entries.isEmpty()) {
108 for (LocationEntry entry : entries) {
123 Log.d(TAG, "No Entries found for that date");
  /external/chromium_org/chrome/browser/android/
recently_closed_tabs_bridge.cc 39 const TabRestoreService::Entries& entries,
43 for (TabRestoreService::Entries::const_iterator it = entries.begin();
44 it != entries.end() && added_count < max_tab_count; ++it) {
84 AddTabsToList(env, tab_restore_service_->entries(), jtabs_list,
  /external/chromium_org/chrome/browser/chromeos/drive/
debug_info_collector.h 21 scoped_ptr<ResourceEntryVector> entries)>
  /external/chromium_org/storage/browser/fileapi/
file_system_dir_url_request_job.h 55 const std::vector<DirectoryEntry>& entries,
  /external/chromium_org/sync/syncable/
syncable_delete_journal.h 24 // DeleteJournal manages deleted entries that are not in sync directory until
47 // Return entries of specified type in |delete_journals_|. This should be
58 // Purge entries of specified type in |delete_journals_| if their handles are
60 // |to_purge| should contain handles of the entries whose deletions are
65 // Move entries in |delete_journals_| whose types are in
72 // Add |entries| to |delete_journals_| regardless of their SERVER_IS_DEL
75 // * batch add entries of a data type with unrecoverable error to delete
78 void AddJournalBatch(BaseTransaction* trans, const EntryKernelSet& entries);
84 // Contains deleted entries that may not be persisted in native models. And
85 // in case of unrecoverable error, all purged entries are moved here fo
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
InjectedStyleSheets.h 66 const InjectedStyleSheetEntryVector& entries() const { return m_entries; } function in class:blink::InjectedStyleSheets
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebFileSystemCallbacks.cpp 113 void WebFileSystemCallbacks::didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore)
116 for (size_t i = 0; i < entries.size(); ++i)
117 m_private->callbacks()->didReadDirectoryEntry(entries[i].name, entries[i].isDirectory);
  /external/chromium_org/third_party/leveldatabase/src/db/
table_cache.h 23 TableCache(const std::string& dbname, const Options* options, int entries);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_screen_cache.h 109 /* Entries with unused buffers, ordered from most to least recently used
113 /* Entries with buffers still in validate lists (2) */
116 /** Empty entries (1) */
119 /** The actual storage for the entries */
120 struct svga_host_surface_cache_entry entries[SVGA_HOST_SURFACE_CACHE_SIZE]; member in struct:svga_host_surface_cache
  /external/chromium_org/third_party/ots/src/
metrics.h 31 std::vector<std::pair<uint16_t, int16_t> > entries; member in struct:ots::OpenTypeMetricsTable
  /external/chromium_org/third_party/skia/tests/
RandomTest.cpp 108 unsigned int entries[kNumEntries]; local
111 memset(entries, 0, sizeof(unsigned int)*kNumEntries);
129 entries[index] |= (0x1 << entry_shift);
132 // count entries
135 unsigned int entry = entries[i];
  /external/deqp/framework/common/
tcuFunctionLibrary.hpp 60 StaticFunctionLibrary (const Entry* entries, int numEntries);
  /external/guava/guava/src/com/google/common/collect/
SetMultimap.java 32 * each return a {@link Set} of values, while {@link #entries} returns a {@code
33 * Set} of map entries. Though the method signature doesn't say so explicitly,
81 Set<Map.Entry<K, V>> entries(); method in interface:SetMultimap
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
BiMapGenerators.java 71 Entry<String, String>[] entries) {
73 for (Entry<String, String> entry : entries) {
110 Entry<String, String>[] entries) {
112 for (Entry<String, String> entry : entries) {
  /external/harfbuzz_ng/util/
options.cc 105 GOptionEntry entries[] = local
112 g_option_context_add_main_entries (context, entries, NULL);
138 option_parser_t::add_group (GOptionEntry *entries,
146 g_option_group_add_entries (group, entries);
260 GOptionEntry entries[] = local
270 parser->add_group (entries,
280 GOptionEntry entries[] = local
298 parser->add_group (entries,
372 GOptionEntry entries[] = local
379 parser->add_group (entries,
389 GOptionEntry entries[] = local
419 GOptionEntry entries[] = local
656 GOptionEntry entries[] = local
    [all...]
  /external/iproute2/include/linux/netfilter/
x_tables.h 146 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
154 __entry = (void *)(entries) + __i; \
166 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
167 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
  /external/iptables/include/linux/netfilter/
x_tables.h 146 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
154 __entry = (void *)(entries) + __i; \
166 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
167 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)

Completed in 2245 milliseconds

<<11121314151617181920>>