OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
91
bool
OverlapsWith
(const URLPatternSet& other) const;
url_pattern_set_unittest.cc
93
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));
url_pattern.h
178
// other.
OverlapsWith
(this) would result in the same answer.
179
bool
OverlapsWith
(const URLPattern& other) const;
extension_set.cc
111
if (iter->second->web_extent().
OverlapsWith
(extent))
url_pattern_set.cc
205
bool URLPatternSet::
OverlapsWith
(const URLPatternSet& other) const {
212
if (i->
OverlapsWith
(*j))
url_pattern.cc
104
// 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 {
url_pattern_unittest.cc
466
if (!pattern1.
OverlapsWith
(pattern2)) {
471
if (!pattern2.
OverlapsWith
(pattern1)) {
[
all
...]
extension.cc
299
return web_extent().
OverlapsWith
(origin_only_pattern_list);
Completed in 3923 milliseconds