Searched refs:should_check (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/style/ |
D | filter_unittest.py | 127 self.assertTrue(filter.should_check("everything")) 129 self.assertTrue(filter.should_check("everything")) 132 self.assertFalse(filter.should_check("anything")) 134 self.assertFalse(filter.should_check("anything")) 137 self.assertTrue(filter.should_check("abc")) 138 self.assertFalse(filter.should_check("a")) 141 self.assertFalse(filter.should_check("abc")) 142 self.assertTrue(filter.should_check("a")) 216 self.assertTrue(config.should_check("a", "path")) 217 self.assertFalse(config.should_check("b", "path")) [all …]
|
D | filter.py | 94 def should_check(self, category): member in _CategoryFilter 111 should_check = True # All categories checked by default. 115 should_check = rule.startswith('+') 116 self._should_check_category[category] = should_check # Update cache. 117 return should_check 246 def should_check(self, category, path): member in FilterConfiguration 277 return self._filter_from_path(path).should_check(category)
|
D | checker_unittest.py | 206 self.assertTrue(config.should_check(category, path)) 212 self.assertFalse(config.should_check(category, path), message)
|
D | checker.py | 611 return self._filter_configuration.should_check(category, file_path)
|
/external/chromium/testing/gmock/src/ |
D | gmock-spec-builders.cc | 175 bool should_check = false; in CheckActionCountIfNotDone() local 180 should_check = true; in CheckActionCountIfNotDone() 184 if (should_check) { in CheckActionCountIfNotDone()
|
/external/ceres-solver/internal/ceres/ |
D | gmock_gtest_all.cc | 9752 bool should_check = false; in CheckActionCountIfNotDone() local 9757 should_check = true; in CheckActionCountIfNotDone() 9761 if (should_check) { in CheckActionCountIfNotDone()
|
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
D | cpp_unittest.py | 69 if self._filter.should_check(category, ""):
|
/external/webkit/Tools/ |
D | ChangeLog-2010-05-24 | 16067 - Altered FilterConfiguration's should_check() method to
|