/external/libcxx/test/std/containers/associative/multimap/multimap.ops/ |
lower_bound1.fail.cpp | 10 // <map> 22 #include <map>
|
lower_bound2.fail.cpp | 10 // <map> 22 #include <map>
|
lower_bound3.fail.cpp | 10 // <map> 22 #include <map>
|
upper_bound1.fail.cpp | 10 // <map> 22 #include <map>
|
upper_bound2.fail.cpp | 10 // <map> 22 #include <map>
|
upper_bound3.fail.cpp | 10 // <map> 22 #include <map>
|
/external/libcxx/test/std/containers/unord/unord.map/ |
compare.pass.cpp | 41 MapT map; local 42 Iter it = map.find(Key(0)); 43 assert(it == map.end()); 44 std::pair<Iter, bool> result = map.insert(std::make_pair(Key(0), 42));
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
BasicMDCAdapter.java | 30 import java.util.Map; 46 private InheritableThreadLocal<Map<String, String>> inheritableThreadLocal = new InheritableThreadLocal<Map<String, String>>(); 62 * the <code>key</code> parameter into the current thread's context map. 66 * If the current thread does not have a context map it is created as a side 76 Map<String, String> map = (Map<String, String>) inheritableThreadLocal.get(); local 77 if (map == null) { 78 map = Collections.<String, String> synchronizedMap(new HashMap<String, String>()) 100 Map<String, String> map = (Map<String, String>) inheritableThreadLocal.get(); local 110 Map<String, String> map = (Map<String, String>) inheritableThreadLocal.get(); local 130 Map<String, String> map = (Map<String, String>) inheritableThreadLocal.get(); local 157 Map<String, String> map = Collections.<String, String> synchronizedMap(new HashMap<String, String>(contextMap)); local [all...] |
/external/valgrind/none/tests/solaris/ |
stack_prot.c | 10 prxmap_t map[32]; local 27 items = fread(map, sizeof(map[0]), ARRAY_LENGTH(map), fi); 28 if (items != ARRAY_LENGTH(map)) { 38 if (map[i].pr_vaddr <= local 39 && local < map[i].pr_vaddr + map[i].pr_size) { 42 if ((map[i].pr_mflags & (MA_READ | MA_WRITE | MA_EXEC))
|
/external/webrtc/webrtc/modules/audio_coding/include/ |
audio_coding_module_typedefs.h | 14 #include <map>
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_slice_group_map.h | 53 u32 *map,
|
/frameworks/base/test-runner/src/android/test/ |
SimpleCache.java | 20 import java.util.Map; 24 private Map<K, V> map = new HashMap<K, V>(); field in class:SimpleCache 29 if (map.containsKey(key)) { 30 return map.get(key); 33 map.put(key, value);
|
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/ |
BracketObject.java | 21 public HashMap<String, String> map = new HashMap<>(); field in class:BracketObject
|
/libcore/luni/src/main/java/libcore/util/ |
BasicLruCache.java | 20 import java.util.Map; 27 private final LinkedHashMap<K, V> map; field in class:BasicLruCache 35 this.map = new LinkedHashMap<K, V>(0, 0.75f, true); 51 result = map.get(key); 61 // NOTE: Another thread might have already inserted a value for |key| into the map. 63 // equal keys. We will however attempt to trim the map twice, but that shouldn't be 67 map.put(key, result); 89 V previous = map.put(key, value); 95 while (map.size() > maxSize) { 96 Map.Entry<K, V> toEvict = map.eldest() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
default.pass.cpp | 10 // <map> 12 // class map 14 // map(); 16 #include <map> 24 std::map<int, double> m; 30 std::map<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> m; 35 std::map<int, double> m = {};
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue7083.go | 7 func f(m map[int]*string, i int) { 14 m := map[int]*string{}
|
issue7214.go | 11 var _ = map[interface{}]int{2: 1, 2: 1} // ERROR "duplicate key" 12 var _ = map[interface{}]int{int(2): 1, int16(2): 1} 13 var _ = map[interface{}]int{int16(2): 1, int16(2): 1} // ERROR "duplicate key" 17 var _ = map[interface{}]int{"a": 1, "a": 1} // ERROR "duplicate key" 18 var _ = map[interface{}]int{"a": 1, S("a"): 1} 19 var _ = map[interface{}]int{S("a"): 1, S("a"): 1} // ERROR "duplicate key" 29 var _ = map[I]int{N(0): 1, N(2): 1} 30 var _ = map[I]int{N(2): 1, N(2): 1} // ERROR "duplicate key"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue7083.go | 7 func f(m map[int]*string, i int) { 14 m := map[int]*string{}
|
issue7214.go | 11 var _ = map[interface{}]int{2: 1, 2: 1} // ERROR "duplicate key" 12 var _ = map[interface{}]int{int(2): 1, int16(2): 1} 13 var _ = map[interface{}]int{int16(2): 1, int16(2): 1} // ERROR "duplicate key" 17 var _ = map[interface{}]int{"a": 1, "a": 1} // ERROR "duplicate key" 18 var _ = map[interface{}]int{"a": 1, S("a"): 1} 19 var _ = map[interface{}]int{S("a"): 1, S("a"): 1} // ERROR "duplicate key" 29 var _ = map[I]int{N(0): 1, N(2): 1} 30 var _ = map[I]int{N(2): 1, N(2): 1} // ERROR "duplicate key"
|
/prebuilts/misc/common/swig/include/2.0.11/d/ |
std_map.i | 4 * SWIG typemaps for std::map 10 // std::map 14 #include <map> 22 template<class K, class T> class map { 29 map(); 30 map(const map<K,T> &); 37 std::map<K,T >::iterator i = self->find(key); 47 std::map<K,T >::iterator i = self->find(key); 54 std::map<K,T >::iterator i = self->find(key) [all...] |
/prebuilts/misc/common/swig/include/2.0.11/go/ |
std_map.i | 4 * SWIG typemaps for std::map 10 // std::map 14 #include <map> 23 template<class K, class T> class map { 30 map(); 31 map(const map<K,T> &); 38 std::map<K,T >::iterator i = self->find(key); 48 std::map<K,T >::iterator i = self->find(key); 55 std::map<K,T >::iterator i = self->find(key) [all...] |
/prebuilts/misc/common/swig/include/2.0.11/lua/ |
std_map.i | 4 * SWIG typemaps for std::map 10 // std::map 14 #include <map> 23 template<class K, class T> class map { 30 map(); 31 map(const map<K,T> &); 38 std::map<K,T >::iterator i = self->find(key); 48 std::map<K,T >::iterator i = self->find(key); 55 std::map<K,T >::iterator i = self->find(key) [all...] |
/system/extras/perfprofd/ |
configreader.h | 22 #include <map> 61 std::map<std::string, values> u_info; 62 std::map<std::string, unsigned> u_entries; 63 std::map<std::string, std::string> s_entries;
|
/external/mesa3d/src/mesa/vbo/ |
vbo_exec_eval.c | 39 exec->eval.map1[attr].map = NULL; 45 exec->eval.map2[attr].map = NULL; 49 struct gl_1d_map *map ) 52 if (!exec->eval.map1[attr].map) { 53 exec->eval.map1[attr].map = map; 59 struct gl_2d_map *map ) 62 if (!exec->eval.map2[attr].map) { 63 exec->eval.map2[attr].map = map; 147 struct gl_1d_map *map = exec->eval.map1[attr].map; local 167 struct gl_1d_map *map = exec->eval.map1[0].map; local 192 struct gl_2d_map *map = exec->eval.map2[attr].map; local 215 struct gl_2d_map *map = exec->eval.map2[0].map; local [all...] |
/external/freetype/src/gzip/ |
zconf.h | 259 # pragma map(deflateInit_,"DEIN") 260 # pragma map(deflateInit2_,"DEIN2") 261 # pragma map(deflateEnd,"DEEND") 262 # pragma map(inflateInit_,"ININ") 263 # pragma map(inflateInit2_,"ININ2") 264 # pragma map(inflateEnd,"INEND") 265 # pragma map(inflateSync,"INSY") 266 # pragma map(inflateSetDictionary,"INSEDI") 267 # pragma map(inflate_blocks,"INBL") 268 # pragma map(inflate_blocks_new,"INBLNE" [all...] |