Lines Matching refs:param
1072 def makeCParamDecl(self, param, aligncol):
1074 declaration for a `<param>` or `<member>` block (e.g. function parameter
1077 - param - Element (`<param>` or `<member>`) to format
1086 prefix = noneStr(param.text)
1088 for elem in param:
1124 def getCParamTypeLength(self, param):
1126 declaration for a `<param>` or `<member>` block (e.g. function parameter
1129 - param - Element (`<param>` or `<member>`) to identify"""
1137 paramdecl = ' ' + noneStr(param.text)
1138 for elem in param:
1251 def paramIsArray(self, param):
1254 param the XML information for the param
1256 return param.get('len') is not None
1258 def paramIsPointer(self, param):
1261 param the XML information for the param
1263 tail = param.find('type').tail
1304 params = cmd.findall('param')
1338 # a <param> node without the tags. No tree walking required
1358 param = ''
1368 param += prefix.replace('const ', '') + t + ' const '
1370 param += prefix + t
1373 paramnames.append(param);