Searched refs:ProcessorOptions (Results 1 - 3 of 3) sorted by relevance

/external/webkit/WebKitTools/Scripts/webkitpy/style/
H A Dchecker_unittest.py43 from checker import ProcessorOptions namespace
53 """Tests ProcessorOptions class."""
58 options = ProcessorOptions()
67 self.assertRaises(ValueError, ProcessorOptions, output_format="bad")
68 ProcessorOptions(output_format="emacs") # No ValueError: works
69 ProcessorOptions(output_format="vs7") # works
70 self.assertRaises(ValueError, ProcessorOptions, verbosity=0)
71 self.assertRaises(ValueError, ProcessorOptions, verbosity=6)
72 ProcessorOptions(verbosity=1) # works
73 ProcessorOptions(verbosit
[all...]
H A Derror_handlers_unittest.py29 from checker import ProcessorOptions namespace
81 options = ProcessorOptions(verbosity=3)
97 options = ProcessorOptions(verbosity=3, output_format="emacs")
109 options = ProcessorOptions(verbosity=3, output_format="vs7")
121 options = ProcessorOptions(verbosity=3,
169 options = ProcessorOptions(verbosity=3)
H A Dchecker.py247 # FIXME: Remove everything from ProcessorOptions except for the
256 class ProcessorOptions(object): class in inherits:object
317 """Return whether this ProcessorOptions instance is equal to another."""
389 """Return a flag string yielding the given ProcessorOptions instance.
394 options: A ProcessorOptions instance.
493 are not supported by the ProcessorOptions class.
501 options: A ProcessorOptions instance.
511 # The flags already supported by the ProcessorOptions class.
573 options = ProcessorOptions(extra_flag_values=extra_flag_values,
689 # an instance of this class rather than a ProcessorOptions
[all...]

Completed in 13 milliseconds