Searched refs:template_dict (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/native_client_sdk/src/build_tools/ |
D | easy_template.py | 62 def RunTemplate(srcfile, dstfile, template_dict, statement_re=None, argument 67 template_dict = copy.copy(template_dict) 68 template_dict['__outfile__'] = dstfile 69 exec script in template_dict 72 def RunTemplateFile(srcpath, dstpath, template_dict, statement_re=None, argument 76 RunTemplate(srcfile, dstfile, template_dict, statement_re, expr_re) 93 def RunTemplateString(src, template_dict, statement_re=None, expr_re=None): argument 96 RunTemplate(srcstr, dststr, template_dict, statement_re, expr_re)
|
D | generate_index.py | 27 template_dict = { 'section_map': sec_map } 28 return easy_template.RunTemplateString(template, template_dict)
|
D | generate_make.py | 259 template_dict = { 269 RunTemplateFileIfChanged(template, make_path, template_dict) 291 template_dict = { 296 RunTemplateFileIfChanged(in_path, out_path, template_dict)
|
D | build_app.py | 161 template_dict = { 173 template_dict)
|
/external/chromium_org/native_client_sdk/src/build_tools/tests/ |
D | easy_template_test.py | 19 def _RunTest(self, template, expected, template_dict): argument 22 easy_template.RunTemplate(src, dst, template_dict)
|