OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
107
self.assertEqual(cpp_style.
_convert_to_lower_with_underscores
('ABC'), 'abc')
108
self.assertEqual(cpp_style.
_convert_to_lower_with_underscores
('aB'), 'a_b')
109
self.assertEqual(cpp_style.
_convert_to_lower_with_underscores
('isAName'), 'is_a_name')
110
self.assertEqual(cpp_style.
_convert_to_lower_with_underscores
('AnotherTest'), 'another_test')
111
self.assertEqual(cpp_style.
_convert_to_lower_with_underscores
('PassRefPtr<MyClass>'), 'pass_ref_ptr<my_class>')
112
self.assertEqual(cpp_style.
_convert_to_lower_with_underscores
('_ABC'), '_abc')
[
all
...]
cpp.py
235
def
_convert_to_lower_with_underscores
(text):
function
404
return
_convert_to_lower_with_underscores
(self.name)
[
all
...]
Completed in 539 milliseconds