Chromium Code Reviews| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 return 'm_' + lower_camel_case(name) |
| 152 | 152 |
| 153 | 153 |
| 154 def method_name(name): | 154 def method_name(name): |
| 155 return lower_camel_case(name) | 155 return lower_camel_case(name) |
| 156 | |
| 157 | |
| 158 def join_name(*names): | |
| 159 """Given a list of names, join them into a single space-separated name.""" | |
| 160 result = [] | |
| 161 for name in names: | |
| 162 result.extend(split_name(name)) | |
| 163 return ' '.join(result) | |
|
Bugs Nash
2017/03/30 01:39:34
why is the result space separated? wouldn't that b
| |
| OLD | NEW |