Home
last modified time | relevance | path

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

/external/chromium_org/native_client_sdk/src/build_tools/
Deasy_template.py53 def RunTemplate(srcfile, dstfile, template_dict, statement_re=None, argument
58 template_dict = copy.copy(template_dict)
59 template_dict['__outfile__'] = dstfile
60 exec script in template_dict
63 def RunTemplateFile(srcpath, dstpath, template_dict, statement_re=None, argument
67 RunTemplate(srcfile, dstfile, template_dict, statement_re, expr_re)
84 def RunTemplateString(src, template_dict, statement_re=None, expr_re=None): argument
87 RunTemplate(srcstr, dststr, template_dict, statement_re, expr_re)
Dgenerate_index.py28 template_dict = { 'section_map': sec_map }
29 return easy_template.RunTemplateString(template, template_dict)
Dgenerate_make.py229 template_dict = {
237 RunTemplateFileIfChanged(template, make_path, template_dict)
259 template_dict = {
263 RunTemplateFileIfChanged(in_path, out_path, template_dict)
Dbuild_app.py161 template_dict = {
173 template_dict)
/external/chromium/chrome/browser/policy/
Dasynchronous_policy_loader_unittest.cc58 DictionaryValue* template_dict(new DictionaryValue()); in TEST_F() local
59 EXPECT_CALL(*delegate_, Load()).WillOnce(Return(template_dict)); in TEST_F()
64 EXPECT_TRUE(loaded_dict->Equals(template_dict)); in TEST_F()
/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)