| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 | 141 |
| 142 def enum_type_name(name): | 142 def enum_type_name(name): |
| 143 return upper_camel_case(name) | 143 return upper_camel_case(name) |
| 144 | 144 |
| 145 | 145 |
| 146 def enum_value_name(name): | 146 def enum_value_name(name): |
| 147 return 'k' + upper_camel_case(name) | 147 return 'k' + upper_camel_case(name) |
| 148 | 148 |
| 149 | 149 |
| 150 def class_name(name): |
| 151 return upper_camel_case(name) |
| 152 |
| 153 |
| 150 def class_member_name(name): | 154 def class_member_name(name): |
| 151 lower_case_words = [word.lower() for word in split_name(name)] | 155 lower_case_words = [word.lower() for word in split_name(name)] |
| 152 return "_".join(lower_case_words) + "_" | 156 return "_".join(lower_case_words) + "_" |
| 153 | 157 |
| 154 | 158 |
| 155 def method_name(name): | 159 def method_name(name): |
| 156 return upper_camel_case(name) | 160 return upper_camel_case(name) |
| 157 | 161 |
| 158 | 162 |
| 159 def join_name(*names): | 163 def join_name(*names): |
| 160 """Given a list of names, join them into a single space-separated name.""" | 164 """Given a list of names, join them into a single space-separated name.""" |
| 161 result = [] | 165 result = [] |
| 162 for name in names: | 166 for name in names: |
| 163 result.extend(split_name(name)) | 167 result.extend(split_name(name)) |
| 164 return ' '.join(result) | 168 return ' '.join(result) |
| OLD | NEW |