Home | History | Annotate | Download | only in vulkancts

Lines Matching full:postfix

222 def endswith (s, postfix):
223 return len(s) >= len(postfix) and s[len(s)-len(postfix):] == postfix
270 def endsWith (str, postfix):
271 return str[-len(postfix):] == postfix
275 for postfix in knownExtPostfixes:
276 if endsWith(name, postfix):
277 return (name[:-len(postfix)], postfix)
281 bitfieldName, postfix = splitNameExtPostfix(bitfieldName)
284 return bitfieldName[:-1] + "Bits" + postfix
287 bitEnumName, postfix = splitNameExtPostfix(bitEnumName)
290 return bitEnumName[:-4] + "s" + postfix
512 postfix = "" if concrete else " = 0"
515 yield "virtual %s\t%s\t(%s) const%s;" % (function.returnType, getInterfaceName(function), argListToStr(function.arguments), postfix)