Lines Matching refs:_cpplint_state
643 _cpplint_state = _CppLintState() variable
648 return _cpplint_state.output_format
653 _cpplint_state.SetOutputFormat(output_format)
659 return _cpplint_state.quiet
664 return _cpplint_state.SetQuiet(level)
669 return _cpplint_state.verbose_level
674 return _cpplint_state.SetVerboseLevel(level)
679 _cpplint_state.SetCountingStyle(level)
684 return _cpplint_state.filters
697 _cpplint_state.SetFilters(filters)
866 if confidence < _cpplint_state.verbose_level:
908 _cpplint_state.IncrementErrorCount(category)
909 if _cpplint_state.output_format == 'vs7':
912 elif _cpplint_state.output_format == 'eclipse':
3918 old_errors = _cpplint_state.error_count
3972 if not _cpplint_state.quiet or old_errors != _cpplint_state.error_count:
4082 _cpplint_state.ResetErrorCounts()
4084 ProcessFile(filename, _cpplint_state.verbose_level)
4087 if not _cpplint_state.quiet or _cpplint_state.error_count > 0:
4088 _cpplint_state.PrintErrorCounts()
4091 sys.exit(_cpplint_state.error_count > 0)