Home
last modified time | relevance | path

Searched refs:_FunctionState (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/style/checkers/
Dcpp_unittest.py357 function_state = cpp_style._FunctionState(5)
2712 self.old_normal_trigger = cpp_style._FunctionState._NORMAL_TRIGGER
2713 self.old_test_trigger = cpp_style._FunctionState._TEST_TRIGGER
2715 cpp_style._FunctionState._NORMAL_TRIGGER = 10
2716 cpp_style._FunctionState._TEST_TRIGGER = 25
2719 cpp_style._FunctionState._NORMAL_TRIGGER = self.old_normal_trigger
2720 cpp_style._FunctionState._TEST_TRIGGER = self.old_test_trigger
2748 return cpp_style._FunctionState._NORMAL_TRIGGER * 2 ** error_level
2759 return cpp_style._FunctionState._TEST_TRIGGER * 2 ** error_level
Dcpp.py505 class _FunctionState(object): class
3381 function_state = _FunctionState(min_confidence)
/external/webkit/Tools/
DChangeLog-2011-02-16595 (_FunctionState.modifiers_and_return_type):
3948 check-webkit-style: _FunctionState should keep track of where the function name starts.
3952 _FunctionState and logic for setting it correctly.
4022 check-webkit-style: _FunctionState should detect pure functions.
4044 check-webkit-style: _FunctionState should use Position to know where items are.
4048 (_FunctionState.*): Changed _FunctionState to use Position instead of line numbers.
4049 (detect_functions): Changed to pass Position's to _FunctionState.begin and
4054 to verify the positions stored in _FunctionState.
6094 (_FunctionState.begin): Added information to allow determining the parameters
6096 (_FunctionState.get_parameter_list): Returns a tuple of function parameters.
[all …]
DChangeLog-2010-05-2418674 - Added verbosity as a parameter to _FunctionState constructor.