HomeSort by relevance Sort by last modified time
    Searched refs:map (Results 126 - 150 of 7461) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libcxx/test/containers/associative/map/map.access/
Android.mk 17 test_makefile := external/libcxx/test/containers/associative/map/map.access/Android.mk
19 test_name := containers/associative/map/map.access/index_rv_key
23 test_name := containers/associative/map/map.access/at
27 test_name := containers/associative/map/map.access/iterator
31 test_name := containers/associative/map/map.access/index_tupl
    [all...]
  /dalvik/libdex/
DexDataMap.h 18 * Verification-time map of data section items
27 u4 count; /* number of items currently in the map */
41 void dexDataMapFree(DexDataMap* map);
44 * Add a new element to the map. The offset must be greater than the
47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type);
53 int dexDataMapGet(DexDataMap* map, u4 offset);
56 * Verify that there is an entry in the map, mapping the given offset to
60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type);
65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) {
70 return dexDataMapVerify(map, offset, type)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DictionaryExtensions.cs 45 public static bool containsKey(IDictionary map, object key) {
46 return map.Contains(key);
50 public static object get(IDictionary map, object key) {
51 return map[key];
55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) {
57 if (map.TryGetValue(key, out value))
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) {
69 if (map.TryGetValue(key, out value))
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) {
80 if (map.TryGetValue(key, out value)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DictionaryExtensions.cs 44 public static bool containsKey( this IDictionary map, object key )
46 return map.Contains( key );
50 public static object get( this IDictionary map, object key )
52 return map[key];
55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key )
58 if ( map.TryGetValue( key, out value ) )
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key )
71 if ( map.TryGetValue( key, out value ) )
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key )
83 if ( map.TryGetValue( key, out value )
    [all...]
  /external/chromium_org/net/quic/
quic_utils_chromium_test.cc 7 #include <map>
11 using std::map;
18 map<int, int> m;
25 const map<int, int>& const_m = m;
32 std::map<int, int> m;
37 // ASSERT_DEATH(FindOrDie(m, 8), "Map key not found: 8");
43 // Make sure we can lookup values in a const map.
44 const map<int, int>& const_m = m;
  /external/oprofile/daemon/liblegacy/
opd_mapping.h 62 * @param proc process to add map to
84 * @param map map to check
88 * of the map @map, %0 otherwise.
90 inline static int opd_is_in_map(struct opd_map * map, unsigned long eip)
92 return (eip >= map->start && eip < map->end);
97 * opd_map_offset - return offset of sample against map
98 * @param map map to us
    [all...]
  /system/core/libbacktrace/
BacktraceMap.cpp 50 bool BacktraceMap::ParseLine(const char* line, backtrace_map_t* map) {
74 map->start = start;
75 map->end = end;
76 map->flags = PROT_NONE;
78 map->flags |= PROT_READ;
81 map->flags |= PROT_WRITE;
84 map->flags |= PROT_EXEC;
90 map->name = line+name_pos;
91 if (!map->name.empty() && map->name[map->name.length()-1] == '\n')
123 backtrace_map_t map; local
141 BacktraceMap* map = new BacktraceMap(pid); local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
formatutils11.cpp 37 // For sized GL internal formats, there is only one corresponding D3D11 format. This map type allows
41 typedef std::map<GLenum, D3D11ES3FormatInfo> D3D11ES3FormatMap;
45 D3D11ES3FormatMap map; local
48 map.insert(D3D11ES3FormatPair(GL_NONE, D3D11ES3FormatInfo(DXGI_FORMAT_UNKNOWN, DXGI_FORMAT_UNKNOWN, DXGI_FORMAT_UNKNOWN, DXGI_FORMAT_UNKNOWN)));
49 map.insert(D3D11ES3FormatPair(GL_R8, D3D11ES3FormatInfo(DXGI_FORMAT_R8_UNORM, DXGI_FORMAT_R8_UNORM, DXGI_FORMAT_R8_UNORM, DXGI_FORMAT_UNKNOWN)));
50 map.insert(D3D11ES3FormatPair(GL_R8_SNORM, D3D11ES3FormatInfo(DXGI_FORMAT_R8_SNORM, DXGI_FORMAT_R8_SNORM, DXGI_FORMAT_UNKNOWN, DXGI_FORMAT_UNKNOWN)));
51 map.insert(D3D11ES3FormatPair(GL_RG8, D3D11ES3FormatInfo(DXGI_FORMAT_R8G8_UNORM, DXGI_FORMAT_R8G8_UNORM, DXGI_FORMAT_R8G8_UNORM, DXGI_FORMAT_UNKNOWN)));
52 map.insert(D3D11ES3FormatPair(GL_RG8_SNORM, D3D11ES3FormatInfo(DXGI_FORMAT_R8G8_SNORM, DXGI_FORMAT_R8G8_SNORM, DXGI_FORMAT_UNKNOWN, DXGI_FORMAT_UNKNOWN)));
53 map.insert(D3D11ES3FormatPair(GL_RGB8, D3D11ES3FormatInfo(DXGI_FORMAT_R8G8B8A8_UNORM, DXGI_FORMAT_R8G8B8A8_UNORM, DXGI_FORMAT_R8G8B8A8_UNORM, DXGI_FORMAT_UNKNOWN)));
54 map.insert(D3D11ES3FormatPair(GL_RGB8_SNORM, D3D11ES3FormatInfo(DXGI_FORMAT_R8G8B8A8_SNORM, (…)
208 D3D11LoadFunctionMap map; local
373 D3D11ES2FormatMap map; local
474 DXGIFormatInfoMap map; local
563 DXGIToESFormatMap map; local
634 DXGIToESFormatMap map = BuildCommonDXGIToESFormatMap(); local
644 DXGIToESFormatMap map = BuildCommonDXGIToESFormatMap(); local
710 D3D11FastCopyMap map; local
738 DepthStencilInfoMap map; local
823 SwizzleInfoMap map; local
850 InternalFormatInitializerMap map; local
869 static const SwizzleInfoMap map = BuildSwizzleInfoMap(); local
899 const SwizzleInfoMap &map = GetSwizzleInfoMap(); local
916 static const InternalFormatInitializerMap map = BuildInternalFormatInitializerMap(); local
1344 const InternalFormatInitializerMap &map = GetInternalFormatInitializerMap(); local
1350 const InternalFormatInitializerMap &map = GetInternalFormatInitializerMap(); local
1402 D3D11VertexFormatInfoMap map; local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H2MapTest.java 17 H2Map map; field in class:H2MapTest
21 map = new H2Map();
26 assertThat(map.getDriverClassName(), equalTo("org.h2.Driver"));
31 assertThat(map.getConnectionString(), equalTo("jdbc:h2:mem:"));
36 assertThat(map.getScrubSQL("autoincrement"), equalTo("auto_increment"));
41 assertThat(map.getScrubSQL("integer"), equalTo("bigint(19)"));
46 map.getScrubSQL("INTEGER PRIMARY KEY AUTOINCREMENT");
51 map.getScrubSQL("INT PRIMARY KEY AUTOINCREMENT");
56 map.getScrubSQL("CHAR PRIMARY KEY AUTOINCREMENT");
61 assertThat(map.getSelectLastInsertIdentity(), equalTo("SELECT IDENTITY();"))
    [all...]
  /external/chromium_org/chrome/browser/
internal_auth_unittest.cc 36 std::map<std::string, std::string> map; local
37 map["key"] = "value";
39 "zapata", map);
42 map["key2"] = "value2";
43 token = InternalAuthGeneration::GeneratePassport("zapata", map);
48 std::map<std::string, std::string> map; local
49 map["key"] = "value";
51 "zapata", map);
62 std::map<std::string, std::string> map; local
99 std::map<std::string, std::string> map; local
112 std::map<std::string, std::string> map; local
139 std::map<std::string, std::string> map; local
171 std::map<std::string, std::string> map; local
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpContext.java 35 import java.util.Map;
49 private Map map = null; field in class:BasicHttpContext
65 if (this.map != null) {
66 obj = this.map.get(id);
78 if (this.map == null) {
79 this.map = new HashMap();
81 this.map.put(id, obj);
88 if (this.map != null) {
89 return this.map.remove(id)
    [all...]
  /external/chromium_org/chrome/browser/install_verification/win/
module_ids.h 8 #include <map>
13 typedef std::map<std::string, size_t> ModuleIDs;
20 // The result is a map of module name digests to module IDs.
  /external/chromium_org/chrome/browser/ui/app_list/search/
history_types.h 8 #include <map>
23 typedef std::map<std::string, KnownResultType> KnownResults;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
popup.css 12 #map {
  /external/chromium_org/net/proxy/
proxy_retry_info.h 8 #include <map>
29 // Map of proxy servers with the associated RetryInfo structures.
31 typedef std::map<std::string, ProxyRetryInfo> ProxyRetryInfoMap;
  /external/chromium_org/sync/internal_api/public/base/
progress_marker_map.h 10 #include <map>
28 typedef std::map<ModelType, std::string> ProgressMarkerMap;
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashMapTest.cpp 41 IntHashMap map; local
42 map.add(1, 2);
43 EXPECT_TRUE(map.begin() != map.end());
44 EXPECT_FALSE(map.begin() == map.end());
46 IntHashMap::const_iterator begin = map.begin();
47 EXPECT_TRUE(begin == map.begin());
48 EXPECT_TRUE(map.begin() == begin);
49 EXPECT_TRUE(begin != map.end())
77 DoubleHashMap map; local
109 OwnPtrHashMap map; local
164 HashMap<RefPtr<DummyRefCounted>, int> map; local
199 IntSimpleMap map; local
    [all...]
  /external/libcxx/test/containers/associative/map/map.special/
Android.mk 17 test_makefile := external/libcxx/test/containers/associative/map/map.special/Android.mk
19 test_name := containers/associative/map/map.special/member_swap
23 test_name := containers/associative/map/map.special/swap_noexcept
27 test_name := containers/associative/map/map.special/non_member_swap
  /external/libcxx/test/containers/associative/multimap/
scary.pass.cpp 10 // <map>
12 // class map class multimap
14 // Extension: SCARY/N2913 iterator compatibility between map and multimap
16 #include <map>
20 typedef std::map<int, int> M1;
  /external/libcxx/test/containers/unord/unord.map/unord.map.elem/
Android.mk 17 test_makefile := external/libcxx/test/containers/unord/unord.map/unord.map.elem/Android.mk
19 test_name := containers/unord/unord.map/unord.map.elem/at
23 test_name := containers/unord/unord.map/unord.map.elem/index_tuple
27 test_name := containers/unord/unord.map/unord.map.elem/index
  /external/libcxx/test/containers/unord/unord.map/unord.map.swap/
Android.mk 17 test_makefile := external/libcxx/test/containers/unord/unord.map/unord.map.swap/Android.mk
19 test_name := containers/unord/unord.map/unord.map.swap/swap_non_member
23 test_name := containers/unord/unord.map/unord.map.swap/swap_noexcept
27 test_name := containers/unord/unord.map/unord.map.swap/db_swap_1
  /external/llvm/lib/Target/R600/
AMDGPUMachineFunction.h 17 #include <map>
26 /// A map to keep track of local memory objects and their offsets within
28 std::map<const GlobalValue *, unsigned> LocalMemoryObjects;
  /libcore/luni/src/test/java/libcore/java/util/
OldLinkedHashMapTest.java 29 LinkedHashMap map = new LinkedHashMap<String, String>(10, 0.75f, true); local
31 map.put("key1", "value1");
32 map.put("key2", "value2");
33 map.put("key3", "value3");
35 Iterator iterator = map.keySet().iterator();
37 map.get(id);
49 LinkedHashMap mapClone = (LinkedHashMap) map.clone();
51 iterator = map.keySet().iterator();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/
scary.pass.cpp 10 // <map>
12 // class map class multimap
14 // Extension: SCARY/N2913 iterator compatibility between map and multimap
16 #include <map>
20 typedef std::map<int, int> M1;
  /ndk/tests/abcc/jni/mman-win32/
test.c 16 void* map = mmap(NULL, 1024, PROT_READ | PROT_WRITE, local
18 if (map == MAP_FAILED)
24 *((unsigned char*)map) = 1;
26 int result = munmap(map, 1024);
36 void* map = mmap(NULL, 1024, PROT_READ, local
38 if (map == MAP_FAILED)
44 *((unsigned char*)map) = 1;
46 int result = munmap(map, 1024);
56 void* map = mmap(NULL, 1024, PROT_WRITE, local
58 if (map == MAP_FAILED)
76 void* map = mmap(NULL, 1024, PROT_READ, local
101 void* map = mmap(NULL, 1024, PROT_READ | PROT_WRITE, MAP_PRIVATE, o, 0); local
136 void* map = mmap(NULL, map_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, o, 0); local
186 void* map = mmap(NULL, map_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, o, 0); local
    [all...]

Completed in 9254 milliseconds

1 2 3 4 56 7 8 91011>>