Home | History | Annotate | Download | only in cpp

Lines Matching refs:return_type

66       return_type = 'void'
67 if node.return_type:
70 if node.return_type.modifiers:
71 modifiers = ' '.join(node.return_type.modifiers) + ' '
72 return_type = modifiers + node.return_type.name
73 template_args = [arg.name for arg in node.return_type.templated_types]
75 return_type += '<' + ', '.join(template_args) + '>'
82 if node.return_type.pointer:
83 return_type += '*'
84 if node.return_type.reference:
85 return_type += '&'
123 '%s%s(%s));' % (indent*3, return_type, args)])