/external/google-breakpad/src/processor/ |
D | address_map_unittest.cc | 79 TestMap test_map; in DoAddressMapTest() local 84 ASSERT_FALSE(test_map.Retrieve(0, &entry, &address)); in DoAddressMapTest() 85 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address)); in DoAddressMapTest() 86 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address)); in DoAddressMapTest() 90 ASSERT_TRUE(test_map.Store(1, in DoAddressMapTest() 92 ASSERT_TRUE(test_map.Retrieve(1, &entry, &address)); in DoAddressMapTest() 94 test_map.Clear(); in DoAddressMapTest() 98 ASSERT_FALSE(test_map.Retrieve(0, &entry, &address)); in DoAddressMapTest() 99 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address)); in DoAddressMapTest() 100 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address)); in DoAddressMapTest() [all …]
|
D | static_map_unittest.cc | 94 TestMap test_map; member in TestInvalidMap 99 test_map = TestMap(data); in TEST_F() 100 ASSERT_FALSE(test_map.ValidateInMemoryStructure()); in TEST_F() 111 test_map = TestMap(data); in TEST_F() 112 ASSERT_FALSE(test_map.ValidateInMemoryStructure()); in TEST_F() 116 test_map = TestMap(data); in TEST_F() 117 ASSERT_FALSE(test_map.ValidateInMemoryStructure()); in TEST_F() 134 test_map = TestMap(data); in TEST_F() 135 ASSERT_FALSE(test_map.ValidateInMemoryStructure()); in TEST_F() 147 test_map[testcase] = TestMap(map_data[testcase]); in SetUp() [all …]
|
D | static_contained_range_map_unittest.cc | 242 scoped_ptr<TestMap> test_map(new TestMap(serialized_data.get())); in TEST_F() local 248 ASSERT_FALSE(test_map->RetrieveRange(-1, entry_test)); in TEST_F() 249 ASSERT_FALSE(test_map->RetrieveRange(0, entry_test)); in TEST_F() 250 ASSERT_FALSE(test_map->RetrieveRange(10, entry_test)); in TEST_F() 262 scoped_ptr<TestMap> test_map(new TestMap(serialized_data.get())); in TEST_F() local 268 ASSERT_FALSE(test_map->RetrieveRange(-1, entry_test)); in TEST_F() 269 ASSERT_FALSE(test_map->RetrieveRange(0, entry_test)); in TEST_F() 270 ASSERT_TRUE(test_map->RetrieveRange(10, entry_test)); in TEST_F() 272 ASSERT_TRUE(test_map->RetrieveRange(13, entry_test)); in TEST_F()
|
D | static_address_map_unittest.cc | 82 test_map[testcase] = TestMap(map_data[testcase]); in SetUp() 104 test_map[testcase].Retrieve(target, entry_cstring, &address_test); in CompareRetrieveResult() 149 TestMap test_map[kNumberTestCases]; member in TestStaticAddressMap
|
/external/skia/samplecode/ |
D | SampleSkLayer.cpp | 39 static void test_map(SkScalar x0, SkScalar y0, SkScalar z0, in test_map() function 88 test_map(1, 0, 0, m0, 1, 0, 0); in test44() 89 test_map(0, 1, 0, m0, 0, 1, 0); in test44() 90 test_map(0, 0, 1, m0, 0, 0, 1); in test44() 92 test_map(1, 0, 0, m0, 2, 0, 0); in test44() 93 test_map(0, 1, 0, m0, 0, 3, 0); in test44() 94 test_map(0, 0, 1, m0, 0, 0, 4); in test44() 96 test_map(0, 0, 0, m0, 2, 3, 4); in test44() 98 test_map(1, 0, 0, m0, 7, 3, 4); in test44() 99 test_map(0, 1, 0, m0, 2, 9, 4); in test44() [all …]
|
/external/autotest/server/cros/ |
D | goofy_client.py | 259 test_map = collections.defaultdict(list) 261 test_map[names.split('.')[0]].append(names) 262 return test_map 375 test_map = self._get_test_map() 376 if test_map: 377 logging.info('About to execute tests: %s', test_map) 383 for current_suite in test_map.keys(): 389 for test_names in test_map.get(current_suite):
|
/external/v8/tools/testrunner/network/ |
D | network_execution.py | 180 data, test_map = packet.Pack(self.binaries) 193 test = test_map.pop(test_id) 228 if len(test_map) > 0: 230 print("\nNo results for %d tests, running them locally." % len(test_map)) 231 self._EnqueueLocally(test_map) 233 def _EnqueueLocally(self, test_map): argument 235 for test in test_map: 236 self.tests.append(test_map[test])
|
/external/v8/tools/testrunner/objects/ |
D | workpacket.py | 63 test_map = {} 65 test_map[t.id] = t 75 return result, test_map
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
D | add_point.py | 152 test_map = _ConstructTestPathMap(data) 154 _ValidateRowDict(row_dict, test_map) 548 def _ValidateRowDict(row, test_map): argument 563 _ValidateRowId(row, test_map) 608 def _ValidateRowId(row_dict, test_map): argument 624 last_row_id = test_map.get(test_path)
|
/external/v8/tools/testrunner/local/ |
D | execution.py | 311 test_map = {} 316 test_map[test.id] = test 335 test = test_map[result.value[0]]
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
D | test_urlmap.py | 15 def test_map(): function
|
/external/google-breakpad/src/testing/test/ |
D | gmock-matchers_test.cc | 3741 map<int, std::string> test_map; in TEST() local 3742 test_map[0] = "aa"; in TEST() 3743 test_map[1] = "b"; in TEST() 3747 EXPECT_FALSE(m.Matches(test_map)); in TEST() 3751 Explain(m, test_map)); in TEST()
|
/external/gmock/test/ |
D | gmock-matchers_test.cc | 4114 map<int, std::string> test_map; in TEST() local 4115 test_map[0] = "aa"; in TEST() 4116 test_map[1] = "b"; in TEST() 4120 EXPECT_FALSE(m.Matches(test_map)); in TEST() 4124 Explain(m, test_map)); in TEST()
|
/external/chromium-trace/catapult/third_party/six/ |
D | test_six.py | 230 def test_map(): function
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/ |
D | test_six.py | 210 def test_map(): function
|