HomeSort by relevance Sort by last modified time
    Searched full:maps (Results 176 - 200 of 3395) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Email/tests/src/com/android/email/
MockSharedPreferences.java 19 import com.google.common.collect.Maps;
33 private HashMap<String, Object> mValues = Maps.newHashMap();
34 private HashMap<String, Object> mTempValues = Maps.newHashMap();
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoLoadingTestCase.java 23 import com.google.android.collect.Maps;
36 private Map<Integer, PhotoEntry> photoResourceCache = Maps.newHashMap();
44 Map<PhotoSize, byte[]> photoMap = Maps.newHashMap();
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
MockSharedPreferences.java 21 import com.google.android.collect.Maps;
33 private HashMap<String, Object> mValues = Maps.newHashMap();
34 private HashMap<String, Object> mTempValues = Maps.newHashMap();
  /system/extras/ksmutils/
ksminfo.c 61 static int read_pages(struct ksm_pages *kp, pm_map_t **maps, size_t num_maps, uint8_t pr_flags);
74 pm_map_t **maps; local
159 error = pm_process_maps(proc, &maps, &num_maps);
167 if (read_pages(&kp, maps, num_maps, pr_flags) < 0) {
168 free(maps);
174 free(maps);
189 static int read_pages(struct ksm_pages *kp, pm_map_t **maps, size_t num_maps, uint8_t pr_flags) {
210 pid = pm_process_pid(maps[0]->proc);
211 ker = maps[0]->proc->ker;
231 error = pm_map_pagemap(maps[i], &pagemap, &map_len)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractMultimapTest.java 544 Maps.immutableEntry("foo", 1),
545 Maps.immutableEntry("foo", nullValue()),
546 Maps.immutableEntry(nullKey(), 3));
603 Maps.immutableEntry("foo", multimap.get("foo"))));
605 Maps.immutableEntry("bar", multimap.get("foo"))));
607 Maps.immutableEntry("bar", null)));
609 Maps.immutableEntry("foo", null)));
611 Maps.immutableEntry("foo", asList(1, 4))));
652 assertFalse(entries.contains(Maps.immutableEntry("foo", 3)));
    [all...]
SortedMapsTest.java 25 import com.google.common.collect.Maps.EntryTransformer;
58 SortedMap.class, Maps.<String, String>newTreeMap());
92 // doesn't override Maps.FilteredEntryMap, which is already tested.
104 SortedMap<Integer, String> unfiltered = Maps.newTreeMap(comparator);
133 SortedMap<Integer, String> unfiltered = Maps.newTreeMap(comparator);
163 = Maps.newTreeMap(Ordering.natural().nullsFirst());
ForMapMultimapAsMapImplementsMapTest.java 40 Map<String, Integer> map = Maps.newHashMap();
45 Map<String, Integer> map = Maps.newHashMap();
  /development/tools/idegen/src/com/android/idegen/
ModuleCache.java 20 import com.google.common.collect.Maps;
40 HashMap<String, Module> modulesByName = Maps.newHashMap();
  /external/chromium/net/url_request/
url_request_filter.h 76 // Maps hostnames to factories. Hostnames take priority over URLs.
79 // Maps URLs to factories.
  /external/chromium_org/base/files/
memory_mapped_file.h 27 // Opens an existing file and maps it into memory. Access is restricted to
38 // Opens an existing file and maps it as an image section. Please refer to
  /external/chromium_org/content/browser/devtools/
devtools_manager_impl.h 82 // These two maps are for tracking dependencies between inspected contents and
87 // put into these maps and removes them when they are closing.
  /external/chromium_org/net/cert/
cert_status_flags.h 54 // Maps a network error code to the equivalent certificate status flag. If
58 // Maps the most serious certificate error in the certificate status flags
  /external/chromium_org/net/url_request/
url_request_filter.h 88 // Maps hostnames to factories. Hostnames take priority over URLs.
91 // Maps URLs to factories.
  /external/chromium_org/third_party/jstemplate/
