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

  /external/chromium/chrome/common/extensions/
extension_extent_unittest.cc 44 TEST(ExtensionExtentTest, OverlapsWith) {
57 EXPECT_FALSE(extent1.OverlapsWith(extent2));
58 EXPECT_FALSE(extent2.OverlapsWith(extent1));
60 EXPECT_TRUE(extent1.OverlapsWith(extent3));
61 EXPECT_TRUE(extent3.OverlapsWith(extent1));
extension_extent.cc 47 bool ExtensionExtent::OverlapsWith(const ExtensionExtent& other) const {
54 if (i->OverlapsWith(*j))
extension_extent.h 34 bool OverlapsWith(const ExtensionExtent& other) const;
url_pattern.h 201 // instance. This method is symmetrical: Calling other.OverlapsWith(this)
203 bool OverlapsWith(const URLPattern& other) const;
url_pattern_unittest.cc 334 EXPECT_EQ(expect_overlap, pattern1.OverlapsWith(pattern2))
336 EXPECT_EQ(expect_overlap, pattern2.OverlapsWith(pattern1))
340 TEST(ExtensionURLPatternTest, OverlapsWith) {
url_pattern.cc 313 bool URLPattern::OverlapsWith(const URLPattern& other) const {
320 // We currently only use OverlapsWith() for the patterns inside
extension.cc     [all...]
  /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 65 bool OverlapsWith(const GPUTestConfig& config) const;
gpu_test_config.cc 101 bool GPUTestConfig::OverlapsWith(const GPUTestConfig& config) const {
gpu_test_expectations_parser.cc 468 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 161 // other.OverlapsWith(this) would result in the same answer.
162 bool OverlapsWith(const URLPattern& other) const;
url_pattern_set.cc 171 bool URLPatternSet::OverlapsWith(const URLPatternSet& other) const {
178 if (i->OverlapsWith(*j))
url_pattern.cc 98 // The functions that rely on this (OverlapsWith and Contains) are only
402 // Make the behaviour of OverlapsWith consistent with MatchesURL, which is
447 bool URLPattern::OverlapsWith(const URLPattern& other) const {
url_pattern_unittest.cc 455 if (!pattern1.OverlapsWith(pattern2)) {
460 if (!pattern2.OverlapsWith(pattern1)) {
  /external/chromium_org/chrome/common/extensions/
extension_set.cc 99 if (iter->second->web_extent().OverlapsWith(extent))
extension.cc 371 return web_extent().OverlapsWith(origin_only_pattern_list);
  /external/chromium/chrome/browser/extensions/
extension_service.cc     [all...]

Completed in 1139 milliseconds