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

  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp_unittest.py 113 self.assertEquals(cpp_style._convert_to_lower_with_underscores('ABC'), 'abc')
114 self.assertEquals(cpp_style._convert_to_lower_with_underscores('aB'), 'a_b')
115 self.assertEquals(cpp_style._convert_to_lower_with_underscores('isAName'), 'is_a_name')
116 self.assertEquals(cpp_style._convert_to_lower_with_underscores('AnotherTest'), 'another_test')
117 self.assertEquals(cpp_style._convert_to_lower_with_underscores('PassRefPtr<MyClass>'), 'pass_ref_ptr<my_class>')
118 self.assertEquals(cpp_style._convert_to_lower_with_underscores('_ABC'), '_abc')
    [all...]
cpp.py 222 def _convert_to_lower_with_underscores(text): function
391 return _convert_to_lower_with_underscores(self.name)
    [all...]

Completed in 468 milliseconds