Searched refs:testMap (Results 1 – 5 of 5) sorted by relevance
/external/llvm/unittests/ADT/ |
D | StringMapTest.cpp | 20 StringMap<uint32_t> testMap; member in __anon0de595d50111::StringMapTest 30 EXPECT_EQ(0u, testMap.size()); in assertEmptyMap() 31 EXPECT_TRUE(testMap.empty()); in assertEmptyMap() 34 EXPECT_TRUE(testMap.begin() == testMap.end()); in assertEmptyMap() 37 EXPECT_EQ(0u, testMap.count(testKey)); in assertEmptyMap() 38 EXPECT_EQ(0u, testMap.count(StringRef(testKeyFirst, testKeyLength))); in assertEmptyMap() 39 EXPECT_EQ(0u, testMap.count(testKeyStr)); in assertEmptyMap() 40 EXPECT_TRUE(testMap.find(testKey) == testMap.end()); in assertEmptyMap() 41 EXPECT_TRUE(testMap.find(StringRef(testKeyFirst, testKeyLength)) == in assertEmptyMap() 42 testMap.end()); in assertEmptyMap() [all …]
|
/external/stlport/test/eh/ |
D | test_hash_map.cpp | 96 TestMap testMap, testMap2; in test_hash_map() local 100 while ( testMap.size() < hash_mapSize ) { in test_hash_map() 102 testMap.insert( x ); in test_hash_map() 107 WeakCheck( testMap, test_hash_resize<TestMap>() ); in test_hash_map() 111 WeakCheck( testMap, test_insert_value<TestMap>(testMap) ); in test_hash_map() 115 WeakCheck( testMap, insert_range_tester(testMap, insFirst, insFirst+insCnt) ); in test_hash_map() 119 WeakCheck( testMap, insert_range_tester(testMap, testMap2.begin(), testMap2.end() ) ); in test_hash_map() 125 ConstCheck( testMap, test_copy_construct<TestMap>() ); in test_hash_map() 127 WeakCheck( testMap, test_assign_op<TestMap>( testMap2 ) ); in test_hash_map()
|
D | test_map.cpp | 100 TestMap testMap, testMap2; in test_map() local 104 while ( testMap.size() < mapSize ) in test_map() 107 testMap.insert( x ); in test_map() 111 StrongCheck( testMap, test_insert_value<TestMap>(testMap) ); in test_map() 116 WeakCheck( testMap, insert_range_tester(testMap, insFirst, insFirst+insCnt) ); in test_map() 121 WeakCheck( testMap, insert_range_tester(testMap, testMap2.begin(), testMap2.end() ) ); in test_map() 124 ConstCheck( testMap, test_copy_construct<TestMap>() ); in test_map() 125 WeakCheck( testMap, test_assign_op<TestMap>( testMap2 ) ); in test_map()
|
/external/clang/test/Analysis/inlining/ |
D | false-positive-suppression.cpp | 70 void testMap(Map &m, int i) { in testMap() function
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | JoinerTest.java | 281 public void testMap() { in testMap() method in JoinerTest
|