Lines Matching refs:decl
660 decl = self.genRequirements(name, mustBeFound = False)
668 decl += "#define {} {}\n".format(name, strVal)
670 decl += "static constexpr {} {} {{{}}};\n".format(flagTypeName, name, strVal)
681 decl += "static const {} {} = {};\n".format(flagTypeName, name, strVal)
684 body += decl
686 aliasText += decl
754 decl = ''
758 decl += '#ifdef {}\n'.format(protect)
764 decl += requirements
765 decl += ' {} = {},'.format(name, strVal)
768 decl += '\n#endif'
771 body.append(decl)
773 aliasText.append(decl)
1105 self.logMsg('diag', 'Adjust length of parameter decl from', oldLen, 'to', newLen, ':', paramdecl)