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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp_unittest.py 118 self.assertEqual(cpp_style._convert_to_lower_with_underscores('ABC'), 'abc')
119 self.assertEqual(cpp_style._convert_to_lower_with_underscores('aB'), 'a_b')
120 self.assertEqual(cpp_style._convert_to_lower_with_underscores('isAName'), 'is_a_name')
121 self.assertEqual(cpp_style._convert_to_lower_with_underscores('AnotherTest'), 'another_test')
122 self.assertEqual(cpp_style._convert_to_lower_with_underscores('PassRefPtr<MyClass>'), 'pass_ref_ptr<my_class>')
123 self.assertEqual(cpp_style._convert_to_lower_with_underscores('_ABC'), '_abc')
    [all...]
cpp.py 244 def _convert_to_lower_with_underscores(text): function
413 return _convert_to_lower_with_underscores(self.name)
    [all...]

Completed in 145 milliseconds