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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
optparser.py 111 min_confidence: An integer that is the default minimum confidence level.
115 def __init__(self, min_confidence, output_format):
116 self.min_confidence = min_confidence
136 min_confidence: An integer between 1 and 5 inclusive that is the
150 min_confidence=1,
155 if (min_confidence < 1) or (min_confidence > 5):
156 raise ValueError('Invalid "min_confidence" parameter: value '
158 'Value given: "%s".' % min_confidence)
    [all...]
optparser_unittest.py 42 min_confidence=3,
47 min_confidence=min_confidence,
82 return DefaultCommandOptionValues(min_confidence=3,
151 self.assertEqual(options.min_confidence, 3)
159 self.assertEqual(options.min_confidence, 4)
205 self.assertEqual(options.min_confidence, 1)
212 self.assertRaises(ValueError, ProcessorOptions, min_confidence=0)
213 self.assertRaises(ValueError, ProcessorOptions, min_confidence=6)
214 ProcessorOptions(min_confidence=1) # work
    [all...]
checker.py 384 return DefaultCommandOptionValues(min_confidence=_DEFAULT_MIN_CONFIDENCE,
411 min_confidence=options.min_confidence,
598 min_confidence):
605 handle_style_error, min_confidence)
634 def dispatch(self, file_path, handle_style_error, min_confidence):
641 min_confidence)
652 min_confidence: An integer between 1 and 5 inclusive that is the
666 min_confidence,
679 min_confidence: An integer between 1 and 5 inclusive that is th
    [all...]
checker_unittest.py 332 min_confidence=3)
390 min_confidence=3)
450 self.assertEqual(checker.min_confidence, 3)
592 min_confidence=3,
604 self.assertEqual(configuration.min_confidence, 3)
656 min_confidence=3,
668 min_confidence=3,
693 def __init__(self, file_path, min_confidence, style_error_handler):
695 self.min_confidence = min_confidence
    [all...]
error_handlers_unittest.py 61 min_confidence=3,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp_unittest.py 238 min_confidence: An integer that is the current minimum confidence
245 min_confidence = 1; variable in class:CppStyleTestBase
250 """Call cpp_style.process_file_data() with the min_confidence."""
252 error, self.min_confidence, unit_test_config)
    [all...]
cpp.py 531 min_confidence: The minimum confidence level to use while checking style.
538 def __init__(self, min_confidence):
539 self.min_confidence = min_confidence
609 trigger = base_trigger * 2 ** self.min_confidence
    [all...]

Completed in 179 milliseconds