| OLD | NEW |
| 1 # Copyright (C) 2013 Google Inc. All rights reserved. | 1 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 | 146 |
| 147 def enum_type_name(name): | 147 def enum_type_name(name): |
| 148 return upper_camel_case(name) | 148 return upper_camel_case(name) |
| 149 | 149 |
| 150 | 150 |
| 151 def enum_value_name(name): | 151 def enum_value_name(name): |
| 152 return 'k' + upper_camel_case(name) | 152 return 'k' + upper_camel_case(name) |
| 153 | 153 |
| 154 | 154 |
| 155 def class_name(name): |
| 156 return upper_camel_case(name) |
| 157 |
| 158 |
| 155 def class_member_name(name): | 159 def class_member_name(name): |
| 156 return snake_case(name) + "_" | 160 return snake_case(name) + "_" |
| 157 | 161 |
| 158 | 162 |
| 159 def method_name(name): | 163 def method_name(name): |
| 160 return upper_camel_case(name) | 164 return upper_camel_case(name) |
| 161 | 165 |
| 162 | 166 |
| 163 def join_name(*names): | 167 def join_name(*names): |
| 164 """Given a list of names, join them into a single space-separated name.""" | 168 """Given a list of names, join them into a single space-separated name.""" |
| 165 result = [] | 169 result = [] |
| 166 for name in names: | 170 for name in names: |
| 167 result.extend(split_name(name)) | 171 result.extend(split_name(name)) |
| 168 return ' '.join(result) | 172 return ' '.join(result) |
| OLD | NEW |