| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_member_name(name): | 150 def class_member_name(name): |
| 151 return 'm_' + lower_camel_case(name) | 151 lower_case_words = [word.lower() for word in split_name(name)] |
| 152 return "_".join(lower_case_words) + "_" |
| 152 | 153 |
| 153 | 154 |
| 154 def method_name(name): | 155 def method_name(name): |
| 155 return lower_camel_case(name) | 156 return upper_camel_case(name) |
| 156 | 157 |
| 157 | 158 |
| 158 def join_name(*names): | 159 def join_name(*names): |
| 159 """Given a list of names, join them into a single space-separated name.""" | 160 """Given a list of names, join them into a single space-separated name.""" |
| 160 result = [] | 161 result = [] |
| 161 for name in names: | 162 for name in names: |
| 162 result.extend(split_name(name)) | 163 result.extend(split_name(name)) |
| 163 return ' '.join(result) | 164 return ' '.join(result) |
| OLD | NEW |