Home | History | Annotate | Download | only in gen

Lines Matching full:condition

124 	"""Create a C-preprocessor condition for the function.
127 condition is only created is all of the entry-point names for f are
128 not in the selected ABI. If all_not_in_ABI is not set, a condition
132 condition = []
136 condition.append( 'defined(need_%s)' % (gl_XML.real_category_name( category )) )
140 return condition
170 condition = condition_for_function(f, abi, 0)
171 if len(condition):
172 print '#if %s' % (string.join(condition, " || "))
256 condition = condition_for_function(f, abi, 1)
257 condition_string = string.join(condition, " || ")