Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: third_party/WebKit/Source/build/scripts/name_utilities.py

Issue 2786883002: Generate subgroup StyleSurroundData in ComputedStyle. (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 return 'm_' + lower_camel_case(name) 155 return 'm_' + lower_camel_case(name)
152 156
153 157
154 def method_name(name): 158 def method_name(name):
155 return lower_camel_case(name) 159 return lower_camel_case(name)
156 160
157 161
158 def join_name(*names): 162 def join_name(*names):
159 """Given a list of names, join them into a single space-separated name.""" 163 """Given a list of names, join them into a single space-separated name."""
160 result = [] 164 result = []
161 for name in names: 165 for name in names:
162 result.extend(split_name(name)) 166 result.extend(split_name(name))
163 return ' '.join(result) 167 return ' '.join(result)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698