Searched refs:OverlapsWith (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/gpu/config/
H A Dgpu_test_config_unittest.cc176 TEST_F(GPUTestConfigTest, OverlapsWith) {
183 EXPECT_TRUE(config.OverlapsWith(config2));
184 EXPECT_TRUE(config2.OverlapsWith(config));
187 EXPECT_TRUE(config.OverlapsWith(config2));
188 EXPECT_TRUE(config2.OverlapsWith(config));
191 EXPECT_FALSE(config.OverlapsWith(config2));
192 EXPECT_FALSE(config2.OverlapsWith(config));
195 EXPECT_TRUE(config.OverlapsWith(config2));
196 EXPECT_TRUE(config2.OverlapsWith(config));
204 EXPECT_TRUE(config.OverlapsWith(config
[all...]
H A Dgpu_test_config.h66 bool OverlapsWith(const GPUTestConfig& config) const;
H A Dgpu_test_config.cc109 bool GPUTestConfig::OverlapsWith(const GPUTestConfig& config) const { function in class:gpu::GPUTestConfig
H A Dgpu_test_expectations_parser.cc472 entries_[i].test_config.OverlapsWith(entries_[j].test_config)) {
/external/chromium_org/extensions/common/
H A Durl_pattern_set.h91 bool OverlapsWith(const URLPatternSet& other) const;
H A Durl_pattern_set_unittest.cc93 TEST(URLPatternSetTest, OverlapsWith) {
106 EXPECT_FALSE(set1.OverlapsWith(set2));
107 EXPECT_FALSE(set2.OverlapsWith(set1));
109 EXPECT_TRUE(set1.OverlapsWith(set3));
110 EXPECT_TRUE(set3.OverlapsWith(set1));
H A Dextension_set.cc111 if (iter->second->web_extent().OverlapsWith(extent))
H A Durl_pattern.h178 // other.OverlapsWith(this) would result in the same answer.
179 bool OverlapsWith(const URLPattern& other) const;
H A Durl_pattern_set.cc205 bool URLPatternSet::OverlapsWith(const URLPatternSet& other) const { function in class:extensions::URLPatternSet
212 if (i->OverlapsWith(*j))
H A Durl_pattern.cc104 // The functions that rely on this (OverlapsWith and Contains) are only
476 // Make the behaviour of OverlapsWith consistent with MatchesURL, which is
521 bool URLPattern::OverlapsWith(const URLPattern& other) const { function in class:URLPattern
H A Durl_pattern_unittest.cc466 if (!pattern1.OverlapsWith(pattern2)) {
471 if (!pattern2.OverlapsWith(pattern1)) {
H A Dextension.cc299 return web_extent().OverlapsWith(origin_only_pattern_list);

Completed in 111 milliseconds