Home
last modified time | relevance | path

Searched refs:template_dict (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/native_client_sdk/src/build_tools/
Deasy_template.py62 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)
Dgenerate_index.py27 template_dict = { 'section_map': sec_map }
28 return easy_template.RunTemplateString(template, template_dict)
Dgenerate_make.py259 template_dict = {
269 RunTemplateFileIfChanged(template, make_path, template_dict)
291 template_dict = {
296 RunTemplateFileIfChanged(in_path, out_path, template_dict)
Dbuild_app.py161 template_dict = {
173 template_dict)
/external/chromium_org/native_client_sdk/src/build_tools/tests/
Deasy_template_test.py19 def _RunTest(self, template, expected, template_dict): argument
22 easy_template.RunTemplate(src, dst, template_dict)