/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
initializer_list.pass.cpp | 10 // <map> 12 // class map 14 // map(initializer_list<value_type> il); 16 #include <map> 26 std::map<int, double> m = 47 std::map<int, double, std::less<int>, min_allocator<V>> m =
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/ |
clear.pass.cpp | 10 // <map> 12 // class map 16 #include <map> 24 typedef std::map<int, double> M; 44 typedef std::map<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
|
insert_initializer_list.pass.cpp | 10 // <map> 12 // class map 16 #include <map> 26 std::map<int, double> m = 49 std::map<int, double, std::less<int>, min_allocator<V>> m =
|
/external/guava/guava/src/com/google/common/base/ |
Functions.java | 26 import java.util.Map; 93 * Returns a function which performs a map lookup. The returned function throws an {@link 94 * IllegalArgumentException} if given a key that does not exist in the map. 96 public static <K, V> Function<K, V> forMap(Map<K, V> map) { 97 return new FunctionForMapNoDefault<K, V>(map); 101 final Map<K, V> map; field in class:Functions.FunctionForMapNoDefault 103 FunctionForMapNoDefault(Map<K, V> map) { 148 final Map<K, ? extends V> map; field in class:Functions.ForMapWithDefault [all...] |
/external/guava/guava/src/com/google/common/collect/ |
WellBehavedMap.java | 21 import java.util.Map; 35 private final Map<K, V> delegate; 38 private WellBehavedMap(Map<K, V> delegate) { 43 * Wraps the given map into a {@code WellBehavedEntriesMap}, which 48 static <K, V> WellBehavedMap<K, V> wrap(Map<K, V> delegate) { 52 @Override protected Map<K, V> delegate() { 66 extends Sets.InvertibleFunction<K, Map.Entry<K, V>> { 67 final Map<K, V> map; field in class:WellBehavedMap.KeyToEntryConverter 69 KeyToEntryConverter(Map<K, V> map) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_blit.c | 90 info.aux_data = src->map->sw_data->aux_data; 92 info.table = src->map->table; 94 RunBlit = src->map->sw_data->blit; 241 surface->map->sw_blit = NULL; 245 if ( surface->map->identity ) { 250 if ( surface->map->dst->flags & SDL_HWSURFACE ) { 263 if ( surface->map->dst->flags & SDL_HWSURFACE ) { 278 video->CheckHWBlit(this, surface, surface->map->dst); 289 video->CheckHWBlit(this, surface, surface->map->dst); 304 if ( surface->map->identity && blit_index == 0 ) [all...] |
/frameworks/base/core/tests/coretests/src/android/provider/ |
SmsProviderTest.java | 54 ContentValues map = new ContentValues(); local 55 map.put("address", "+15045551337"); 56 map.put("read", 0); 61 map.put("body", "Test " + i + " !"); 62 map.put("date", dates[i]); 63 urls[i] = contentResolver.insert(Sms.Inbox.CONTENT_URI, map);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/ |
ExportFieldsPart.java | 73 HashMap<String, Control> map = getNameToField(); local 74 map.put("package", packageField); //$NON-NLS-1$ 75 map.put("projects", projectsField); //$NON-NLS-1$ 76 map.put("versionCode", versionCodeField); //$NON-NLS-1$ 77 map.put("_key.store", keyStoreField); //$NON-NLS-1$ 78 map.put("_key.alias", keyAliasField); //$NON-NLS-1$
|
/external/apache-http/src/org/apache/http/protocol/ |
HttpRequestHandlerRegistry.java | 34 import java.util.Map; 37 * Maintains a map of HTTP request handlers keyed by a request URI pattern. 67 public void setHandlers(final Map map) { 68 matcher.setHandlers(map);
|
/external/chromium/chrome/browser/chromeos/ |
sms_observer.h | 9 #include <map> 29 typedef std::map<std::string, SMSHandler*> ObserversMap;
|
/external/chromium/chrome/browser/extensions/ |
autoupdate_interceptor.h | 9 #include <map> 41 std::map<GURL, FilePath> responses_;
|
extension_tab_id_map.h | 9 #include <map> 15 // This class keeps track of a map between renderer IDs and tab/window IDs, for 28 // if we have the IDs in our map. Called on the IO thread. 39 typedef std::map<RenderId, TabAndWindowId> TabAndWindowIdMap; 44 // Adds or removes a render view from our map.
|
extensions_quota_service.h | 19 #include <map> 50 typedef std::map<std::string, QuotaLimitHeuristics> FunctionHeuristicsMap; 59 void PurgeFunctionHeuristicsMap(FunctionHeuristicsMap* map); 64 // key for the mapping. As an extension invokes functions, the map keeps 67 std::map<std::string, FunctionHeuristicsMap> function_heuristics_; 77 // A QuotaLimitHeuristic is two things: 1, A heuristic to map extension 145 explicit QuotaLimitHeuristic(const Config& config, BucketMapper* map); 166 // The mapper used in Map. Cannot be NULL. 176 explicit TimedLimit(const Config& config, BucketMapper* map) 177 : QuotaLimitHeuristic(config, map) {} [all...] |
/external/chromium/chrome/browser/history/ |
visit_tracker.h | 9 #include <map> 52 typedef std::map<const void*, TransitionList*> HostList;
|
/external/chromium/chrome/browser/ |
mock_browsing_data_database_helper.h | 9 #include <map> 57 std::map<const std::string, bool> databases_;
|
mock_browsing_data_indexed_db_helper.h | 9 #include <map> 53 std::map<const FilePath::StringType, bool> files_;
|
mock_browsing_data_local_storage_helper.h | 9 #include <map> 53 std::map<const FilePath::StringType, bool> files_;
|
/external/chromium/chrome/browser/policy/ |
policy_map.h | 8 #include <map> 15 // Wrapper class around a std::map<ConfigurationPolicyType, Value*> that 17 // Exposes interesting methods of the underlying std::map. 20 typedef std::map<ConfigurationPolicyType, Value*> PolicyMapType; 29 // Returns NULL if the map does not contain a value for |policy|. 32 // map for the key |policy|.
|
/external/chromium/chrome/browser/sync/glue/ |
extension_data.h | 12 #include <map> 55 typedef std::map<Source, sync_pb::ExtensionSpecifics> SourceDataMap;
|
/external/chromium/chrome/browser/sync/util/ |
extensions_activity_monitor.h | 9 #include <map> 44 typedef std::map<std::string, Record> Records;
|
/external/chromium/chrome/browser/tab_contents/ |
tab_contents_ssl_helper.h | 9 #include <map> 41 std::map<int, linked_ptr<SSLAddCertData> > request_id_to_add_cert_data_;
|
/external/chromium/net/base/ |
ssl_client_auth_cache.h | 10 #include <map> 54 typedef std::map<AuthCacheKey, AuthCacheValue> AuthCacheMap; 56 // internal representation of cache, an STL map.
|
/external/chromium/net/socket_stream/ |
socket_stream_job_manager.h | 9 #include <map> 33 typedef std::map<std::string, SocketStreamJob::ProtocolFactory*> FactoryMap;
|
/external/chromium/testing/ |
multiprocess_func_list.cc | 7 #include <map> 10 // The information is accessed via a global map. 15 typedef std::map<std::string, ChildFunctionPtr> MultiProcessTestMap; 17 // Retrieve a reference to the global 'func name' -> func ptr map.
|
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
muc.h | 31 #include <map> 49 typedef std::map<std::string, MucStatus> MemberMap; 52 // CallClient, so we completely expose the map.
|