Lines Matching refs:tail
1056 def makeProtoName(self, name, tail):
1061 - tail - whatever text follows that tag in the Element"""
1064 return self.genOpts.apientry + name + tail
1066 def makeTypedefName(self, name, tail):
1070 return '(' + self.genOpts.apientryp + 'PFN_' + name + tail + ')'
1090 tail = noneStr(elem.tail)
1092 if self.should_insert_may_alias_macro and self.genOpts.conventions.is_voidpointer_alias(elem.tag, text, tail):
1094 tail = self.genOpts.conventions.make_voidpointer_alias(tail)
1101 # longer than the alignment column - would run into the tail
1110 paramdecl += prefix.replace('const ', '') + text + ' const' + tail
1112 paramdecl += prefix + text + tail
1140 tail = noneStr(elem.tail)
1142 if self.should_insert_may_alias_macro and self.genOpts.conventions.is_voidpointer_alias(elem.tag, text, tail):
1144 tail = self.genOpts.conventions.make_voidpointer_alias(tail)
1149 paramdecl += text + tail
1263 tail = param.find('type').tail
1264 return tail is not None and '*' in tail
1314 # etree has elem.text followed by (elem[i], elem[i].tail)
1320 # declaration. Otherwise append its contents and tail contents.
1323 tail = noneStr(elem.tail)
1325 pdecl += self.makeProtoName(text, tail)
1326 tdecl += self.makeTypedefName(text, tail)
1328 pdecl += text + tail
1329 tdecl += text + tail