Home | History | Annotate | Download | only in style

Lines Matching refs:checker

31 """Front end of some style-checker modules."""
51 _log = logging.getLogger("webkitpy.style.checker")
303 # This function assists in optparser not having to import from checker.
497 """Instantiate and return a style checker based on file type."""
499 checker = None
504 checker = ChangeLogChecker(file_path, handle_style_error, should_line_be_checked)
507 checker = CppChecker(file_path, file_extension,
510 checker = PythonChecker(file_path, handle_style_error)
512 checker = XMLChecker(file_path, handle_style_error)
516 checker = TestExpectationsChecker(file_path, handle_style_error)
518 checker = TextChecker(file_path, handle_style_error)
527 return checker
530 """Instantiate and return a style checker based on file path."""
533 checker = self._create_checker(file_type,
537 return checker
641 the style checker from reading binary files into memory.
655 For example, a style checker's check() method
759 checker = self._dispatcher.dispatch(file_path,
763 if checker is None:
766 _log.debug("Using class: " + checker.__class__.__name__)
768 checker.check(lines)