/external/chromium_org/ppapi/shared_impl/ |
flash_clipboard_format_registry.h | 8 #include <map> 55 // A map of custom format ID to format name. 56 typedef std::map<uint32_t, std::string> FormatMap;
|
/external/chromium_org/remoting/client/ |
key_event_mapper.h | 8 #include <map> 18 // Filtering InputStub which can be used to re-map the USB keycodes of events 45 std::map<uint32,uint32> mapped_keys;
|
/external/chromium_org/sync/internal_api/public/base/ |
model_type_invalidation_map.h | 10 #include <map> 26 // A map between sync data types and their associated invalidation. 27 typedef std::map<ModelType, Invalidation> ModelTypeInvalidationMap;
|
/external/chromium_org/sync/notifier/ |
object_id_invalidation_map.h | 8 #include <map> 25 typedef std::map<invalidation::ObjectId,
|
/external/chromium_org/sync/syncable/ |
parent_child_index.h | 8 #include <map> 54 typedef std::map<syncable::Id, OrderedChildSet*> ParentChildrenMap; 56 // A map of parent IDs to children. 57 // Parents with no children are not included in this map.
|
/external/chromium_org/sync/util/ |
extensions_activity.h | 8 #include <map> 38 typedef std::map<std::string, Record> Records;
|
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/ |
Macro.h | 10 #include <map> 41 typedef std::map<std::string, Macro> MacroSet;
|
/external/chromium_org/third_party/libjingle/source/talk/examples/call/ |
muc.h | 31 #include <map> 49 typedef std::map<std::string, MucPresenceStatus> MemberMap; 52 // CallClient, so we completely expose the map.
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
regexp_cache.h | 40 # include <map> 56 typedef std::map<string, const RegExp*> CacheImpl;
|
/external/chromium_org/third_party/ots/src/ |
cff.h | 10 #include <map> 33 // A map from glyph # to font #. 34 std::map<uint16_t, uint8_t> fd_select;
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/ |
googletest.h | 37 #include <map> 83 map<LogLevel, vector<string> > messages_;
|
/external/chromium_org/ui/base/accelerators/ |
accelerator_manager.h | 9 #include <map> 79 typedef std::map<Accelerator, AcceleratorTargets> AcceleratorMap;
|
/external/chromium_org/ui/views/win/ |
appbar.h | 8 #include <map> 44 typedef std::map<HMONITOR, int> EdgeMap;
|
/external/chromium_org/v8/src/ |
interface.cc | 46 ZoneHashMap* map = Chase()->exports_; local 47 if (map == NULL) return NULL; 49 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false, 89 ZoneHashMap** map = &Chase()->exports_; local 92 if (*map == NULL) 93 *map = new ZoneHashMap(Match, ZoneHashMap::kDefaultHashMapCapacity, 96 ZoneHashMap::Entry* p = (*map)->Lookup(name, hash, !IsFrozen(), allocator); 182 ZoneHashMap* map = that->exports_; local 183 if (map != NULL) { 184 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) 224 ZoneHashMap* map = Chase()->exports_; local [all...] |
/external/clang/test/Parser/ |
cxx0x-for-range.cpp | 7 struct map { struct 16 int foo(map<char*,int> &m) {
|
/external/oprofile/libabi/ |
abi.h | 16 #include <map> 39 std::map<std::string, int> slots;
|
/external/v8/src/ |
interface.cc | 46 ZoneHashMap* map = Chase()->exports_; local 47 if (map == NULL) return NULL; 48 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false); 87 ZoneHashMap** map = &Chase()->exports_; local 88 if (*map == NULL) *map = new ZoneHashMap(Match, 8); 90 ZoneHashMap::Entry* p = (*map)->Lookup(name, hash, !IsFrozen()); 166 ZoneHashMap* map = that->exports_; local 167 if (map != NULL) { 168 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) 206 ZoneHashMap* map = Chase()->exports_; local [all...] |
/external/webrtc/src/system_wrappers/interface/ |
map_wrapper.h | 14 #include <map> 42 // Puts a pointer to anything in the map and associates it with id. Note, id 43 // needs to be unique for all items in the map. 46 // Removes item from map. 49 // Finds item with associated with id and removes it from the map. 52 // Returns the number of elements stored in the map. 55 // Returns a pointer to the first MapItem in the map. 58 // Returns a pointer to the last MapItem in the map. 61 // Returns a pointer to the MapItem stored after item in the map. 64 // Returns a pointer to the MapItem stored before item in the map [all...] |
/frameworks/base/services/java/com/android/server/ |
AttributeCache.java | 101 HashMap<int[], Entry> map = null; local 104 map = pkg.mMap.get(resId); 105 if (map != null) { 106 ent = map.get(styleable); 126 if (map == null) { 127 map = new HashMap<int[], Entry>(); 128 pkg.mMap.put(resId, map); 134 map.put(styleable, ent);
|
/frameworks/rs/cpu_ref/linkloader/include/ |
StubLayout.h | 20 #include <map> 28 std::map<void *, void *> stub_index;
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/ |
TrustletSession.h | 38 #include <map> 45 std::map<uint32_t, CWsm_ptr> buffers;
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Choice.java | 28 import java.util.Map; 65 * So a custom ASN.1 Time choice type should map its notation to Date object. 235 // create map of all identifiers 236 TreeMap<BigInteger, BigInteger> map = new TreeMap<BigInteger, BigInteger>(); local 249 addIdentifier(map, choiceToAdd[0][j], index); 256 addIdentifier(map, t.id, index); 261 addIdentifier(map, t.constrId, index); 266 int size = map.size(); 268 Iterator<Map.Entry<BigInteger, BigInteger>> it = map.entrySet().iterator() [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/profile/ |
map.h | 1 // Profiling map implementation -*- C++ -*- 30 /** @file profile/map.h 44 /// Class std::map wrapper with performance instrumentation. 47 class map class in namespace:__profile 48 : public _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> 50 typedef _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> _Base; 73 map(const _Compare& __comp = _Compare(), function in class:__profile::map 79 map(_InputIterator __first, _InputIterator __last, function in class:__profile::map 85 map(const map& __x function in class:__profile::map 89 map(const _Base& __x) function in class:__profile::map 94 map(map&& __x) function in class:__profile::map 98 map(initializer_list<value_type> __l, function in class:__profile::map [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/profile/ |
map.h | 1 // Profiling map implementation -*- C++ -*- 30 /** @file profile/map.h 44 /// Class std::map wrapper with performance instrumentation. 47 class map class in namespace:__profile 48 : public _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> 50 typedef _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> _Base; 73 map(const _Compare& __comp = _Compare(), function in class:__profile::map 79 map(_InputIterator __first, _InputIterator __last, function in class:__profile::map 85 map(const map& __x function in class:__profile::map 89 map(const _Base& __x) function in class:__profile::map 94 map(map&& __x) function in class:__profile::map 98 map(initializer_list<value_type> __l, function in class:__profile::map [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/profile/ |
map.h | 1 // Profiling map implementation -*- C++ -*- 30 /** @file profile/map.h 44 /// Class std::map wrapper with performance instrumentation. 47 class map class in namespace:__profile 48 : public _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> 50 typedef _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> _Base; 73 map(const _Compare& __comp = _Compare(), function in class:__profile::map 79 map(_InputIterator __first, _InputIterator __last, function in class:__profile::map 85 map(const map& __x function in class:__profile::map 89 map(const _Base& __x) function in class:__profile::map 94 map(map&& __x) function in class:__profile::map 98 map(initializer_list<value_type> __l, function in class:__profile::map [all...] |