HomeSort by relevance Sort by last modified time
    Searched refs:OverlapsWith (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/gpu/config/
gpu_test_config_unittest.cc 176 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(config2))
    [all...]
gpu_test_config.h 66 bool OverlapsWith(const GPUTestConfig& config) const;
gpu_test_config.cc 109 bool GPUTestConfig::OverlapsWith(const GPUTestConfig& config) const {
gpu_test_expectations_parser.cc 472 entries_[i].test_config.OverlapsWith(entries_[j].test_config)) {
  /external/chromium_org/extensions/common/
url_pattern_set.h 84 bool OverlapsWith(const URLPatternSet& other) const;
url_pattern_set_unittest.cc 63 TEST(URLPatternSetTest, OverlapsWith) {
76 EXPECT_FALSE(set1.OverlapsWith(set2));
77 EXPECT_FALSE(set2.OverlapsWith(set1));
79 EXPECT_TRUE(set1.OverlapsWith(set3));
80 EXPECT_TRUE(set3.OverlapsWith(set1));
url_pattern.h 166 // other.OverlapsWith(this) would result in the same answer.
167 bool OverlapsWith(const URLPattern& other) const;
url_pattern_set.cc 162 bool URLPatternSet::OverlapsWith(const URLPatternSet& other) const {
169 if (i->OverlapsWith(*j))
extension_set.cc 111 if (iter->second->web_extent().OverlapsWith(extent))
url_pattern.cc 100 // The functions that rely on this (OverlapsWith and Contains) are only
422 // Make the behaviour of OverlapsWith consistent with MatchesURL, which is
467 bool URLPattern::OverlapsWith(const URLPattern& other) const {
url_pattern_unittest.cc 465 if (!pattern1.OverlapsWith(pattern2)) {
470 if (!pattern2.OverlapsWith(pattern1)) {
extension.cc 315 return web_extent().OverlapsWith(origin_only_pattern_list);

Completed in 217 milliseconds