jstemplate_jsunit.html 46 <div id="t3" jsvalues="$href:'http://maps.google.com/'">
58 <div id="t4a" jsvalues="$href:'http://maps.google.com/'">
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
area_code_map.h 37 // A utility that maps phone number prefixes to a string describing the
56 // area_codes maps phone number prefixes to geographical area description.
  /external/chromium_org/third_party/re2/re2/
unicode_casefold.h 21 // 'A' maps to 'A'+32, 'B' maps to 'B'+32, etc.
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
sysinfo.h 90 // A ProcMapsIterator abstracts access to /proc/maps for a given
105 // FreeBSD requires us to read all of the maps file at once, so
123 // Iterate through maps_backing instead of maps if use_maps_backing
138 // Writes the "canonical" form of the /proc/xxx/maps info for a single
143 // "canonical" form of the line (taken from linux's /proc/xxx/maps):
160 // Find the next entry in /proc/maps; return true if found or false
218 int fd_; // filehandle on /proc/*/maps
223 bool using_maps_backing_; // true if we are looking at maps_backing instead of maps.
  /external/chromium_org/third_party/tcmalloc/chromium/src/
deep-heap-profile.h 85 // Bytes of memory which were not recognized with /proc/<pid>/maps.
90 // Regions which contain nothing in the last column of /proc/<pid>/maps.
94 // Regions which contain file paths in the last column of /proc/<pid>/maps.
98 // Bytes of memory which is labeled [stack] in /proc/<pid>/maps.
103 // /proc/<pid>/maps.
339 // Snapshots and calculates global stats from /proc/<pid>/maps and pagemap.
378 // Writes reformatted /proc/<pid>/maps into a file "|prefix|.<pid>.maps"
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
sysinfo.h 90 // A ProcMapsIterator abstracts access to /proc/maps for a given
105 // FreeBSD requires us to read all of the maps file at once, so
123 // Iterate through maps_backing instead of maps if use_maps_backing
138 // Writes the "canonical" form of the /proc/xxx/maps info for a single
143 // "canonical" form of the line (taken from linux's /proc/xxx/maps):
160 // Find the next entry in /proc/maps; return true if found or false
218 int fd_; // filehandle on /proc/*/maps
223 bool using_maps_backing_; // true if we are looking at maps_backing instead of maps.
  /external/guava/guava/src/com/google/common/base/
Enums.java 42 * Returns a {@link Function} that maps an {@link Enum} name to the associated
54 * {@link Function} that maps an {@link Enum} name to the associated
  /external/guava/guava/src/com/google/common/cache/
AbstractLoadingCache.java 21 import com.google.common.collect.Maps;
60 Map<K, V> result = Maps.newLinkedHashMap();
  /external/guava/guava/src/com/google/common/collect/
ClassToInstanceMap.java 26 * A map, each entry of which maps a Java
52 * Maps the specified class to the specified value. Does <i>not</i> associate
ForwardingMap.java 145 Maps.putAllImpl(this, map);
200 protected class StandardKeySet extends Maps.KeySet<K, V> {
218 return Maps.containsKeyImpl(this, key);
232 protected class StandardValues extends Maps.Values<K, V> {
250 return Maps.containsValueImpl(this, value);
264 protected abstract class StandardEntrySet extends Maps.EntrySet<K, V> {
292 return Maps.equalsImpl(this, object);
314 return Maps.toStringImpl(this);
HashMultiset.java 76 super(Maps.<E, Count>newHashMapWithExpectedSize(distinctElements));
95 Maps.<E, Count>newHashMapWithExpectedSize(distinctElements));
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
HashBiMap.java 74 Maps.<K, V>newHashMapWithExpectedSize(expectedSize),
75 Maps.<V, K>newHashMapWithExpectedSize(expectedSize));

Completed in 1625 milliseconds

1 2 3 4 5 6 78 91011>>