Home | History | Annotate | Download | only in scripts

Lines Matching refs:construct_txt

787             construct_txt = ''      # Body of constuctor as well as body of initialize() func following init_func_txt
1010 construct_txt += ' if (in_struct->%s) {\n' % member.name
1011 construct_txt += ' %s = new %s(*in_struct->%s);\n' % (member.name, m_type, member.name)
1012 construct_txt += ' }\n'
1016 construct_txt += ' if (in_struct->%s) {\n' % member.name
1017 construct_txt += ' %s = new %s[in_struct->%s];\n' % (member.name, m_type, member.len)
1018 construct_txt += ' memcpy ((void *)%s, (void *)in_struct->%s, sizeof(%s)*in_struct->%s);\n' % (member.name, member.name, m_type, member.len)
1019 construct_txt += ' }\n'
1026 construct_txt += ' for (uint32_t i=0; i<%s; ++i) {\n' % static_array_size.group(1)
1027 construct_txt += ' %s[i] = in_struct->%s[i];\n' % (member.name, member.name)
1028 construct_txt += ' }\n'
1039 construct_txt += ' if (%s && in_struct->%s) {\n' % (member.len, member.name)
1040 construct_txt += ' %s = new %s[%s];\n' % (member.name, m_type, member.len)
1043 construct_txt += ' for (uint32_t i=0; i<%s; ++i) {\n' % (member.len)
1045 construct_txt += ' %s[i].initialize(&in_struct->%s[i]);\n' % (member.name, member.name)
1047 construct_txt += ' %s[i] = %s;\n' % (member.name, array_element)
1048 construct_txt += ' }\n'
1049 construct_txt += ' }\n'
1051 construct_txt += ' if (in_struct->%s)\n' % member.name
1052 construct_txt += ' %s = new %s(in_struct->%s);\n' % (member.name, m_type, member.name)
1053 construct_txt += ' else\n'
1054 construct_txt += ' %s = NULL;\n' % member.name
1066 construct_txt = custom_construct_txt[item.name]
1069 safe_struct_body.append("\n%s::%s(const %s* in_struct%s) :%s\n{\n%s}" % (ss_name, ss_name, item.name, self.custom_construct_params.get(item.name, ''), init_list, construct_txt))
1075 copy_construct_txt = construct_txt.replace(' (in_struct->', ' (src.') # Exclude 'if' blocks from next line
1084 safe_struct_body.append("\nvoid %s::initialize(const %s* in_struct%s)\n{\n%s%s}" % (ss_name, item.name, self.custom_construct_params.get(item.name, ''), init_func_txt, construct_txt))