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 259 return DefaultCommandOptionValues(min_confidence=_DEFAULT_MIN_CONFIDENCE,
286 min_confidence=options.min_confidence,
470 min_confidence):
477 handle_style_error, min_confidence)
504 def dispatch(self, file_path, handle_style_error, min_confidence):
511 min_confidence)
522 min_confidence: An integer between 1 and 5 inclusive that is the
536 min_confidence,
549 min_confidence: An integer between 1 and 5 inclusive that is th
    [all...]
checker_unittest.py 289 min_confidence=3)
347 min_confidence=3)
407 self.assertEqual(checker.min_confidence, 3)
543 min_confidence=3,
555 self.assertEqual(configuration.min_confidence, 3)
607 min_confidence=3,
619 min_confidence=3,
644 def __init__(self, file_path, min_confidence, style_error_handler):
646 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 227 min_confidence: An integer that is the current minimum confidence
234 min_confidence = 1; variable in class:CppStyleTestBase
239 """Call cpp_style.process_file_data() with the min_confidence."""
241 error, self.min_confidence, fs)
    [all...]
cpp.py 522 min_confidence: The minimum confidence level to use while checking style.
529 def __init__(self, min_confidence):
530 self.min_confidence = min_confidence
600 trigger = base_trigger * 2 ** self.min_confidence
    [all...]

Completed in 75 milliseconds